/*!
 * chota.css v0.9.2 | MIT License | https://github.com/jenil/chota
 */
:root {
  --bg-color:#fff;
  --bg-secondary-color:#f3f3f6;
  --color-primary:#14854f;
  --color-lightGrey:#d2d6dd;
  --color-grey:#747681;
  --color-darkGrey:#3f4144;
  --color-error:#d43939;
  --color-success:#28bd14;
  --grid-maxWidth:120rem;
  --grid-gutter:2rem;
  --font-size:1.6rem;
  --font-color:#333;
  --font-family-sans:-apple-system,"BlinkMacSystemFont","Avenir","Avenir Next","Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  --font-family-mono:monaco,"Consolas","Lucida Console",monospace;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  line-height: 1.15;
}

*, :after, :before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background-color: var(--bg-color);
  color: var(--font-color);
  font-family: Segoe UI, Helvetica Neue, sans-serif;
  font-family: var(--font-family-sans);
  font-size: var(--font-size);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin: 0.35em 0 0.7em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.85em;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover:not(.button) {
  opacity: 0.75;
}

button {
  font-family: inherit;
}

p {
  margin-top: 0;
}

blockquote {
  background-color: var(--bg-secondary-color);
  border-left: 3px solid var(--color-lightGrey);
  padding: 1.5rem 2rem;
}

dl dt {
  font-weight: 700;
}

hr {
  background-color: var(--color-lightGrey);
  height: 1px;
  margin: 1rem 0;
}

hr, table {
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  width: 100%;
}

table.striped tr:nth-of-type(2n) {
  background-color: var(--bg-secondary-color);
}

td, th {
  padding: 1.2rem 0.4rem;
  vertical-align: middle;
}

thead {
  border-bottom: 2px solid var(--color-lightGrey);
}

tfoot {
  border-top: 2px solid var(--color-lightGrey);
}

code, kbd, pre, samp, tt {
  font-family: var(--font-family-mono);
}

code, kbd {
  border-radius: 4px;
  color: var(--color-error);
  font-size: 90%;
  padding: 0.2em 0.4em;
  white-space: pre-wrap;
}

code, kbd, pre {
  background-color: var(--bg-secondary-color);
}

pre {
  font-size: 1em;
  overflow-x: auto;
  padding: 1rem;
}

pre code {
  background: none;
  padding: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

img {
  max-width: 100%;
}

fieldset {
  border: 1px solid var(--color-lightGrey);
}

iframe {
  border: 0;
}

.container {
  margin: 0 auto;
  max-width: var(--grid-maxWidth);
  padding: 0 calc(var(--grid-gutter) / 2);
  width: 96%;
}

.row {
  -webkit-box-direction: normal;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-left: calc(var(--grid-gutter) / -2);
  margin-right: calc(var(--grid-gutter) / -2);
}

.row, .row.reverse {
  -webkit-box-orient: horizontal;
}

.row.reverse {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.col, [class*=" col-"], [class^=col-] {
  margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
}

.col-1 {
  -ms-flex: 0 0 calc(8.33333% - var(--grid-gutter));
  flex: 0 0 calc(8.33333% - var(--grid-gutter));
  max-width: calc(8.33333% - var(--grid-gutter));
}

.col-1, .col-2 {
  -webkit-box-flex: 0;
}

.col-2 {
  -ms-flex: 0 0 calc(16.66667% - var(--grid-gutter));
  flex: 0 0 calc(16.66667% - var(--grid-gutter));
  max-width: calc(16.66667% - var(--grid-gutter));
}

.col-3 {
  -ms-flex: 0 0 calc(25% - var(--grid-gutter));
  flex: 0 0 calc(25% - var(--grid-gutter));
  max-width: calc(25% - var(--grid-gutter));
}

.col-3, .col-4 {
  -webkit-box-flex: 0;
}

.col-4 {
  -ms-flex: 0 0 calc(33.33333% - var(--grid-gutter));
  flex: 0 0 calc(33.33333% - var(--grid-gutter));
  max-width: calc(33.33333% - var(--grid-gutter));
}

.col-5 {
  -ms-flex: 0 0 calc(41.66667% - var(--grid-gutter));
  flex: 0 0 calc(41.66667% - var(--grid-gutter));
  max-width: calc(41.66667% - var(--grid-gutter));
}

.col-5, .col-6 {
  -webkit-box-flex: 0;
}

.col-6 {
  -ms-flex: 0 0 calc(50% - var(--grid-gutter));
  flex: 0 0 calc(50% - var(--grid-gutter));
  max-width: calc(50% - var(--grid-gutter));
}

.col-7 {
  -ms-flex: 0 0 calc(58.33333% - var(--grid-gutter));
  flex: 0 0 calc(58.33333% - var(--grid-gutter));
  max-width: calc(58.33333% - var(--grid-gutter));
}

.col-7, .col-8 {
  -webkit-box-flex: 0;
}

.col-8 {
  -ms-flex: 0 0 calc(66.66667% - var(--grid-gutter));
  flex: 0 0 calc(66.66667% - var(--grid-gutter));
  max-width: calc(66.66667% - var(--grid-gutter));
}

.col-9 {
  -ms-flex: 0 0 calc(75% - var(--grid-gutter));
  flex: 0 0 calc(75% - var(--grid-gutter));
  max-width: calc(75% - var(--grid-gutter));
}

.col-10, .col-9 {
  -webkit-box-flex: 0;
}

.col-10 {
  -ms-flex: 0 0 calc(83.33333% - var(--grid-gutter));
  flex: 0 0 calc(83.33333% - var(--grid-gutter));
  max-width: calc(83.33333% - var(--grid-gutter));
}

.col-11 {
  -ms-flex: 0 0 calc(91.66667% - var(--grid-gutter));
  flex: 0 0 calc(91.66667% - var(--grid-gutter));
  max-width: calc(91.66667% - var(--grid-gutter));
}

.col-11, .col-12 {
  -webkit-box-flex: 0;
}

.col-12 {
  -ms-flex: 0 0 calc(100% - var(--grid-gutter));
  flex: 0 0 calc(100% - var(--grid-gutter));
  max-width: calc(100% - var(--grid-gutter));
}

@media screen and (max-width: 599px) {
  .container {
    width: 100%;
  }
  .col, [class*=col-], [class^=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .col-1-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(8.33333% - var(--grid-gutter));
    flex: 0 0 calc(8.33333% - var(--grid-gutter));
    max-width: calc(8.33333% - var(--grid-gutter));
  }
  .col-2-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(16.66667% - var(--grid-gutter));
    flex: 0 0 calc(16.66667% - var(--grid-gutter));
    max-width: calc(16.66667% - var(--grid-gutter));
  }
  .col-3-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - var(--grid-gutter));
    flex: 0 0 calc(25% - var(--grid-gutter));
    max-width: calc(25% - var(--grid-gutter));
  }
  .col-4-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33333% - var(--grid-gutter));
    flex: 0 0 calc(33.33333% - var(--grid-gutter));
    max-width: calc(33.33333% - var(--grid-gutter));
  }
  .col-5-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(41.66667% - var(--grid-gutter));
    flex: 0 0 calc(41.66667% - var(--grid-gutter));
    max-width: calc(41.66667% - var(--grid-gutter));
  }
  .col-6-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - var(--grid-gutter));
    flex: 0 0 calc(50% - var(--grid-gutter));
    max-width: calc(50% - var(--grid-gutter));
  }
  .col-7-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(58.33333% - var(--grid-gutter));
    flex: 0 0 calc(58.33333% - var(--grid-gutter));
    max-width: calc(58.33333% - var(--grid-gutter));
  }
  .col-8-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(66.66667% - var(--grid-gutter));
    flex: 0 0 calc(66.66667% - var(--grid-gutter));
    max-width: calc(66.66667% - var(--grid-gutter));
  }
  .col-9-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(75% - var(--grid-gutter));
    flex: 0 0 calc(75% - var(--grid-gutter));
    max-width: calc(75% - var(--grid-gutter));
  }
  .col-10-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(83.33333% - var(--grid-gutter));
    flex: 0 0 calc(83.33333% - var(--grid-gutter));
    max-width: calc(83.33333% - var(--grid-gutter));
  }
  .col-11-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(91.66667% - var(--grid-gutter));
    flex: 0 0 calc(91.66667% - var(--grid-gutter));
    max-width: calc(91.66667% - var(--grid-gutter));
  }
  .col-12-md {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - var(--grid-gutter));
    flex: 0 0 calc(100% - var(--grid-gutter));
    max-width: calc(100% - var(--grid-gutter));
  }
}
@media screen and (min-width: 1200px) {
  .col-1-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(8.33333% - var(--grid-gutter));
    flex: 0 0 calc(8.33333% - var(--grid-gutter));
    max-width: calc(8.33333% - var(--grid-gutter));
  }
  .col-2-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(16.66667% - var(--grid-gutter));
    flex: 0 0 calc(16.66667% - var(--grid-gutter));
    max-width: calc(16.66667% - var(--grid-gutter));
  }
  .col-3-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - var(--grid-gutter));
    flex: 0 0 calc(25% - var(--grid-gutter));
    max-width: calc(25% - var(--grid-gutter));
  }
  .col-4-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33333% - var(--grid-gutter));
    flex: 0 0 calc(33.33333% - var(--grid-gutter));
    max-width: calc(33.33333% - var(--grid-gutter));
  }
  .col-5-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(41.66667% - var(--grid-gutter));
    flex: 0 0 calc(41.66667% - var(--grid-gutter));
    max-width: calc(41.66667% - var(--grid-gutter));
  }
  .col-6-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - var(--grid-gutter));
    flex: 0 0 calc(50% - var(--grid-gutter));
    max-width: calc(50% - var(--grid-gutter));
  }
  .col-7-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(58.33333% - var(--grid-gutter));
    flex: 0 0 calc(58.33333% - var(--grid-gutter));
    max-width: calc(58.33333% - var(--grid-gutter));
  }
  .col-8-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(66.66667% - var(--grid-gutter));
    flex: 0 0 calc(66.66667% - var(--grid-gutter));
    max-width: calc(66.66667% - var(--grid-gutter));
  }
  .col-9-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(75% - var(--grid-gutter));
    flex: 0 0 calc(75% - var(--grid-gutter));
    max-width: calc(75% - var(--grid-gutter));
  }
  .col-10-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(83.33333% - var(--grid-gutter));
    flex: 0 0 calc(83.33333% - var(--grid-gutter));
    max-width: calc(83.33333% - var(--grid-gutter));
  }
  .col-11-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(91.66667% - var(--grid-gutter));
    flex: 0 0 calc(91.66667% - var(--grid-gutter));
    max-width: calc(91.66667% - var(--grid-gutter));
  }
  .col-12-lg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - var(--grid-gutter));
    flex: 0 0 calc(100% - var(--grid-gutter));
    max-width: calc(100% - var(--grid-gutter));
  }
}
fieldset {
  padding: 0.5rem 2rem;
}

legend {
  font-size: 0.8em;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

input:not([type=checkbox], [type=radio], [type=submit], [type=color], [type=button], [type=reset]), select, textarea, textarea[type=text] {
  border: 1px solid var(--color-lightGrey);
  border-radius: 4px;
  display: block;
  font-family: inherit;
  font-size: 1em;
  padding: 0.8rem 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f3f3f6 no-repeat 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
  background-origin: content-box;
  background-size: 1ex;
}

.button, [type=button], [type=reset], [type=submit], button {
  background: var(--color-lightGrey);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--color-darkGrey);
  cursor: pointer;
  display: inline-block;
  font-size: var(--font-size);
  line-height: 1;
  padding: 1rem 2.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.button.dark, .button.error, .button.primary, .button.secondary, .button.success, [type=submit] {
  background-color: #000;
  background-color: var(--color-primary);
  color: #fff;
  z-index: 1;
}

.button:hover, [type=button]:hover, [type=reset]:hover, [type=submit]:hover, button:hover {
  opacity: 0.8;
}

button:disabled, button:disabled:hover, input:disabled, input:disabled:hover {
  cursor: not-allowed;
  opacity: 0.4;
}

.grouped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grouped > :not(:last-child) {
  margin-right: 16px;
}

.grouped.gapless > * {
  border-radius: 0 !important;
  margin: 0 0 0 -1px !important;
}

.grouped.gapless > :first-child {
  border-radius: 4px 0 0 4px !important;
  margin: 0 !important;
}

.grouped.gapless > :last-child {
  border-radius: 0 4px 4px 0 !important;
}

input:not([type=checkbox], [type=radio], [type=submit], [type=color], [type=button], [type=reset], :disabled):hover, select:hover, textarea:hover, textarea[type=text]:hover {
  border-color: var(--color-grey);
}

input:not([type=checkbox], [type=radio], [type=submit], [type=color], [type=button], [type=reset]):focus, select:focus, textarea:focus, textarea[type=text]:focus {
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 1px var(--color-primary);
  box-shadow: 0 0 1px var(--color-primary);
  outline: none;
}

input.error:not([type=checkbox], [type=radio], [type=submit], [type=color], [type=button], [type=reset]), textarea.error {
  border-color: var(--color-error);
}

input.success:not([type=checkbox], [type=radio], [type=submit], [type=color], [type=button], [type=reset]), textarea.success {
  border-color: var(--color-success);
}

[type=checkbox], [type=radio] {
  height: 1.6rem;
  width: 2rem;
}

.button + .button {
  margin-left: 1rem;
}

.button.secondary {
  background-color: var(--color-grey);
}

.button.dark {
  background-color: var(--color-darkGrey);
}

.button.error {
  background-color: var(--color-error);
}

.button.success {
  background-color: var(--color-success);
}

.button.outline {
  background-color: transparent;
  border-color: var(--color-lightGrey);
}

.button.outline.primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.button.outline.secondary {
  border-color: var(--color-grey);
  color: var(--color-grey);
}

.button.outline.dark {
  border-color: var(--color-darkGrey);
  color: var(--color-darkGrey);
}

.button.clear {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}

.button.icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.button.icon > img {
  margin-left: 2px;
}

.button.icon-only {
  padding: 1rem;
}

.button:active:not(:disabled), [type=button]:active:not(:disabled), [type=reset]:active:not(:disabled), [type=submit]:active:not(:disabled), button:active:not(:disabled) {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}

::-webkit-input-placeholder {
  color: #bdbfc4;
}

::-moz-placeholder {
  color: #bdbfc4;
}

:-ms-input-placeholder {
  color: #bdbfc4;
}

::-ms-input-placeholder {
  color: #bdbfc4;
}

::placeholder {
  color: #bdbfc4;
}

.nav {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 5rem;
}

.nav img {
  max-height: 3rem;
}

.nav-center, .nav-left, .nav-right, .nav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-center, .nav-left, .nav-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.nav-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nav-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 480px) {
  .nav, .nav > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav-center, .nav-left, .nav-right {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.nav .brand, .nav a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-darkGrey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2rem;
  text-decoration: none;
}

.nav .active:not(.button), .nav [aria-current=page]:not(.button) {
  color: #000;
  color: var(--color-primary);
}

.nav .brand {
  font-size: 1.75em;
  padding-bottom: 0;
  padding-top: 0;
}

.nav .brand img {
  padding-right: 1rem;
}

.nav .button {
  margin: auto 1rem;
}

.card {
  background: var(--bg-color);
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px var(--color-grey);
  box-shadow: 0 1px 3px var(--color-grey);
  padding: 1rem 2rem;
}

.card p:last-child {
  margin: 0;
}

.card header > * {
  margin-bottom: 1rem;
  margin-top: 0;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs a {
  text-decoration: none;
}

.tabs > .dropdown > summary, .tabs > a {
  -webkit-box-flex: 0;
  border-bottom: 2px solid var(--color-lightGrey);
  color: var(--color-darkGrey);
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 1rem 2rem;
  text-align: center;
}

.tabs > a.active, .tabs > a:hover, .tabs > a[aria-current=page] {
  border-bottom: 2px solid var(--color-darkGrey);
  opacity: 1;
}

.tabs > a.active, .tabs > a[aria-current=page] {
  border-color: var(--color-primary);
}

.tabs.is-full a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tag {
  border: 1px solid var(--color-lightGrey);
  color: var(--color-grey);
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 0.5rem;
  text-transform: uppercase;
}

.tag.is-small {
  font-size: 0.75em;
  padding: 0.4rem;
}

.tag.is-large {
  font-size: 1.125em;
  padding: 0.7rem;
}

.tag + .tag {
  margin-left: 1rem;
}

details.dropdown {
  display: inline-block;
  position: relative;
}

details.dropdown > :last-child {
  left: 0;
  position: absolute;
  white-space: nowrap;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-light {
  background-color: var(--color-lightGrey) !important;
}

.bg-dark {
  background-color: var(--color-darkGrey) !important;
}

.bg-grey {
  background-color: var(--color-grey) !important;
}

.bg-error {
  background-color: var(--color-error) !important;
}

.bg-success {
  background-color: var(--color-success) !important;
}

.bd-primary {
  border: 1px solid var(--color-primary) !important;
}

.bd-light {
  border: 1px solid var(--color-lightGrey) !important;
}

.bd-dark {
  border: 1px solid var(--color-darkGrey) !important;
}

.bd-grey {
  border: 1px solid var(--color-grey) !important;
}

.bd-error {
  border: 1px solid var(--color-error) !important;
}

.bd-success {
  border: 1px solid var(--color-success) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-light {
  color: var(--color-lightGrey) !important;
}

.text-dark {
  color: var(--color-darkGrey) !important;
}

.text-grey {
  color: var(--color-grey) !important;
}

.text-error {
  color: var(--color-error) !important;
}

.text-success {
  color: var(--color-success) !important;
}

.text-white {
  color: #fff !important;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

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

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.is-full-screen {
  min-height: 100vh;
  width: 100%;
}

.is-full-width {
  width: 100% !important;
}

.is-vertical-align {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.is-center, .is-horizontal-align {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.is-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.is-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.is-left, .is-right {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.is-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.is-fixed {
  position: fixed;
  width: 100%;
}

.is-paddingless {
  padding: 0 !important;
}

.is-marginless {
  margin: 0 !important;
}

.is-pointer {
  cursor: pointer !important;
}

.is-rounded {
  border-radius: 100%;
}

.clearfix {
  clear: both;
  content: "";
  display: table;
}

.is-hidden {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .hide-xs {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .hide-sm {
    display: none !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .hide-md {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hide-lg {
    display: none !important;
  }
}
@media print {
  .hide-pr {
    display: none !important;
  }
}
.bgs1 .bg-pattern {
  display: none;
}
.bgs1 .bg-filter {
  backdrop-filter: grayscale(100%);
}
.bgs1 .bg-image {
  opacity: 0.1;
}
.bgs1 .bg-underlay {
  display: none;
}

.bgs2 .bg-pattern {
  display: none;
}
.bgs2 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.bgs2 .bg-image {
  opacity: 0.1;
}
.bgs2 .bg-underlay {
  display: none;
}

.bgs3 .bg-pattern {
  display: none;
}
.bgs3 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: color-mix(in srgb, var(--color-primary) 65%, transparent);
}
.bgs3 .bg-image {
  opacity: 0.2;
}
.bgs3 .bg-underlay {
  display: none;
}

.bgs4 .bg-pattern {
  display: none;
}
.bgs4 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: color-mix(in srgb, var(--color-primary) 90%, transparent);
}
.bgs4 .bg-image {
  opacity: 1;
}
.bgs4 .bg-underlay {
  display: none;
}

.bgs5 .bg-pattern {
  display: none;
}
.bgs5 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: color-mix(in srgb, var(--color-secondary) 15%, transparent);
}
.bgs5 .bg-image {
  opacity: 0.1;
}
.bgs5 .bg-underlay {
  display: none;
}

.bgs6 .bg-pattern {
  display: none;
}
.bgs6 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: color-mix(in srgb, var(--color-secondary) 65%, transparent);
}
.bgs6 .bg-image {
  opacity: 0.2;
}
.bgs6 .bg-underlay {
  display: none;
}

.bgs7 .bg-pattern {
  display: none;
}
.bgs7 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: color-mix(in srgb, var(--color-secondary) 90%, transparent);
}
.bgs7 .bg-image {
  opacity: 1;
}
.bgs7 .bg-underlay {
  display: none;
}

.bgs8 .bg-pattern {
  display: none;
}
.bgs8 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: rgba(0, 0, 0, 0.5);
}
.bgs8 .bg-image {
  opacity: 0.7;
}
.bgs8 .bg-underlay {
  display: none;
}

.bgs9 .bg-pattern {
  display: none;
}
.bgs9 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: rgba(0, 0, 0, 0.7);
}
.bgs9 .bg-image {
  opacity: 0.7;
}
.bgs9 .bg-underlay {
  display: none;
}

.bgs10 .bg-pattern {
  display: none;
}
.bgs10 .bg-filter {
  backdrop-filter: grayscale(100%);
  background: rgba(0, 0, 0, 0.8);
}
.bgs10 .bg-image {
  opacity: 0.9;
}
.bgs10 .bg-underlay {
  display: none;
}

.bgs11 .bg-pattern {
  display: none;
}
.bgs11 .bg-filter {
  backdrop-filter: blur(5px);
}
.bgs11 .bg-underlay {
  display: none;
}

.bgs12 .bg-pattern {
  display: none;
}
.bgs12 .bg-filter {
  backdrop-filter: blur(14px);
}
.bgs12 .bg-underlay {
  display: none;
}

.bgs13 .bg-pattern {
  display: none;
}
.bgs13 .bg-filter {
  backdrop-filter: blur(25px);
}
.bgs13 .bg-underlay {
  display: none;
}

.bgs14 .bg-pattern {
  display: none;
}
.bgs14 .bg-filter {
  backdrop-filter: sepia(100%);
}
.bgs14 .bg-underlay {
  display: none;
}

.bgs15 .bg-pattern {
  display: none;
}
.bgs15 .bg-filter {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.bgs16 .bg-pattern {
  display: none;
}
.bgs16 .bg-filter {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.bgs17 > .bg-image {
  display: none;
}
.bgs17 > .bg-pattern {
  background: var(--primary5);
  opacity: 0.2;
}
.bgs17 > .bg-underlay {
  background: linear-gradient(45deg, var(--primary3), var(--primary5));
}

.button.secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
}
.button.secondary.outline {
  background-color: transparent;
  color: var(--color-secondary);
}
.button.accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}
.button.accent.outline {
  background-color: transparent;
  color: var(--color-accent);
}
.button.white {
  background-color: white;
  border-color: white;
  color: black;
}
.button.white.outline {
  background-color: transparent;
  color: white;
}
.button.black {
  background-color: black;
  border-color: black;
  color: white;
}
.button.black.outline {
  background-color: transparent;
  color: black;
}

/* The side navigation menu */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: var(--background-color, var(--color-primary));
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.3s;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--color, white);
  display: block;
  transition: 0.3s;
  white-space: nowrap;
  overflow: hidden;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  opacity: 0.8;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left 0.5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
.flip .grid {
  grid-template-areas: "left" "right";
}
.flip .grid *:first-child {
  grid-area: left;
}
.flip .grid *:last-child {
  grid-area: right;
}
@media (min-width: 992px) {
  .flip .grid {
    grid-template-areas: "right left";
  }
}

/**
 * Swiper 11.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 31, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.s001 h1, .s001 h2, .s001 h3, .s001 h4, .s001 h5, .s001 h6 {
  margin: 0;
  padding-left: var(--spacing);
  border-left: 1px solid var(--primary);
}

.s002 ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
@media (min-width: 768px) {
  .s002 ul {
    display: block;
  }
}

.s003 details {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background: var(--background-color, white);
  margin-bottom: 0.5em;
}
.s003 details ::marker {
  color: var(--marker-color, var(--color-primary));
}
.s003 details summary {
  padding: 0.5em 1em;
  color: var(--heading-color, inherit);
}

.s006 > div {
  display: grid;
  grid-gap: 1em;
}
@media (min-width: 768px) {
  .s006 > div {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .s006 > div {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.s006 .card {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  margin: 0;
}
.s006 svg {
  min-height: 50px;
  min-width: 50px;
  fill: var(--color-primary);
  margin-right: var(--spacing);
}
.s006 a {
  text-decoration: none;
}

.s007.grid {
  gap: 0;
}
.s007 .card {
  aspect-ratio: 4/3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .s008 .grid {
    gap: calc(var(--grid-gutter) * 3);
  }
  .s008 .bgi {
    top: 0;
    left: 50%;
    bottom: 0;
    right: 0;
  }
  .s008 .grid > div:nth-of-type(2) {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
}

.s009 .grid {
  align-items: center;
  grid-column-gap: 12rem;
}

.s010 {
  padding: 0;
}
.s010 > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .s010 > div > button {
    display: none;
  }
}
.s010 nav {
  display: none;
}
@media (min-width: 992px) {
  .s010 nav {
    display: flex;
  }
}
.s010 nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
  list-style-type: none;
}

.s011 {
  --block-spacing-vertical: 1em;
}
.s011 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s011 nav {
  display: none;
}
.s011 nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
}
@media (min-width: 992px) {
  .s011 nav {
    display: inline-block;
  }
}
.s011 nav details .card {
  z-index: 2;
}
.s011 .logo img {
  max-height: 180px;
}
.s011 button {
  margin: auto;
  width: fit-content;
}
@media (min-width: 992px) {
  .s011 button {
    display: none;
  }
}
.s011 a {
  color: inherit;
}
.s011 a.active {
  text-decoration: underline;
}

.s011 {
  border-top: 5px solid #df5e95;
}

.s012 {
  padding: 0;
  text-align: center;
}
.s012 a.logo {
  width: 300px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
}
.s012 > div {
  display: flex;
}
.s012 > div > div {
  width: 100%;
}
.s012 > div > div > div {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 1.5em;
}
.s012 nav {
  background: var(--color-secondary);
  flex-grow: 1;
  justify-content: end;
  height: 75px;
  padding-right: 1em;
}
.s012 ul:nth-of-type(1) {
  display: none;
}
@media (min-width: 992px) {
  .s012 ul:nth-of-type(1) {
    display: block;
  }
  .s012 ul:nth-of-type(2) {
    display: none;
  }
}

.s013 {
  text-align: center;
}
.s013 p {
  font-size: 0.8em;
}
.s013 img {
  margin-bottom: var(--spacing);
}
.s013 ul {
  padding: 0;
  display: flex;
  gap: var(--spacing);
  justify-content: center;
}
.s013 ul li {
  list-style-type: none;
}
.s013 ul li a {
  text-decoration: none;
}
.s013 ul li svg {
  width: 1.5em;
  height: 1.5em;
}

.s014 > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  text-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .s014 > div {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.s014 hr {
  width: 100%;
  grid-column: 1/-1;
  order: 0;
}
.s014 ul {
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0;
  gap: 1em;
}
@media (min-width: 992px) {
  .s014 ul {
    order: 1;
    justify-content: start;
  }
}
.s014 ul li {
  list-style-type: none;
}
.s014 ul svg {
  width: 1.5em;
  height: 1.5em;
  color: var(--svg-color);
}
.s014 p {
  font-size: 0.8em;
  margin: 0;
  order: 3;
}
@media (min-width: 992px) {
  .s014 p {
    text-align: right;
  }
}
.s014 img {
  height: 30px;
  margin: auto;
}
@media (min-width: 992px) {
  .s014 img {
    order: 2;
  }
}

.s015 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 0;
}
.s015 li {
  display: flex;
  align-items: center;
  background: var(--background-color, var(--primary5));
  border-radius: var(--border-radius);
  padding: 0.8em 1.5em;
  color: var(--color);
}
.s015 svg {
  width: 1.5em;
  height: 1.5em;
  margin-right: 1em;
  fill: var(--svg-color, white);
}

.s016 .grid {
  grid-column-gap: 12rem;
}
.s016 .grid > div:last-child {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
  align-content: baseline;
}

.s017 .container > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gutter);
}
@media (min-width: 768px) {
  .s017 .container > div:last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.s017 .container > div:last-child img:first-of-type {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .s017 .container > div:last-child img:first-of-type {
    grid-column: span 1;
  }
}

.s018 article {
  text-align: center;
}
.s018 svg {
  width: 70px;
  height: 70px;
  margin-bottom: 1em;
}

.s019 ul {
  margin: 0;
  display: grid;
  padding-left: 1em;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: var(--grid-gutter);
}
.s019 article > div:last-child svg {
  fill: var(--color-primary);
  margin-right: 0.5em;
}

.s020 {
  text-align: center;
}
.s020 hgroup {
  margin: auto;
  max-width: 600px;
}
.s020 a.button {
  --font-size: 1.5em;
}

@media (min-width: 992px) {
  .s021 > .grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing);
  }
}
.s021 > div > div {
  display: grid;
  grid-template-columns: auto 1fr;
}
.s021 > div > div svg {
  width: 70px;
  height: 70px;
  margin-right: 1em;
}
.s021 > div > div p {
  grid-column-start: 2;
}

.s022 > div > div {
  text-align: center;
}

.s023 {
  text-align: center;
}
.s023 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.s023 li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.8em;
}
.s023 li:not(:first-child)::before {
  content: "/";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-left: 6px;
}

.s024 .card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  padding-top: 3em;
}
.s024 .recommended > div {
  position: absolute;
  background: var(--color-primary);
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  padding: 0.5em 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.s024 h3 {
  margin: 0;
}
.s024 ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.s024 li {
  list-style-type: none;
}

.s025 {
  padding: 0;
}
.s025 .swiper {
  height: 400px;
}
.s025 .swiper > div:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.s025 .swiper > div:first-child a {
  pointer-events: all;
}

.s026 .card {
  text-align: center;
}
.s026 .card img {
  border-radius: 50%;
  margin-bottom: var(--spacing);
}
.s026 .card ul {
  margin: 0;
  margin-top: var(--spacing);
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.s026 .card ul li {
  list-style-type: none;
}
.s026 .card ul svg {
  width: 1.5em;
  height: 1.5em;
}

@media (min-width: 992px) {
  .s027 > div {
    display: flex;
    gap: 1em;
  }
}
.s027 img {
  width: 100%;
}
.s027 .left {
  display: none;
}
.s027 .left img:first-of-type {
  padding-left: 4em;
}
@media (min-width: 768px) {
  .s027 .left {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
}
.s027 .right {
  display: grid;
  gap: 1em;
}
.s027 .right article {
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.s027 .right article p {
  font-size: 1.5em;
  margin: 0;
}
.s027 .right article small {
  color: white;
}
@media (min-width: 992px) {
  .s027 .right {
    flex-basis: 60%;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .s027 .right img:first-of-type {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .s027 .right img:last-of-type {
    order: 2;
  }
}

.s028 .swiper-slide {
  text-align: center;
}
.s028 img {
  width: 120px;
  height: auto;
}

.s029 .grid {
  align-items: center;
}
.s029 .left {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1em;
  align-content: baseline;
}
.s029 .left img:first-of-type {
  grid-row-end: span 3;
  margin-top: 3em;
}
.s029 .left img:last-of-type {
  width: 80%;
}

div.slice {
  border-top: 5px dashed orange;
  display: block;
  position: relative;
}
div.slice .slice-name {
  position: absolute;
  top: -5px;
  right: 0;
  padding: 0 0.5em;
  color: white;
  font-weight: bold;
  font-size: 15px;
  background: orange;
}

:root {
  --box-shadow: .0145rem .029rem .174rem rgba(129, 145, 181, .01698),.0335rem .067rem .402rem rgba(129, 145, 181, .024),.0625rem .125rem .75rem rgba(129, 145, 181, .03),.1125rem .225rem 1.35rem rgba(129, 145, 181, .036),.2085rem .417rem 2.502rem rgba(129, 145, 181, .04302),.5rem 1rem 6rem rgba(129, 145, 181, .06),0 0 0 .0625rem rgba(129, 145, 181, .015);
  --spacing: 1rem;
  --block-spacing-vertical: calc(var(--spacing) * 4);
  --grid-gutter: calc(var(--spacing) * 2);
}
@media (min-width: 992px) {
  :root {
    --block-spacing-vertical: calc(var(--spacing) * 8);
  }
}
@media (min-width: 992px) {
  :root {
    --grid-gutter: calc(var(--spacing) * 4);
  }
}

.card {
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 0;
}

section {
  position: relative;
  padding-top: var(--block-spacing-vertical);
  padding-bottom: var(--block-spacing-vertical);
}

h1, h2, h3, h4, h5 {
  color: var(--heading-color);
}

svg {
  fill: var(--svg-color);
}

li::marker {
  color: var(--marker-color);
}

fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 1em;
}

hgroup h1, hgroup h2, hgroup h3 {
  margin-bottom: 0;
}
hgroup > p {
  font-size: 1.2em;
  opacity: 0.8;
}

nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
nav details ul {
  display: flex;
  margin-top: 0.5em;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 0.5em;
}
nav details .card {
  position: absolute;
  z-index: 1;
}

.card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gutter);
}
@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}

a {
  text-decoration: none;
}

.button.accent {
  background-color: var(--color-accent);
}

.bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bg > div {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bg .pattern {
  mask-repeat: repeat;
}

.bg1 .color {
  background-color: var(--color-primary);
}
.bg1 .pattern {
  background: white;
  opacity: 0.1;
}

.bg2 .color {
  background: linear-gradient(45deg, var(--primary3), var(--primary5));
}
.bg2 .pattern {
  background: black;
  opacity: 0.05;
}

.bg3 .color {
  background: linear-gradient(45deg, var(--primary6), var(--primary8));
}
.bg3 .pattern {
  background: black;
  opacity: 0.05;
}

.bg4 .color {
  background: #f8f8f8;
}
.bg4 .pattern {
  background: black;
  opacity: 0.08;
}

.s010 {
  margin-top: 1em;
}
.s010 img {
  height: 50px;
}

.s006 h2 {
  text-align: center;
  margin-bottom: 2em;
  color: white;
}

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