/* stylelint-disable */
:root {
  --etfe-font-family-sans-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --etfe-font-family-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --etfe-font-family-monospace: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
  --etfe-font-family-icons: 'Font Awesome 7 Pro';
  --etfe-font-headings: var(--etfe-font-family-sans-serif);
  --etfe-font-body: var(--etfe-font-family-serif);
  --etfe-font-family: var(--etfe-font-family-serif);
  --etfe-line-height: 1.35;
  --etfe-letter-spacing: 0;
  --etfe-text-color: var(--etfe-color-gray-darkest);
  --etfe-link-color: var(--etfe-color-primary);
  --etfe-nav-link-color: var(--etfe-color-white);
  --etfe-text-decoration: underline;
  --etfe-font-size: 17px;
  --etfe-font-weight-lightest: 200;
  --etfe-font-weight-light: 300;
  --etfe-font-weight-normal: 400;
  --etfe-font-weight-bold: 600;
  --etfe-font-weight-boldest: 700;
  --etfe-font-scale: 1;
  --etfe-primary-focus: var(--etfe-color-primary);
  --etfe-nav-link-font: var(--etfe-font-headings);
  --etfe-nav-link-font-weight: 500;
  --etfe-nav-link-font-weight-current: 600;
  --etfe-nav-element-spacing-vertical: 1rem;
  --etfe-nav-element-spacing-horizontal: 0.75rem;
  --etfe-nav-link-spacing-vertical: 0.5rem;
  --etfe-nav-link-spacing-horizontal: 1rem;
  --etfe-nav-logo-width: 9rem;
  --etfe-nav-logo-width-small: 8rem;
  --etfe-nav-logo-width-scroll: 5rem;
  --etfe-icon-search: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path fill="%23929292" d="M384 208A176 176 0 1 0 32 208a176 176 0 1 0 352 0zM343.3 366C307 397.2 259.7 416 208 416C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208c0 51.7-18.8 99-50 135.3L507.3 484.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L343.3 366z"/></svg>');
  --etfe-border-radius-smallest: 4px;
  --etfe-border-radius-small: 5px;
  --etfe-border-radius: 8px;
  --etfe-border-radius-large: 10px;
  --etfe-border-radius-round: 50%;
  --etfe-border-width: 1px;
  --etfe-border-color: var(--etfe-color-gray-light);
  --etfe-button-border-color: var(--etfe-color-gray-lighter);
  --etfe-bkrd-color: var(--etfe-color-white);
  --etfe-border: var(--etfe-border-width) solid var(--etfe-border-color);
  --etfe-transition: 0.4s ease-in-out;
  --etfe-transition-faster: 0.2s ease-in-out;
  --etfe-transition-slower: 0.75s ease-in-out;
  --etfe-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  --etfe-box-shadow: 0 1px 1px rgba(3, 7, 18, 0.02), 0 5px 4px rgba(3, 7, 18, 0.03), 0 12px 9px rgba(3, 7, 18, 0.05), 0 20px 15px rgba(3, 7, 18, 0.06), 0 32px 24px rgba(3, 7, 18, 0.08);
  --etfe-box-shadow-secondary: 0 0 10px rgba(135, 135, 135, 0.164);
  --etfe-box-shadow-tertiary: 0 0 5px rgba(202, 202, 202, 0.333);
  --etfe-box-shadow-focus: 0 0 0 var(--etfe-border-width) var(--etfe-primary-focus);
  --etfe-spacing: 1rem;
  --etfe-typography-spacing-vertical: 1rem;
  --etfe-block-spacing-vertical: calc(var(--etfe-spacing) * 2);
  --etfe-block-spacing-horizontal: var(--etfe-spacing);
  --etfe-grid-column-gap: var(--etfe-spacing);
  --etfe-grid-row-gap: var(--etfe-spacing);
  --etfe-button-spacing-vertical: 0.5rem;
  --etfe-button-spacing-horizontal: 2rem;
  --etfe-form-element-spacing-vertical: 1rem;
  --etfe-form-element-spacing-horizontal: 0.5rem;
  --etfe-gradient-a: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.59) 40.34%, rgba(255, 255, 255, 0));
  --etfe-gradient-b: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.59) 21.01%, rgba(95, 95, 95, 0.06) 52.94%, rgba(0, 0, 0, 0) 71.85%, rgba(255, 255, 255, 0) 93.28%);
}

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

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

:where(:root) {
  color: var(--etfe-text-color);
  font-weight: var(--etfe-font-weight-normal, 400);
  font-size: var(--etfe-font-size);
  font-family: var(--etfe-font-family);
  line-height: var(--etfe-line-height);
  overflow-wrap: break-word;
  tab-size: 4;
  background-color: var(--etfe-bkrd-color);
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
  text-underline-offset: var(--etfe-text-underline-offset);
  text-rendering: optimizeLegibility;
}

body {
  scroll-behavior: smooth;
}

/**
   * Landmarks
   */
body {
  width: 100%;
  margin: 0;
}

main {
  display: block;
}

/**
   * Basics form elements
   */
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  letter-spacing: inherit;
}

input {
  overflow: visible;
}

select {
  text-transform: none;
}

legend {
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  appearance: textfield;
}

[type=search]::-webkit-search-decoration {
  appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  appearance: button;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

:-moz-focusring {
  outline: none;
}

:-moz-ui-invalid {
  box-shadow: none;
}

::-ms-expand {
  display: none;
}

[type=file],
[type=range] {
  padding: 0;
  border-width: 0;
}

input:not([type=checkbox], [type=radio], [type=range]) {
  height: calc(1rem * var(--etfe-line-height) + var(--etfe-form-element-spacing-vertical) * 2 + var(--etfe-border-width) * 2);
}

form,
fieldset {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

label,
fieldset legend {
  display: block;
  color: var(--etfe-font-c);
  font-weight: var(--etfe-font-weight-normal);
}

input:not([type=checkbox], [type=radio]),
button[type=submit],
select,
textarea {
  width: 100%;
}

input:not([type=checkbox], [type=radio], [type=range], [type=file]),
select,
textarea {
  padding: var(--etfe-form-element-spacing-vertical) var(--etfe-form-element-spacing-horizontal);
  appearance: none;
}

input,
select,
textarea {
  color: var(--etfe-text-color);
  font-weight: var(--etfe-font-weight-normal);
  border: var(--etfe-border-width) solid var(--etfe-border-color);
  border-radius: var(--etfe-border-radius);
  outline: none;
  transition: background-color var(--etfe-transition), border-color var(--etfe-transition), color var(--etfe-transition), box-shadow var(--etfe-transition);
}

input:not([type=submit],
[type=button],
[type=reset],
[type=checkbox],
[type=radio],
[readonly]):is(:active, :focus),
:where(select, textarea):not([readonly]):is(:active, :focus) {
  box-shadow: var(--etfe-box-shadow-focus);
}

input:not([type=submit], [type=button], [type=reset], [role=switch], [readonly]):is(:active, :focus),
:where(select, textarea):not([readonly]):is(:active, :focus) {
  --etfe-border-color: var(--etfe-primary-focus);
}

input:not([type=submit],
[type=button],
[type=reset],
[type=range],
[type=file],
[readonly]):focus,
:where(select, textarea):not([readonly]):focus {
  --etfe-box-shadow: 0 0 0 var(--etfe-outline-width) var(--etfe-color-primary);
}

input:not([type=submit], [type=button], [type=reset])[disabled],
select[disabled],
textarea[disabled],
label[aria-disabled=true],
:where(fieldset[disabled]):is(input:not([type=submit], [type=button], [type=reset]), select, textarea) {
  opacity: var(--etfe-form-element-disabled-opacity);
  pointer-events: none;
}

label[aria-disabled=true] input[disabled] {
  opacity: 1;
}

:where(input, select, textarea):not([type=checkbox],
[type=radio],
[type=date],
[type=datetime-local],
[type=month],
[type=time],
[type=week],
[type=range])[aria-invalid] {
  padding-inline: var(--etfe-form-element-spacing-horizontal) calc(var(--etfe-form-element-spacing-horizontal) + 1.5rem);
  padding-right: calc(var(--etfe-form-element-spacing-horizontal) + 1.5rem);
  padding-left: var(--etfe-form-element-spacing-horizontal);
  background-repeat: no-repeat;
  background-position: center right 0.75rem;
  background-size: 1rem auto;
}
:where(input, select, textarea)[aria-invalid=false] {
  --etfe-border-color: var(--etfe-form-element-valid-border-color);
}
:where(input, select, textarea)[aria-invalid=false]:is(:active, :focus) {
  --etfe-border-color: var(--etfe-form-element-valid-active-border-color);
}
:where(input, select, textarea)[aria-invalid=false]:is(:active, :focus):not([type=checkbox], [type=radio]) {
  --etfe-box-shadow: 0 0 0 var(--etfe-outline-width) var(--etfe-form-element-valid-focus-color);
}
:where(input, select, textarea)[aria-invalid=true] {
  --etfe-border-color: var(--etfe-form-element-invalid-border-color);
}
:where(input, select, textarea)[aria-invalid=true]:is(:active, :focus) {
  --etfe-border-color: var(--etfe-form-element-invalid-active-border-color);
}
:where(input, select, textarea)[aria-invalid=true]:is(:active, :focus):not([type=checkbox], [type=radio]) {
  --etfe-box-shadow: 0 0 0 var(--etfe-outline-width) var(--etfe-form-element-invalid-focus-color);
}

[dir=rtl] :where(input, select, textarea):not([type=checkbox], [type=radio]):is([aria-invalid], [aria-invalid=true], [aria-invalid=false]) {
  background-position: center left 0.75rem;
}

input[type=search]::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--etfe-color-gray-dark);
  font-size: var(--etfe-font-size-small);
  opacity: 1;
}

select::-ms-expand {
  border: 0;
  background-color: transparent;
}
select:not([multiple], [size]) {
  padding-inline: var(--etfe-form-element-spacing-horizontal) calc(var(--etfe-form-element-spacing-horizontal) + 1.5rem);
  padding-right: calc(var(--etfe-form-element-spacing-horizontal) + 1.5rem);
  padding-left: var(--etfe-form-element-spacing-horizontal);
  background-repeat: no-repeat;
  background-position: center right 0.75rem;
  background-size: 1rem auto;
}
select[multiple] option:checked {
  color: var(--etfe-form-element-color);
  background: var(--etfe-form-element-selected-background-color);
}

[dir=rtl] select:not([multiple], [size]) {
  background-position: center left 0.75rem;
}

textarea {
  display: block;
  resize: vertical;
}
textarea[aria-invalid] {
  --etfe-icon-height: calc((1rem * var(--etfe-line-height)) + (var(--etfe-form-element-spacing-vertical) * 2) + (var(--etfe-border-width) * 2));
  background-position: top right 0.75rem !important;
  background-size: 1rem var(--etfe-icon-height) !important;
}

label > :where(input, select, textarea) {
  margin-top: calc(var(--etfe-spacing) * 0.25);
}

/**
   * Input type search
   */
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
  padding-inline-end: calc(var(--etfe-form-element-spacing-horizontal) + 1.75rem);
  background-image: var(--etfe-icon-search);
  background-repeat: no-repeat;
  background-position: center right calc(var(--etfe-form-element-spacing-horizontal) + 0.125rem);
  background-size: 1rem auto;
}
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid] {
  padding-inline-start: calc(var(--etfe-form-element-spacing-horizontal) + 1.75rem);
  background-position: center left 1.125rem, center right 0.75rem;
}
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid=false] {
  background-image: var(--etfe-icon-search), var(--etfe-icon-valid);
}
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search][aria-invalid=true] {
  background-image: var(--etfe-icon-search), var(--etfe-icon-invalid);
}

input[type=search]::-webkit-search-cancel-button {
  display: inline-block; /* Forces it to show when text is present */
  color: var(--etfe-color-primary);
  cursor: pointer;
  appearance: auto !important;
}

/* stylelint-disable */
nav {
  justify-content: space-between;
  overflow: visible;
}
nav a {
  text-decoration: none;
}
nav ol,
nav ul {
  gap: var(--etfe-grid-column-gap);
  align-items: center;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
nav li {
  display: inline-block;
  margin: 0;
  color: var();
}
nav li :where(a, [role=link]) {
  display: inline-block;
  padding: var(--etfe-nav-link-spacing-vertical) var(--etfe-nav-link-spacing-horizontal);
}
nav li :where(a, [role=link]):not(:hover) {
  text-decoration: none;
}
nav li button a,
nav li [role=button] a,
nav li [type=button] a,
nav li input:not([type=checkbox], [type=radio], [type=range], [type=file]),
nav li select {
  height: auto;
  margin-right: inherit;
  margin-bottom: 0;
  margin-left: inherit;
  padding: calc(var(--etfe-nav-link-spacing-vertical) - var(--etfe-border-width) * 2) var(--etfe-nav-link-spacing-horizontal);
}
nav[aria-label=breadcrumbs],
nav .breadcrumbs {
  flex-direction: column;
  justify-content: start;
}
nav[aria-label=breadcrumbs] ul li:not(:first-child),
nav .breadcrumbs ul li:not(:first-child) {
  margin-inline-start: var(--etfe-nav-link-spacing-horizontal);
}
nav[aria-label=breadcrumbs] ul li a,
nav .breadcrumbs ul li a {
  margin: calc(var(--etfe-nav-link-spacing-vertical) * -1) 0;
  margin-inline-start: calc(var(--etfe-nav-link-spacing-horizontal) * -1);
}
nav[aria-label=breadcrumbs] ul li:not(:last-child)::after,
nav .breadcrumbs ul li:not(:last-child)::after {
  position: absolute;
  content: var(--etfe-nav-breadcrumb-divider);
  display: inline-block;
  width: calc(var(--etfe-nav-link-spacing-horizontal) * 4);
  margin: 0 calc(var(--etfe-nav-link-spacing-horizontal) * -1);
  color: var(--etfe-muted-color);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
nav[aria-label=breadcrumbs] a[aria-current]:not([aria-current=false]),
nav .breadcrumbs a[aria-current]:not([aria-current=false]) {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  pointer-events: none;
}
@media (width >= 640px) {
  nav[aria-label=breadcrumbs],
  nav .breadcrumbs {
    flex-direction: row;
    gap: 5px;
    align-items: center;
  }
}
@media (width < 1024px) {
  nav ul.nav-menu {
    position: absolute;
    top: 95%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  nav ul.nav-menu.menu-open {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  nav ul.nav-menu li {
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }
  nav ul.nav-menu li:last-child {
    border-bottom: 0;
  }
  nav ul.nav-menu li a {
    display: block;
    width: 100%;
    padding: 1rem;
  }
}

.hamburger {
  position: relative;
  display: none;
  width: 30px;
  height: 25px;
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  display: block;
  width: 50%;
  height: 3px;
  background: #ffffff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(odd) {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.hamburger span:nth-child(even) {
  left: 50%;
  border-radius: 0 3px 3px 0;
}
.hamburger span:nth-child(1), .hamburger span:nth-child(2) {
  top: 0;
}
.hamburger span:nth-child(3), .hamburger span:nth-child(4) {
  top: 11px;
}
.hamburger span:nth-child(5), .hamburger span:nth-child(6) {
  top: 22px;
}
.hamburger.active span:nth-child(1), .hamburger.active span:nth-child(6) {
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(5) {
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(1) {
  top: 7px;
  left: 2px;
}
.hamburger.active span:nth-child(2) {
  top: 7px;
  left: calc(50% - 2px);
}
.hamburger.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.hamburger.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.hamburger.active span:nth-child(5) {
  top: 15px;
  left: 2px;
}
.hamburger.active span:nth-child(6) {
  top: 15px;
  left: calc(50% - 2px);
}
@media (width < 1024px) {
  .hamburger {
    display: block;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.header--nav {
  position: relative;
}
@media (width < 768px) {
  .header--nav .header-button {
    display: none !important;
  }
}

#menu-primary a {
  font-size: 24px !important;
}
@media (width >= 768px) {
  #menu-primary li:not(.button) a {
    color: white;
  }
  #menu-primary li:not(.button) a:hover {
    color: var(--etfe-color-secondary);
  }
}

.header-button {
  display: block;
  text-transform: uppercase;
  visibility: visible;
}
@media (width < 768px) {
  .header-button {
    display: none;
    visibility: hidden;
  }
}

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

:root {
  --etfe-color-white: hsl(0, 0%, 100%);
  --etfe-color-black: hsl(0, 0%, 9%);
  --etfe-color-primary-lightest: rgb(100.2105263158, 149.6390977444, 236.7894736842);
  --etfe-color-primary-light: rgb(19.3684210526, 71.9398496241, 164.6315789474);
  --etfe-color-primary: #0e3477;
  --etfe-color-primary-dark: rgb(8.6315789474, 32.0601503759, 73.3684210526);
  --etfe-color-primary-darkest: rgb(3.2631578947, 12.1203007519, 27.7368421053);
  --etfe-color-secondary-lightest: hsl(41.0050251256, 100%, 100.9803921569%);
  --etfe-color-secondary-light: rgb(255, 208.1457286432, 107);
  --etfe-color-secondary: #ffc038;
  --etfe-color-secondary-dark: rgb(255, 175.8542713568, 5);
  --etfe-color-secondary-darkest: rgb(209, 142.8341708543, 0);
  --etfe-color-tertiary-lightest: rgb(178.9065420561, 227.0560747664, 239.0934579439);
  --etfe-color-tertiary-light: rgb(52.3598130841, 180.5841121495, 212.6401869159);
  --etfe-color-tertiary: #2595b1;
  --etfe-color-tertiary-dark: rgb(28.1822429907, 113.4906542056, 134.8177570093);
  --etfe-color-tertiary-darkest: rgb(19.3644859813, 77.9813084112, 92.6355140187);
  --etfe-color-quaternary-lightest: hsl(42.3529411765, 93.4065934066%, 104.3137254902%);
  --etfe-color-quaternary-light: rgb(250.6813186813, 214.6923076923, 128.3186813187);
  --etfe-color-quaternary: #f9c74f;
  --etfe-color-quaternary-dark: rgb(247.3186813187, 183.3076923077, 29.6813186813);
  --etfe-color-quaternary-darkest: rgb(218.5494505495, 156.4615384615, 7.4505494505);
  --etfe-color-gray-lightest: hsl(0, 0%, 111.7647058824%);
  --etfe-color-gray-light: rgb(208.5, 208.5, 208.5);
  --etfe-color-gray: #b7b7b7;
  --etfe-color-gray-dark: rgb(157.5, 157.5, 157.5);
  --etfe-color-gray-darkest: #848484;
  --etfe-color-success-lightest: rgb(216.6533864542, 238.3466135458, 217.5298804781);
  --etfe-color-success-light: rgb(109.9800796813, 192.0199203187, 113.2948207171);
  --etfe-color-success: #4caf50;
  --etfe-color-success-dark: rgb(60.5577689243, 139.4422310757, 63.7450199203);
  --etfe-color-success-darkest: rgb(45.1155378486, 103.8844621514, 47.4900398406);
  --etfe-color-alert-lightest: rgb(255, 241.2857142857, 207);
  --etfe-color-alert-light: rgb(255, 197.5714285714, 54);
  --etfe-color-alert: #ffb703;
  --etfe-color-alert-dark: rgb(207, 147.8571428571, 0);
  --etfe-color-alert-darkest: rgb(156, 111.4285714286, 0);
  --etfe-color-failure-lightest: #ff9d9d;
  --etfe-color-failure-light: #ff0404;
  --etfe-color-failure: #d00000;
  --etfe-color-failure-dark: #9d0000;
  --etfe-color-failure-darkest: #6a0000;
  --etfe-color-info-lightest: rgb(226.5384615385, 241.5384615385, 253.4615384615);
  --etfe-color-info-light: rgb(81.3846153846, 172.8846153846, 245.6153846154);
  --etfe-color-info: #2196f3;
  --etfe-color-info-dark: rgb(11.5384615385, 124.0384615385, 213.4615384615);
  --etfe-color-info-darkest: rgb(8.9230769231, 95.9230769231, 165.0769230769);
  --etfe-color-highlight-lightest: hsl(47.8571428571, 100%, 107.0588235294%);
  --etfe-color-highlight-light: rgb(255, 231.3214285714, 138);
  --etfe-color-highlight: #ffdd57;
  --etfe-color-highlight-dark: rgb(255, 210.6785714286, 36);
  --etfe-color-highlight-darkest: rgb(240, 191.4285714286, 0);
  --etfe-color-transparent-lightest: hsla(218, 79%, 66%, 0.08);
  --etfe-color-transparent-light: hsla(218, 79%, 36%, 0.08);
  --etfe-color-transparent: hsla(218, 79%, 26%, 0.08);
  --etfe-color-transparent-dark: hsla(218, 79%, 16%, 0.08);
  --etfe-color-transparent-darkest: hsla(218, 79%, 6%, 0.08);
  --etfe-color-gray-lightest: #f5f5f5;
  --etfe-color-gray-lighter: hsl(274, 9%, 90%);
  --etfe-color-gray-light: #BCBCBC;
  --etfe-color-gray: #b7b7b7;
  --etfe-color-gray-dark: rgb(157.5, 157.5, 157.5);
  --etfe-color-gray-darker: #848484;
  --etfe-color-gray-darkest: hsl(359, 1%, 17%);
}

[class*=bk-is-] {
  background-color: var(--etfe-bkrd-color);
}

[class*=color-is-] {
  color: var(--etfe-text-color);
}

.bk-is-white {
  --etfe-bkrd-color: var(--etfe-color-white);
}

.color-is-white {
  --etfe-text-color: var(--etfe-color-white);
}

.bk-is-black {
  --etfe-bkrd-color: var(--etfe-color-black);
}

.color-is-black {
  --etfe-text-color: var(--etfe-color-black);
}

.bk-hover-is-white:hover {
  background-color: var(--etfe-color-white) !important;
}

.bk-hover-is-black:hover {
  background-color: var(--etfe-color-black) !important;
}

.color-hover-is-white:hover {
  color: var(--etfe-color-white) !important;
}

.color-hover-is-black:hover {
  color: var(--etfe-color-black) !important;
}

.bk-is-primary {
  --etfe-bkrd-color: var(--etfe-color-primary);
}

.color-is-primary {
  --etfe-text-color: var(--etfe-color-primary);
}

.bk-is-secondary {
  --etfe-bkrd-color: var(--etfe-color-secondary);
}

.color-is-secondary {
  --etfe-text-color: var(--etfe-color-secondary);
}

.bk-is-tertiary {
  --etfe-bkrd-color: var(--etfe-color-tertiary);
}

.color-is-tertiary {
  --etfe-text-color: var(--etfe-color-tertiary);
}

.bk-is-quaternary {
  --etfe-bkrd-color: var(--etfe-color-quaternary);
}

.color-is-quaternary {
  --etfe-text-color: var(--etfe-color-quaternary);
}

.bk-is-gray {
  --etfe-bkrd-color: var(--etfe-color-gray);
}

.color-is-gray {
  --etfe-text-color: var(--etfe-color-gray);
}

.bk-is-success {
  --etfe-bkrd-color: var(--etfe-color-success);
}

.color-is-success {
  --etfe-text-color: var(--etfe-color-success);
}

.bk-is-alert {
  --etfe-bkrd-color: var(--etfe-color-alert);
}

.color-is-alert {
  --etfe-text-color: var(--etfe-color-alert);
}

.bk-is-failure {
  --etfe-bkrd-color: var(--etfe-color-failure);
}

.color-is-failure {
  --etfe-text-color: var(--etfe-color-failure);
}

.bk-is-info {
  --etfe-bkrd-color: var(--etfe-color-info);
}

.color-is-info {
  --etfe-text-color: var(--etfe-color-info);
}

.bk-is-highlight {
  --etfe-bkrd-color: var(--etfe-color-highlight);
}

.color-is-highlight {
  --etfe-text-color: var(--etfe-color-highlight);
}

.bk-is-transparent {
  --etfe-bkrd-color: var(--etfe-color-transparent);
}

.color-is-transparent {
  --etfe-text-color: var(--etfe-color-transparent);
}

.bk-is-gray-lightest {
  --etfe-bkrd-color: var(--etfe-color-gray-lightest);
}

.color-is-gray-lightest {
  --etfe-text-color: var(--etfe-color-gray-lightest);
}

.bk-is-gray-lighter {
  --etfe-bkrd-color: var(--etfe-color-gray-lighter);
}

.color-is-gray-lighter {
  --etfe-text-color: var(--etfe-color-gray-lighter);
}

.bk-is-gray-light {
  --etfe-bkrd-color: var(--etfe-color-gray-light);
}

.color-is-gray-light {
  --etfe-text-color: var(--etfe-color-gray-light);
}

.bk-is-gray {
  --etfe-bkrd-color: var(--etfe-color-gray);
}

.color-is-gray {
  --etfe-text-color: var(--etfe-color-gray);
}

.bk-is-gray-dark {
  --etfe-bkrd-color: var(--etfe-color-gray-dark);
}

.color-is-gray-dark {
  --etfe-text-color: var(--etfe-color-gray-dark);
}

.bk-is-gray-darker {
  --etfe-bkrd-color: var(--etfe-color-gray-darker);
}

.color-is-gray-darker {
  --etfe-text-color: var(--etfe-color-gray-darker);
}

.bk-is-gray-darkest {
  --etfe-bkrd-color: var(--etfe-color-gray-darkest);
}

.color-is-gray-darkest {
  --etfe-text-color: var(--etfe-color-gray-darkest);
}

.bk-hover-is-primary:hover {
  background-color: var(--etfe-color-primary) !important;
}

.color-hover-is-primary:hover {
  color: var(--etfe-color-primary) !important;
}

.bk-hover-is-secondary:hover {
  background-color: var(--etfe-color-secondary) !important;
}

.color-hover-is-secondary:hover {
  color: var(--etfe-color-secondary) !important;
}

.bk-hover-is-tertiary:hover {
  background-color: var(--etfe-color-tertiary) !important;
}

.color-hover-is-tertiary:hover {
  color: var(--etfe-color-tertiary) !important;
}

.bk-hover-is-quaternary:hover {
  background-color: var(--etfe-color-quaternary) !important;
}

.color-hover-is-quaternary:hover {
  color: var(--etfe-color-quaternary) !important;
}

.bk-hover-is-gray:hover {
  background-color: var(--etfe-color-gray) !important;
}

.color-hover-is-gray:hover {
  color: var(--etfe-color-gray) !important;
}

.bk-hover-is-success:hover {
  background-color: var(--etfe-color-success) !important;
}

.color-hover-is-success:hover {
  color: var(--etfe-color-success) !important;
}

.bk-hover-is-alert:hover {
  background-color: var(--etfe-color-alert) !important;
}

.color-hover-is-alert:hover {
  color: var(--etfe-color-alert) !important;
}

.bk-hover-is-failure:hover {
  background-color: var(--etfe-color-failure) !important;
}

.color-hover-is-failure:hover {
  color: var(--etfe-color-failure) !important;
}

.bk-hover-is-info:hover {
  background-color: var(--etfe-color-info) !important;
}

.color-hover-is-info:hover {
  color: var(--etfe-color-info) !important;
}

.bk-hover-is-highlight:hover {
  background-color: var(--etfe-color-highlight) !important;
}

.color-hover-is-highlight:hover {
  color: var(--etfe-color-highlight) !important;
}

.bk-hover-is-transparent:hover {
  background-color: var(--etfe-color-transparent) !important;
}

.color-hover-is-transparent:hover {
  color: var(--etfe-color-transparent) !important;
}

.bk-hover-is-gray-lightest:hover {
  background-color: var(--etfe-color-gray-lightest) !important;
}

.color-hover-is-gray-lightest:hover {
  color: var(--etfe-color-gray-lightest) !important;
}

.bk-hover-is-gray-lighter:hover {
  background-color: var(--etfe-color-gray-lighter) !important;
}

.color-hover-is-gray-lighter:hover {
  color: var(--etfe-color-gray-lighter) !important;
}

.bk-hover-is-gray-light:hover {
  background-color: var(--etfe-color-gray-light) !important;
}

.color-hover-is-gray-light:hover {
  color: var(--etfe-color-gray-light) !important;
}

.bk-hover-is-gray:hover {
  background-color: var(--etfe-color-gray) !important;
}

.color-hover-is-gray:hover {
  color: var(--etfe-color-gray) !important;
}

.bk-hover-is-gray-dark:hover {
  background-color: var(--etfe-color-gray-dark) !important;
}

.color-hover-is-gray-dark:hover {
  color: var(--etfe-color-gray-dark) !important;
}

.bk-hover-is-gray-darker:hover {
  background-color: var(--etfe-color-gray-darker) !important;
}

.color-hover-is-gray-darker:hover {
  color: var(--etfe-color-gray-darker) !important;
}

.bk-hover-is-gray-darkest:hover {
  background-color: var(--etfe-color-gray-darkest) !important;
}

.color-hover-is-gray-darkest:hover {
  color: var(--etfe-color-gray-darkest) !important;
}

/**
   * Button
   */
button {
  margin: 0;
  font-family: inherit;
  text-transform: none;
  overflow: visible;
}

.button,
button,
[type=submit],
[type=reset],
[type=button] {
  appearance: button;
}

.button:not(.is-smaller, .is-small, .is-smallest),
button,
[type=submit],
[type=reset],
[type=button],
[type=file]::file-selector-button {
  --etfe-font-scale: 0.95;
  --etfe-button-text-color: var(--etfe-text-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: calc(1rem * var(--etfe-line-height) + var(--etfe-form-element-spacing-vertical) * 2 + var(--etfe-border-width) * 2);
  padding: var(--etfe-button-spacing-vertical, 0.5rem) var(--etfe-button-spacing-horizontal, 1rem);
  font-weight: 500;
  font-size: calc(var(--etfe-font-size) * var(--etfe-font-scale, 1));
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  text-wrap: balance;
  outline: none;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--etfe-transition), border-color var(--etfe-transition), color var(--etfe-transition), box-shadow var(--etfe-transition);
}
.button:not(.is-smaller, .is-small, .is-smallest):focus, .button:not(.is-smaller, .is-small, .is-smallest):is([aria-current]:not([aria-current=false])):focus,
button:focus,
button:is([aria-current]:not([aria-current=false])):focus,
[type=submit]:focus,
[type=submit]:is([aria-current]:not([aria-current=false])):focus,
[type=reset]:focus,
[type=reset]:is([aria-current]:not([aria-current=false])):focus,
[type=button]:focus,
[type=button]:is([aria-current]:not([aria-current=false])):focus,
[type=file]::file-selector-button:focus,
[type=file]::file-selector-button:is([aria-current]:not([aria-current=false])):focus {
  --etfe-box-shadow: var(--etfe-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--etfe-outline-width) var(--etfe-primary-focus);
}

:where(button, [type=submit], [type=reset], [type=button], [role=button])[disabled],
:where(fieldset[disabled]) :is(button, [type=submit], [type=button], [type=reset], [role=button]) {
  opacity: 0.5;
  pointer-events: none;
}

:where(.button, button, [type=submit], [type=reset], [type=button]) {
  --etfe-button-bkrd-color: var(--etfe-bkrd-color);
  --etfe-button-border-color: var(--etfe-color-gray-light);
  --etfe-button-text-color: var(--etfe-color-white);
  --etfe-button-hover-bkrd-color: var(--etfe-color-primary-dark);
  --etfe-button-hover-border-color: var(--etfe-color-primary-dark);
  --etfe-button-hover-text-color: var(--etfe-color-white);
  color: var(--etfe-button-text-color);
  background-color: var(--etfe-button-bkrd-color);
  box-shadow: var(--etfe-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--etfe-outline-width) var(--etfe-button-border-color);
}
:where(.button, button, [type=submit], [type=reset], [type=button]):is(:hover, :active, :focus) {
  color: var(--etfe-button-hover-text-color);
  text-decoration: none !important;
  background-color: var(--etfe-button-hover-bkrd-color);
  box-shadow: var(--etfe-box-shadow, 0 0 0 rgba(0, 0, 0, 0)), 0 0 0 var(--etfe-outline-width) var(--etfe-button-hover-border-color);
}

:is(.button, button, [type=submit], [type=reset], [type=button]).is-primary {
  --etfe-button-bkrd-color: var(--etfe-color-primary);
  --etfe-button-border-color: var(--etfe-color-primary);
  --etfe-button-text-color: var(--etfe-color-white);
  --etfe-button-hover-bkrd-color: var(--etfe-color-primary-dark);
  --etfe-button-hover-border-color: var(--etfe-color-primary-dark);
  --etfe-button-hover-text-color: var(--etfe-color-white);
}
:is(.button, button, [type=submit], [type=reset], [type=button]).is-secondary {
  --etfe-button-bkrd-color: var(--etfe-color-secondary);
  --etfe-button-border-color: var(--etfe-color-gray-light);
  --etfe-button-text-color: var(--etfe-color-black);
  --etfe-button-hover-bkrd-color: var(--etfe-color-gray-dark);
  --etfe-button-hover-border-color: var(--etfe-color-gray-dark);
  --etfe-button-hover-text-color: var(--etfe-color-white);
}
:is(.button, button, [type=submit], [type=reset], [type=button]).is-secondary-outline {
  --etfe-button-bkrd-color: var(--etfe-color-white);
  --etfe-button-border-color: var(--etfe-color-secondary);
  --etfe-button-text-color: var(--etfe-color-primary);
  --etfe-button-hover-bkrd-color: var(--etfe-color-gray-dark);
  --etfe-button-hover-border-color: var(--etfe-color-gray-dark);
  --etfe-button-hover-text-color: var(--etfe-color-white);
  border: var(--etfe-border-width) solid var(--etfe-color-secondary);
}
:is(.button, button, [type=submit], [type=reset], [type=button]).is-tertiary {
  --etfe-button-bkrd-color: var(--etfe-color-tertiary);
  --etfe-button-border-color: var(--etfe-color-tertiary);
  --etfe-button-text-color: var(--etfe-color-white);
  --etfe-button-hover-bkrd-color: var(--etfe-color-gray-dark);
  --etfe-button-hover-border-color: var(--etfe-color-gray-dark);
  --etfe-button-hover-text-color: var(--etfe-color-white);
}
.page-header--gallery {
  height: auto !important;
}
.page-header--gallery .project-carousel {
  --gallery-space: clamp(0.5rem, 1vw, 1rem);
  --slide-height: 30rem;
  position: relative;
  width: 100%;
  min-width: 0;
  padding: var(--gallery-space);
  opacity: 0;
}
.page-header--gallery .project-carousel.is-ready {
  opacity: 1;
}
.page-header--gallery .project-carousel__viewport {
  width: 100%;
  height: var(--slide-height);
  cursor: default;
  overflow: auto hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.page-header--gallery .project-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.page-header--gallery .project-carousel__viewport:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.page-header--gallery .project-carousel__track {
  display: flex;
  gap: var(--gallery-space);
  width: max-content;
  height: var(--slide-height);
}
.page-header--gallery .project-carousel__item {
  position: relative;
  flex: 0 0 auto;
  width: var(--item-width, calc(var(--image-ratio) * var(--slide-height)));
  height: var(--slide-height);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
.page-header--gallery .project-carousel__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--image-position, center center);
  pointer-events: none;
}
.page-header--gallery .project-carousel__item[data-fit=cover] img {
  object-fit: cover;
}
.page-header--gallery .project-carousel__link {
  display: block;
  width: 100%;
  height: 100%;
}
.page-header--gallery .project-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(2.75rem, 3.5vw, 3.25rem);
  min-height: 0;
  padding: 0;
  color: var(--etfe-color-secondary);
  letter-spacing: normal;
  text-transform: none;
  border: 0;
  background: color-mix(in srgb, var(--etfe-color-primary) 94%, transparent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.3s ease, background-color 0.3s ease;
  aspect-ratio: 1;
}
.page-header--gallery .project-carousel__arrow:hover, .page-header--gallery .project-carousel__arrow:focus-visible {
  color: var(--etfe-color-primary);
  background: var(--etfe-color-secondary);
}
.page-header--gallery .project-carousel__arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.page-header--gallery .project-carousel__arrow span[aria-hidden=true] {
  font-size: 1.5rem;
  line-height: 1;
}
.page-header--gallery .project-carousel__arrow--previous {
  left: calc(var(--gallery-space) + clamp(0.75rem, 2vw, 2rem));
}
.page-header--gallery .project-carousel__arrow--previous span[aria-hidden=true] {
  transform: rotate(180deg);
}
.page-header--gallery .project-carousel__arrow--next {
  right: calc(var(--gallery-space) + clamp(0.75rem, 2vw, 2rem));
}
.page-header--gallery .project-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: calc(var(--gallery-space) + 1rem);
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}
.page-header--gallery .project-carousel__dot {
  width: 0.65rem;
  height: 0.65rem;
  min-height: 0;
  padding: 0;
  letter-spacing: normal;
  text-transform: none;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: color-mix(in srgb, var(--etfe-color-primary) 35%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--etfe-color-primary) 28%, transparent);
  cursor: pointer;
}
.page-header--gallery .project-carousel__dot:hover, .page-header--gallery .project-carousel__dot:focus-visible, .page-header--gallery .project-carousel__dot.is-active {
  background: #ffffff;
}
.page-header--gallery .project-carousel__dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
@media (width < 1024px) {
  .page-header--gallery .project-carousel__item img {
    object-fit: cover;
  }
  .page-header--gallery .project-carousel__item[data-no-crop] img {
    object-fit: contain;
  }
}
@media (width >= 1024px) {
  .page-header--gallery .project-carousel__viewport {
    scroll-snap-type: none;
  }
  .page-header--gallery .project-carousel__item {
    scroll-snap-align: none;
  }
}
@media (width < 768px) {
  .page-header--gallery .project-carousel__dots {
    bottom: calc(var(--gallery-space) + 0.65rem);
    gap: 0.4rem;
  }
  .page-header--gallery .project-carousel__dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-carousel__viewport {
    scroll-behavior: auto;
  }
}
@media (width >= 768px) {
  .glightbox-container .gprev svg path,
  .glightbox-container .gnext svg path,
  .glightbox-container .gclose svg path {
    stroke: #ffffff;
    stroke-width: 32px;
    stroke-linejoin: round;
    paint-order: stroke fill;
  }
}
.slider--navigation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 900;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.slider--navigation.slider--navigation--static {
  display: none;
}
.slider--navigation .slider-nav-prev,
.slider--navigation .slider-nav-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--etfe-color-secondary, #666666);
  font-size: 1.5rem;
  line-height: 1;
  background: var(--etfe-color-gray-lighter);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}
.slider--navigation .slider-nav-prev:hover,
.slider--navigation .slider-nav-next:hover {
  color: #ffffff;
  background-color: var(--etfe-color-secondary);
}
.slider--navigation .slider-nav-prev {
  transform: rotate(180deg);
}
@media (width >= 768px) {
  .slider--navigation {
    left: -40px;
    width: calc(100% + 80px);
  }
}

.project--gallery .slider-nav-prev,
.project--gallery .slider-nav-next {
  color: var(--etfe-color-secondary, #666666);
  background: var(--etfe-color-gray-lighter);
}
.project--gallery .slider-nav-prev:hover,
.project--gallery .slider-nav-next:hover {
  color: #ffffff;
  background-color: var(--etfe-color-secondary);
}

.about--quotes .slider-nav-prev,
.about--quotes .slider-nav-next {
  color: var(--etfe-color-secondary, #666666);
  background: hsl(218, 64%, 29%);
}
.about--quotes .slider-nav-prev:hover,
.about--quotes .slider-nav-next:hover {
  color: #ffffff;
  background-color: var(--etfe-color-secondary);
}

.slick-dots {
  bottom: 0 !important;
}
.slick-dots li button::before {
  font-size: 20px;
}

/* stylelint-disable */
/**
* Table
   */
:where(table) {
  --etfe-table-background-color: var(--etfe-bkrd-color);
  --etfe-table-border-color: var(--etfe-border-color);
  width: 100%;
  text-indent: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

tr {
  background-color: var(--etfe-table-background-color);
}

th,
td {
  padding: var(--etfe-spacing) var(--etfe-spacing);
  font-weight: var(--etfe-font-weight);
  text-align: start;
  border-bottom: var(--etfe-border-width) solid var(--etfe-table-border-color);
  background-color: var(--etfe-table-background-color);
}

thead th {
  color: var(--etfe-color-white);
  font-weight: var(--etfe-font-weight-bold);
  border: var(--etfe-border-width) solid var(--etfe-table-border-color);
  background-color: var(--etfe-color-primary-dark);
}

tfoot th,
tfoot td {
  border-top: var(--etfe-border-width) solid var(--etfe-table-border-color);
  border-bottom: 0;
}

table.striped tbody tr:nth-child(odd) th,
table.striped tbody tr:nth-child(odd) td {
  background-color: var(--etfe-table-row-stripped-background-color);
}

@media (width < 768px) and (width < 768px) {
  table.table-responsive thead {
    display: none;
  }
}
@media (width < 768px) {
  table.table-responsive th,
  table.table-responsive td,
  table.table-responsive tr {
    border: 0;
  }
  table.table-responsive tr:not(.detail):not(.table-footer) {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-bottom: var(--etfe-block-spacing-vertical);
    border-radius: var(--etfe-border-radius);
    box-shadow: var(--etfe-box-shadow-secondary);
    overflow: hidden;
  }
  table.table-responsive tr:not(.detail):not(.table-footer) th {
    --etfe-font-size: var(--etfe-font-size-large);
    justify-content: center;
    text-align: center;
  }
  table.table-responsive tr:not(.detail):not(.table-footer) td {
    display: flex;
    justify-content: space-between;
    width: auto;
    text-align: right;
    border-bottom: transparent;
  }
  table.table-responsive tr:not(.detail):not(.table-footer) td::before {
    content: attr(data-label);
    padding-right: 0.5rem;
    font-weight: 600;
    text-align: left;
  }
}

/**
   * Embedded content
   */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

:where(iframe) {
  border-style: none;
}

img {
  height: auto;
  max-width: 100%;
  border-style: none;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

svg:not(:root),
svg:not(:host) {
  overflow: hidden;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

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

.text-is-smallest {
  --etfe-font-scale: 0.75;
}

.text-is-smaller {
  --etfe-font-scale: 0.85;
}

.text-is-small {
  --etfe-font-scale: 0.9;
}

.text-is-normal {
  --etfe-font-scale: 1;
}

.text-is-large {
  --etfe-font-scale: 1.1;
}

.text-is-larger {
  --etfe-font-scale: 1.5;
}

.text-is-largest {
  --etfe-font-scale: 2;
}

:root {
  --etfe-font-size-smallest: calc(var(--etfe-font-size) * 0.75);
  --etfe-font-size-smaller: calc(var(--etfe-font-size) * 0.85);
  --etfe-font-size-small: calc(var(--etfe-font-size) * 0.9);
  --etfe-font-size-normal: calc(var(--etfe-font-size) * 1);
  --etfe-font-size-large: calc(var(--etfe-font-size) * 1.1);
  --etfe-font-size-larger: calc(var(--etfe-font-size) * 1.5);
  --etfe-font-size-largest: calc(var(--etfe-font-size) * 2);
}

@media (width < 480px) {
  .text-center_xs {
    text-align: center;
  }
  .text-is-center_xs {
    text-align: center;
  }
  .text-left_xs {
    text-align: left;
  }
  .text-is-left_xs {
    text-align: left;
  }
  .text-right_xs {
    text-align: right;
  }
  .text-is-right_xs {
    text-align: right;
  }
  .text-is-smallest_xs {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_xs {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_xs {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_xs {
    --etfe-font-scale: 1;
  }
  .text-is-large_xs {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_xs {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_xs {
    --etfe-font-scale: 2;
  }
}
@media (width >= 640px) and (width < 768px) {
  .text-center_sm-only {
    text-align: center;
  }
  .text-is-center_sm-only {
    text-align: center;
  }
  .text-left_sm-only {
    text-align: left;
  }
  .text-is-left_sm-only {
    text-align: left;
  }
  .text-right_sm-only {
    text-align: right;
  }
  .text-is-right_sm-only {
    text-align: right;
  }
  .text-is-smallest_sm-only {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_sm-only {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_sm-only {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_sm-only {
    --etfe-font-scale: 1;
  }
  .text-is-large_sm-only {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_sm-only {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_sm-only {
    --etfe-font-scale: 2;
  }
}
@media (width >= 640px) {
  .text-center_sm {
    text-align: center;
  }
  .text-is-center_sm {
    text-align: center;
  }
  .text-left_sm {
    text-align: left;
  }
  .text-is-left_sm {
    text-align: left;
  }
  .text-right_sm {
    text-align: right;
  }
  .text-is-right_sm {
    text-align: right;
  }
  .text-is-smallest_sm {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_sm {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_sm {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_sm {
    --etfe-font-scale: 1;
  }
  .text-is-large_sm {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_sm {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_sm {
    --etfe-font-scale: 2;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .text-center_md-only {
    text-align: center;
  }
  .text-is-center_md-only {
    text-align: center;
  }
  .text-left_md-only {
    text-align: left;
  }
  .text-is-left_md-only {
    text-align: left;
  }
  .text-right_md-only {
    text-align: right;
  }
  .text-is-right_md-only {
    text-align: right;
  }
  .text-is-smallest_md-only {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_md-only {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_md-only {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_md-only {
    --etfe-font-scale: 1;
  }
  .text-is-large_md-only {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_md-only {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_md-only {
    --etfe-font-scale: 2;
  }
}
@media (width >= 768px) {
  .text-center_md {
    text-align: center;
  }
  .text-is-center_md {
    text-align: center;
  }
  .text-left_md {
    text-align: left;
  }
  .text-is-left_md {
    text-align: left;
  }
  .text-right_md {
    text-align: right;
  }
  .text-is-right_md {
    text-align: right;
  }
  .text-is-smallest_md {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_md {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_md {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_md {
    --etfe-font-scale: 1;
  }
  .text-is-large_md {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_md {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_md {
    --etfe-font-scale: 2;
  }
}
@media (width >= 1024px) and (width < 1280px) {
  .text-center_lg-only {
    text-align: center;
  }
  .text-is-center_lg-only {
    text-align: center;
  }
  .text-left_lg-only {
    text-align: left;
  }
  .text-is-left_lg-only {
    text-align: left;
  }
  .text-right_lg-only {
    text-align: right;
  }
  .text-is-right_lg-only {
    text-align: right;
  }
  .text-is-smallest_lg-only {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_lg-only {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_lg-only {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_lg-only {
    --etfe-font-scale: 1;
  }
  .text-is-large_lg-only {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_lg-only {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_lg-only {
    --etfe-font-scale: 2;
  }
}
@media (width >= 1024px) {
  .text-center_lg {
    text-align: center;
  }
  .text-is-center_lg {
    text-align: center;
  }
  .text-left_lg {
    text-align: left;
  }
  .text-is-left_lg {
    text-align: left;
  }
  .text-right_lg {
    text-align: right;
  }
  .text-is-right_lg {
    text-align: right;
  }
  .text-is-smallest_lg {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_lg {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_lg {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_lg {
    --etfe-font-scale: 1;
  }
  .text-is-large_lg {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_lg {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_lg {
    --etfe-font-scale: 2;
  }
}
@media (width >= 1280px) and (width < 1536px) {
  .text-center_xl-only {
    text-align: center;
  }
  .text-is-center_xl-only {
    text-align: center;
  }
  .text-left_xl-only {
    text-align: left;
  }
  .text-is-left_xl-only {
    text-align: left;
  }
  .text-right_xl-only {
    text-align: right;
  }
  .text-is-right_xl-only {
    text-align: right;
  }
  .text-is-smallest_xl-only {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_xl-only {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_xl-only {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_xl-only {
    --etfe-font-scale: 1;
  }
  .text-is-large_xl-only {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_xl-only {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_xl-only {
    --etfe-font-scale: 2;
  }
}
@media (width >= 1280px) {
  .text-center_xl {
    text-align: center;
  }
  .text-is-center_xl {
    text-align: center;
  }
  .text-left_xl {
    text-align: left;
  }
  .text-is-left_xl {
    text-align: left;
  }
  .text-right_xl {
    text-align: right;
  }
  .text-is-right_xl {
    text-align: right;
  }
  .text-is-smallest_xl {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_xl {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_xl {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_xl {
    --etfe-font-scale: 1;
  }
  .text-is-large_xl {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_xl {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_xl {
    --etfe-font-scale: 2;
  }
}
@media (width >= 1536px) {
  .text-center_xxl {
    text-align: center;
  }
  .text-is-center_xxl {
    text-align: center;
  }
  .text-left_xxl {
    text-align: left;
  }
  .text-is-left_xxl {
    text-align: left;
  }
  .text-right_xxl {
    text-align: right;
  }
  .text-is-right_xxl {
    text-align: right;
  }
  .text-is-smallest_xxl {
    --etfe-font-scale: 0.75;
  }
  .text-is-smaller_xxl {
    --etfe-font-scale: 0.85;
  }
  .text-is-small_xxl {
    --etfe-font-scale: 0.9;
  }
  .text-is-normal_xxl {
    --etfe-font-scale: 1;
  }
  .text-is-large_xxl {
    --etfe-font-scale: 1.1;
  }
  .text-is-larger_xxl {
    --etfe-font-scale: 1.5;
  }
  .text-is-largest_xxl {
    --etfe-font-scale: 2;
  }
}
.font-weight-lightest {
  --etfe-font-weight: var(--etfe-font-weight-lightest);
}

.font-weight-light {
  --etfe-font-weight: var(--etfe-font-weight-light);
}

.font-weight-normal {
  --etfe-font-weight: var(--etfe-font-weight-normal);
}

.font-weight-bold {
  --etfe-font-weight: var(--etfe-font-weight-bold);
}

.font-weight-boldest {
  --etfe-font-weight: var(--etfe-font-weight-boldest);
}

.font-heading {
  --etfe-font-family: var(--etfe-font-headings);
}

.font-body {
  --etfe-font-family: var(--etfe-font-body);
}

.font-serif {
  --etfe-font-family: var(--etfe-font-family-serif);
}

.font-sans-serif {
  --etfe-font-family: var(--etfe-font-family-sans-serif);
}

:where(p, h1, h2, h3, h4, h5, h6, li, dt, dd, time) {
  margin-top: 0;
  margin-bottom: var(--etfe-typography-spacing-vertical);
  padding-bottom: 0;
  color: var(--etfe-text-color);
  font-weight: var(--etfe-font-weight, 400);
  font-size: calc(var(--etfe-font-size) * var(--etfe-font-scale, 1));
  font-family: var(--etfe-font-family, var(--etfe-font-body));
  line-height: var(--etfe-line-height, 1.5);
  letter-spacing: var(--etfe-letter-spacing);
}
:where(p, h1, h2, h3, h4, h5, h6, li, dt, dd, time):last-child {
  margin-bottom: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  --etfe-font-family: var(--etfe-font-headings);
  --etfe-font-weight: var(--etfe-font-weight-boldest);
  --etfe-header-color: var(--etfe-text-color);
  color: var(--etfe-header-color);
}
:where(h1, h2, h3, h4, h5, h6) a {
  color: currentColor;
}

h1::after {
  content: none;
}

thead th,
thead td,
tfoot th,
tfoot td {
  --etfe-font-weight: 600;
  --etfe-border-width: 0.1875rem;
}

pre,
code,
kbd,
samp {
  --etfe-font-family: var(--etfe-font-family-monospace);
}

kbd {
  --etfe-font-weight: bolder;
}

b,
strong {
  --etfe-font-weight: var(--etfe-font-weight-boldest);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

address,
blockquote,
dl,
ol,
pre,
table,
ul {
  margin-top: 0;
  margin-bottom: var(--etfe-typography-spacing-vertical);
  color: inherit;
  font-weight: var(--etfe-font-weight-normal);
  font-style: normal;
}

h6 {
  --etfe-text-color: var(--etfe-color-secondary);
}

:where(article, address, blockquote, dl, figure, form, ol, p, pre, table, ul) ~ :is(h1, h2, h3, h4, h5, h6) {
  margin-top: var(--etfe-typography-spacing-top);
}

hgroup {
  margin-bottom: var(--etfe-typography-spacing-vertical);
}
hgroup > * {
  margin-top: 0;
  margin-bottom: 0;
}

:where(ol, ul) li {
  margin-bottom: calc(var(--etfe-typography-spacing-vertical) * 0.25);
}

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
  margin-top: calc(var(--etfe-typography-spacing-vertical) * 0.25);
}

mark {
  padding: 0.125rem 0.25rem;
  color: var(--etfe-mark-color);
  vertical-align: baseline;
  background-color: var(--etfe-mark-background-color);
}

blockquote {
  display: block;
  margin: var(--etfe-typography-spacing-vertical) 0;
  padding: var(--etfe-spacing);
  border-right: none;
  border-left: 0.25rem solid var(--etfe-blockquote-border-color);
  border-inline-start: 0.25rem solid var(--etfe-blockquote-border-color);
  border-inline-end: none;
}
blockquote footer {
  margin-top: calc(var(--etfe-typography-spacing-vertical) * 0.5);
  color: var(--etfe-blockquote-footer-color);
}

abbr[title] {
  text-decoration: none;
  border-bottom: 1px dotted;
  cursor: help;
}

h1 {
  --etfe-font-size: 2.5rem;
  --etfe-line-height: 1.125;
  --etfe-typography-spacing-top: 3rem;
}

h2 {
  --etfe-font-size: 2.25rem;
  --etfe-line-height: 1.15;
  --etfe-typography-spacing-top: 2.625rem;
}

h3 {
  --etfe-font-size: 1.65rem;
  --etfe-line-height: 1.175;
  --etfe-typography-spacing-top: 2.25rem;
}

h4 {
  --etfe-font-size: 1.35rem;
  --etfe-line-height: 1.2;
  --etfe-typography-spacing-top: 1.874rem;
}

h5 {
  --etfe-font-size: 1.25rem;
  --etfe-line-height: 1.225;
  --etfe-typography-spacing-top: 1.6875rem;
}

h6 {
  --etfe-font-size: 1rem;
  --etfe-line-height: 1.25;
  --etfe-typography-spacing-top: 1.5rem;
}

:root {
  --etfe-font-size-smallest: calc(var(--etfe-font-size) * 0.75);
  --etfe-font-size-smaller: calc(var(--etfe-font-size) * 0.85);
  --etfe-font-size-small: calc(var(--etfe-font-size) * 0.9);
  --etfe-font-size-normal: calc(var(--etfe-font-size) * 1);
  --etfe-font-size-large: calc(var(--etfe-font-size) * 1.1);
  --etfe-font-size-larger: calc(var(--etfe-font-size) * 1.5);
  --etfe-font-size-largest: calc(var(--etfe-font-size) * 2);
}

:where(a[role=button]) {
  display: inline-block;
}

:where(a) {
  --etfe-background-color: transparent;
  color: var(--etfe-text-color);
}

:where(a:not([role=button]):not([role=link])) {
  text-decoration: var(--etfe-text-decoration);
  outline: none;
  transition: background-color var(--etfe-transition), color var(--etfe-transition), text-decoration var(--etfe-transition), box-shadow var(--etfe-transition), -webkit-text-decoration var(--etfe-transition);
  text-decoration-color: currentcolor;
  text-underline-offset: 0.125rem;
}

:where([role=link]) {
  text-decoration: none;
  outline: none;
}

:where(a:not([role=button])):is(:hover, :active, :focus),
[role=link]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
  --etfe-nav-link-color: var(--etfe-primary-hover);
  --etfe-underline: currentcolor;
  --etfe-text-decoration: underline;
  text-decoration: underline;
}

:where(a:not([role=button])):focus-visible,
[role=link]:focus-visible {
  box-shadow: 0 0 0 var(--etfe-outline-width, 2px) var(--etfe-primary-focus, rgba(59, 130, 246, 0.5));
}

:where(a:not([role=button])).is-secondary,
[role=link].is-secondary {
  --etfe-nav-link-color: var(--etfe-secondary-color);
}

:where(a:not([role=button])).is-secondary:is([aria-current]:not([aria-current=false]), :hover, :active, :focus),
[role=link].is-secondary:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
  --etfe-nav-link-color: var(--etfe-secondary-hover);
}

:where(a:not([role=button])).contrast,
[role=link].contrast {
  --etfe-nav-link-color: var(--etfe-contrast);
}

:where(a:not([role=button])).contrast:is([aria-current]:not([aria-current=false]), :hover, :active, :focus),
[role=link].contrast:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
  --etfe-nav-link-color: var(--etfe-contrast-hover);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  white-space: nowrap !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

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

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

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

.font-is-italic {
  font-style: italic;
}

.font-is-oblique {
  font-style: oblique;
}

.font-is-normal {
  font-style: normal;
}

.font-is-monospace {
  --etfe-font-family: var(--etfe-font-family-monospace);
}

.font-is-serif {
  --etfe-font-family: var(--etfe-font-family-serif);
}

.font-is-sans-serif {
  --etfe-font-family: var(--etfe-font-family-sans-serif);
}

.font-is-headings {
  --etfe-font-family: var(--etfe-font-headings);
}

/* stylelint-disable */
:root {
  --bracket-size: $bracket-size;
  --bracket-border-width: $bracket-border-width;
  --bracket-color: var(--etfe-color-primary);
}

:has(.responsive-background) {
  position: relative;
}

.responsive-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.responsive-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

:is(.home, .single-projects, .page) #site-header {
  background-color: var(--etfe-color-primary);
}

.page-header {
  position: relative;
  display: flex !important;
  height: 65vh;
  overflow: hidden;
}
.page-header hgroup {
  position: relative;
  z-index: 999;
}
.page-header h1 {
  font-size: clamp(1.75rem, 9vw, 3.75rem);
  overflow-wrap: break-word; /* safety net for long single words */
  hyphens: auto;
}

:is(.page-header--transparent) {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 50vh;
}
:is(.page-header--transparent) .responsive-background {
  background: color-mix(in srgb, var(--etfe-color-primary-dark) 50%, transparent);
}
:is(.page-header--transparent) .responsive-background img {
  mix-blend-mode: multiply;
}

:is(.page-header--singular) {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 60vh;
}
:is(.page-header--singular) picture {
  width: 100%;
  height: 100%;
}
:is(.page-header--singular) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.header-slider,
.slant-slider {
  height: 65vh;
  min-height: 350px;
  margin-bottom: 0 !important;
}
@media (width < 768px) {
  .slant-container {
    width: 100%;
    max-width: none;
  }
}

.slant {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 7.5vw;
  background: color-mix(in srgb, var(--etfe-color-primary-dark) 50%, transparent);
  background-blend-mode: multiply;
}
.slant hgroup {
  transform: skewX(calc(-1 * var(--slant-angle)));
}
@media (width >= 768px) {
  .slant {
    --slant-angle: -20deg;
    max-width: 75ch;
    margin-left: -75px;
    padding: 75px;
    transform: skewX(var(--slant-angle));
  }
}

.archive #site-header {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  z-index: 99;
}

.header--nav {
  display: grid;
  grid-template-columns: min(200px, 50vw) 1fr;
  gap: 2rem;
  align-items: center;
}

#footer--main .container {
  display: flex;
  flex-flow: column wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
@media (width >= 768px) {
  #footer--main .container {
    flex-direction: row;
  }
}
#footer--main .footer--logo {
  width: min(200px, 50vw);
}
#footer--main .footer--logo img {
  max-width: 100%;
  margin: auto;
}
#footer--main .footer--address {
  order: 3;
  width: 100%;
  text-align: center;
}
@media (width >= 1024px) {
  #footer--main .footer--address {
    order: 2;
    width: auto;
  }
}
#footer--main .social-channels,
#footer--main .footer--social {
  display: flex;
  align-items: center;
}
#footer--main .footer--social {
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
@media (width >= 768px) {
  #footer--main .footer--social {
    flex-direction: row;
  }
}
@media (width >= 1024px) {
  #footer--main .footer--social {
    order: 3;
  }
}
#footer--main .button {
  text-decoration: none;
}

.social-channels {
  display: flex;
}

@media (width < 480px) {
  #site-header .social-channels {
    display: none;
    visibility: hidden;
  }
}

.social-channels a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  margin-inline: 0.25rem;
  color: var(--etfe-color-primary);
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: var(--etfe-color-white);
  aspect-ratio: 1/1;
}
.social-channels a:hover {
  color: var(--etfe-color-white);
  background-color: var(--etfe-color-secondary);
}
@media (width >= 768px) {
  .social-channels a {
    width: 2.5rem;
  }
}

section {
  position: relative;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.has-background-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.has-background-video .container {
  position: relative;
  z-index: 2;
}

.has-background-overlay .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.has-background-overlay .container {
  position: relative;
  z-index: 2;
}

.has-bracket {
  position: relative;
}
.has-bracket::before {
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  z-index: 9999;
  width: 40px;
  height: 40px;
  border: 0;
  border-top: 8px solid var(--bracket-color);
  border-left: 8px solid var(--bracket-color);
}

h4.has-bracket::before {
  top: -10px;
  left: -10px;
}

.bracket-primary {
  --bracket-color: var(--etfe-color-primary);
}

.bracket-secondary {
  --bracket-color: var(--etfe-color-secondary);
}

.bracket-on-hover::before {
  z-index: 100;
  opacity: 0;
  transform: translate(-10px, -10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bracket-on-hover:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}

:is(h1, h2, h3, h4, h5, h6).has-bracket::before {
  top: -15px;
  left: -20px;
}

:is(.image-frame-container, .image-frame-container-b) {
  position: relative;
  background-color: var(--etfe-color-secondary);
}
:is(.image-frame-container, .image-frame-container-b) .framed-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  margin-left: -20px;
}

.image-frame-container {
  margin-left: 20px;
  padding: 40px 30px 40px 0;
  /* Top-left L-bracket */
}
.image-frame-container::before {
  position: absolute;
  top: 45px;
  left: -15px;
  content: "";
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-top: 8px solid var(--bracket-color);
  border-left: 8px solid var(--bracket-color);
}
.image-frame-container {
  /* Bottom-right L-bracket */
}
.image-frame-container::after {
  position: absolute;
  bottom: 5px;
  right: 5px;
  content: "";
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-top: 8px solid var(--etfe-color-primary);
  border-left: 8px solid var(--etfe-color-primary);
  transform: rotate(180deg);
}
.image-frame-container .image-caption {
  position: absolute;
  width: 100%;
  padding: 6px 15px;
  color: white;
  text-align: left;
}

.image-frame-container-b {
  padding: 40px 0 0 40px;
  background-color: var(--etfe-color-secondary);
}
@media (width >= 768px) {
  .image-frame-container-b {
    margin-left: 20px;
  }
}

:is(.image-frame-container-c, .image-frame-container-d) {
  position: relative;
}
:is(.image-frame-container-c, .image-frame-container-d) .framed-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
:is(.image-frame-container-c, .image-frame-container-d)::after {
  position: absolute;
  content: "";
  z-index: 1;
  width: 85%;
  height: 85%;
  background-color: var(--etfe-color-secondary);
}

.image-frame-container-c::after {
  bottom: -20px;
  right: -20px;
}

.image-frame-container-d::after {
  top: -20px;
  left: -20px;
}

.has-background-pattern {
  --background-width: 50vw;
  position: relative;
}
.has-background-pattern::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  width: var(--background-width);
  height: 100%;
  /* background-color: red; */
  background-image: url("../images/SVG/1848-pattern.svg");
  background-repeat: repeat;
  background-size: 80px;
  opacity: 0.2;
  clip-path: polygon(30% 100%, 100% 100%, 100% 0%);
}
:is(.has-logo-background, .has-logo-background-alt) {
  background-image: url("../images/SVG/1848-pattern-yellow.svg");
  background-repeat: no-repeat;
  background-position: -10% 0;
  background-size: 350px;
}

.has-logo-background-alt {
  background-position: 5% 0;
  background-size: 350px;
}

.has-color-overlay {
  background-color: var(--etfe-color-primary);
}
.has-color-overlay img {
  mix-blend-mode: multiply;
  opacity: 0.25;
  filter: grayscale(100%);
}

.cover-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.home-services .services-grid {
  display: flex;
  flex-direction: column;
  gap: var(--etfe-block-spacing-vertical);
}
@media (width >= 1024px) {
  .home-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.home-services .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.05);
}
@media (width >= 768px) {
  .home-services .grid-item {
    flex-direction: row;
  }
}
@media (width >= 1024px) {
  .home-services .grid-item {
    flex-direction: column;
  }
}
.home-services .icon {
  width: 50%;
  max-width: 150px;
}
.home-started {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (width >= 768px) {
  .home-started--image img {
    max-height: 340px;
    object-fit: cover;
    object-position: 0 -70px;
  }
}

.gallery--item header {
  aspect-ratio: 11/10;
  position: relative;
}
.gallery--item .gallery--title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 16px;
  color: #ffffff;
  background: color-mix(in srgb, var(--etfe-color-primary-dark) 80%, transparent);
}

.get-started {
  display: flex;
  align-items: center;
}
.get-started .row {
  align-items: center;
}
.get-started .responsive-background {
  position: absolute;
  left: unset;
  bottom: 0;
  right: 0;
  z-index: 0;
  mix-blend-mode: hard-light;
  opacity: 0.4;
  filter: grayscale(1) invert(1);
}
.get-started .responsive-background img {
  object-fit: contain;
  object-position: bottom right;
}
.get-started .container {
  position: relative;
  z-index: 1;
}

.archive-filter a {
  position: relative;
  text-align: center;
}
.archive-filter a::after {
  position: absolute;
  left: 25%;
  bottom: 0;
  content: "";
  width: 50%;
  height: 2px;
}
.archive-filter a:hover {
  text-decoration: none;
}
.archive-filter a:hover::after {
  background-color: var(--etfe-color-primary);
}
.archive-filter a.current::after {
  background-color: var(--etfe-color-secondary);
}

.project--item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project--item .cover-link {
  background-color: var(--etfe-color-primary);
  mix-blend-mode: multiply;
  opacity: 0.75;
  transition: opacity 0.75s ease;
}
.project--item:hover .cover-link,
.project--item:hover .project--title {
  opacity: 0;
  transition: opacity 0.75s ease;
}

.related--title,
.project--title {
  position: relative;
  z-index: 500;
}

.project--text h1 {
  font-size: clamp(1.75rem, 1.375rem + 0.78125vw, 2rem);
}

.project--details {
  display: flex;
  justify-content: space-between;
}

.related--item {
  aspect-ratio: 5/4;
  padding: 1rem;
  background: color-mix(in srgb, var(--etfe-color-primary-dark) 50%, transparent);
}

.related--link {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid white;
}
.related--link svg {
  width: 1rem;
  height: auto;
  fill: white;
}

.about--quotes {
  background-image: url("../images/SVG/1848-quote.svg");
  background-position: 2rem 2rem;
  background-size: 250px;
}

.team-member-image img {
  height: 450px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top;
}

.slide-up-on-hover {
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.difference-grid h3 {
  min-height: 75px;
}

hgroup.hgroup-has-icon {
  display: flex;
  align-items: center;
}
hgroup.hgroup-has-icon img {
  max-width: 150px;
  margin-right: 1rem;
}
@media (width < 768px) {
  hgroup.hgroup-has-icon {
    flex-direction: column;
  }
}

.hgroup-text {
  width: 100%;
}

.full-width-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.nf-form-content {
  padding: 25px 0 0 !important;
}

.image-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}
.image-list p:empty {
  display: none;
  visibility: hidden;
}
.image-list img {
  order: 2;
  height: initial;
  object-fit: contain;
}
@media (width < 768px) {
  .image-list img {
    width: 100%;
  }
}
@media (width >= 768px) {
  .image-list {
    flex-direction: row;
  }
}

.image-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
}
.image-blocks .image-item {
  position: relative;
}
.image-blocks .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-blocks .image-text {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.project--section {
  width: 85vw;
  max-width: 1280px;
  margin-inline: auto;
  margin-top: 2rem;
}

:where(.has-icon) {
  padding-left: 0;
  font-style: normal;
}
:where(.has-icon)::after, :where(.has-icon)::before {
  display: inline-block;
  font-size: calc(var(--etfe-font-size) * var(--etfe-font-scale, 1) * 0.9);
  font-family: var(--etfe-font-family-icons);
  text-decoration: none;
  vertical-align: top;
}

:where(.icon) {
  content: var(--etfe-icon-current);
  font-family: var(--etfe-font-family-icons);
}

.has-icon:not(.icon-left) {
  padding-left: 0;
}
.has-icon:not(.icon-left)::after {
  content: var(--etfe-icon-current);
  padding-left: calc(var(--etfe-block-spacing-horizontal) * 0.25);
}

.icon-left::before {
  content: var(--etfe-icon-current);
  padding-right: calc(var(--etfe-block-spacing-horizontal) * 0.5);
}

.icon-clear {
  --etfe-icon-current: '';
}

.icon-external {
  --etfe-icon-current: '';
}

.icon-doc {
  --etfe-icon-current: '';
}

.icon-pdf {
  --etfe-icon-current: '';
}

.icon-download {
  --etfe-icon-current: '';
}

.icon-cal {
  --etfe-icon-current: '';
}

@supports (view-transition-name: none) {
  ::view-transition-group(*) {
    z-index: 1;
  }
  ::view-transition-group(filter-item-*) {
    z-index: 1;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
  }
  ::view-transition-old(filter-item-*) {
    opacity: 1;
    animation: fade-out 0.3s ease-out forwards;
  }
  ::view-transition-new(filter-item-*) {
    opacity: 0;
    animation: fade-in 0.3s ease-out forwards;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
[data-filter-container] {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

[data-filter-item] {
  position: relative;
  z-index: auto;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
[data-filter-item][hidden] {
  opacity: 0;
  transform: scale(0.95);
}

@media (prefers-reduced-motion: reduce) {
  [data-filter-item] {
    transition: none;
  }
  @supports (view-transition-name: none) {
    ::view-transition-group(*) {
      animation-duration: 0.1s;
    }
  }
  @keyframes fade-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body main {
  flex: 1;
}

footer {
  margin-top: auto;
}

:where(.container) {
  width: 85vw;
  margin-inline: auto;
}
:where(.container):not(.is-full-width) {
  max-width: 1280px;
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

.container-xxl {
  max-width: 1536px;
}

.is-full-width {
  width: 100%;
  max-width: none;
}
.is-full-width > .row:not(.is-full-width),
.is-full-width > .grid:not(.is-full-width) {
  margin-inline: auto;
  padding-inline: var(--etfe-block-spacing-vertical);
}
.is-full-width > .row:not(.is-full-width):not(.is-full-width),
.is-full-width > .grid:not(.is-full-width):not(.is-full-width) {
  max-width: 1280px;
}
@media (width >= 768px) {
  .is-full-width > .row:not(.is-full-width),
  .is-full-width > .grid:not(.is-full-width) {
    width: 85vw;
  }
}

.grid {
  display: grid;
  grid-gap: var(--etfe-grid-row-gap) var(--etfe-grid-column-gap);
  margin-bottom: var(--etfe-grid-row-gap);
}

.grid > * {
  min-width: 0;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  gap: var(--etfe-grid-row-gap) var(--etfe-grid-column-gap);
  max-width: 100%;
  margin-bottom: var(--etfe-block-spacing-vertical);
  box-sizing: border-box;
}
.row [class*=col-],
.row .col {
  min-width: 0;
  margin-bottom: var(--etfe-block-spacing-vertical);
  box-sizing: border-box;
}
@media (width < 768px) {
  .row [class*=col-]:last-of-type,
  .row .col:last-of-type {
    margin-bottom: 0;
  }
}
@media (width < 768px) {
  .row:last-of-type {
    margin-bottom: 0;
  }
}
@media (width >= 768px) {
  .row {
    flex-direction: row;
  }
}

.col-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  -ms-flex-preferred-size: 8.3333333333%;
}

.col-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  -ms-flex-preferred-size: 16.6666666667%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
  -ms-flex-preferred-size: 25%;
}

.col-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  -ms-flex-preferred-size: 33.3333333333%;
}

.col-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  -ms-flex-preferred-size: 41.6666666667%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
}

.col-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  -ms-flex-preferred-size: 58.3333333333%;
}

.col-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  -ms-flex-preferred-size: 66.6666666667%;
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
  -ms-flex-preferred-size: 75%;
}

.col-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  -ms-flex-preferred-size: 83.3333333333%;
}

.col-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  -ms-flex-preferred-size: 91.6666666667%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-50 {
  width: 50%;
}

.col-75 {
  width: 75%;
}

.col-100 {
  width: 100%;
}

.col-33 {
  width: 33%;
}

.col-66 {
  width: 66%;
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-11 {
  grid-template-columns: repeat(11, 1fr);
}

.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}

@media (width < 480px) {
  [class*=col-] {
    width: 100%;
  }
  [class*=grid-] {
    width: 100%;
  }
  .col-1_xs {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
  }
  .col-2_xs {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
  }
  .col-3_xs {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
  }
  .col-4_xs {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
  }
  .col-5_xs {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
  }
  .col-6_xs {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .col-7_xs {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
  }
  .col-8_xs {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
  }
  .col-9_xs {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
  }
  .col-10_xs {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
  }
  .col-11_xs {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
  }
  .col-12_xs {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .col-20_xs {
    width: 20%;
  }
  .col-25_xs {
    width: 25%;
  }
  .col-50_xs {
    width: 50%;
  }
  .col-75_xs {
    width: 75%;
  }
  .col-100_xs {
    width: 100%;
  }
  .col-33_xs {
    width: 33%;
  }
  .col-66_xs {
    width: 66%;
  }
  .grid-1_xs {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2_xs {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3_xs {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4_xs {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5_xs {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-6_xs {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-7_xs {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-8_xs {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-9_xs {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-10_xs {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-11_xs {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-12_xs {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (width >= 640px) {
  .col-1_sm {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
  }
  .col-2_sm {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
  }
  .col-3_sm {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
  }
  .col-4_sm {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
  }
  .col-5_sm {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
  }
  .col-6_sm {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .col-7_sm {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
  }
  .col-8_sm {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
  }
  .col-9_sm {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
  }
  .col-10_sm {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
  }
  .col-11_sm {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
  }
  .col-12_sm {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .col-20_sm {
    width: 20%;
  }
  .col-25_sm {
    width: 25%;
  }
  .col-50_sm {
    width: 50%;
  }
  .col-75_sm {
    width: 75%;
  }
  .col-100_sm {
    width: 100%;
  }
  .col-33_sm {
    width: 33%;
  }
  .col-66_sm {
    width: 66%;
  }
  .grid-1_sm {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2_sm {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3_sm {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4_sm {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5_sm {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-6_sm {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-7_sm {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-8_sm {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-9_sm {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-10_sm {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-11_sm {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-12_sm {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (width >= 768px) {
  .col-1_md {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
  }
  .col-2_md {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
  }
  .col-3_md {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
  }
  .col-4_md {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
  }
  .col-5_md {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
  }
  .col-6_md {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .col-7_md {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
  }
  .col-8_md {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
  }
  .col-9_md {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
  }
  .col-10_md {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
  }
  .col-11_md {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
  }
  .col-12_md {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .col-20_md {
    width: 20%;
  }
  .col-25_md {
    width: 25%;
  }
  .col-50_md {
    width: 50%;
  }
  .col-75_md {
    width: 75%;
  }
  .col-100_md {
    width: 100%;
  }
  .col-33_md {
    width: 33%;
  }
  .col-66_md {
    width: 66%;
  }
  .grid-1_md {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2_md {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3_md {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4_md {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5_md {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-6_md {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-7_md {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-8_md {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-9_md {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-10_md {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-11_md {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-12_md {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (width >= 1024px) {
  .col-1_lg {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
  }
  .col-2_lg {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
  }
  .col-3_lg {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
  }
  .col-4_lg {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
  }
  .col-5_lg {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
  }
  .col-6_lg {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .col-7_lg {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
  }
  .col-8_lg {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
  }
  .col-9_lg {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
  }
  .col-10_lg {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
  }
  .col-11_lg {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
  }
  .col-12_lg {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .col-20_lg {
    width: 20%;
  }
  .col-25_lg {
    width: 25%;
  }
  .col-50_lg {
    width: 50%;
  }
  .col-75_lg {
    width: 75%;
  }
  .col-100_lg {
    width: 100%;
  }
  .col-33_lg {
    width: 33%;
  }
  .col-66_lg {
    width: 66%;
  }
  .grid-1_lg {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2_lg {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3_lg {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4_lg {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5_lg {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-6_lg {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-7_lg {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-8_lg {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-9_lg {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-10_lg {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-11_lg {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-12_lg {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (width >= 1280px) {
  .col-1_xl {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
  }
  .col-2_xl {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
  }
  .col-3_xl {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
  }
  .col-4_xl {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
  }
  .col-5_xl {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
  }
  .col-6_xl {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .col-7_xl {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
  }
  .col-8_xl {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
  }
  .col-9_xl {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
  }
  .col-10_xl {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
  }
  .col-11_xl {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
  }
  .col-12_xl {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .col-20_xl {
    width: 20%;
  }
  .col-25_xl {
    width: 25%;
  }
  .col-50_xl {
    width: 50%;
  }
  .col-75_xl {
    width: 75%;
  }
  .col-100_xl {
    width: 100%;
  }
  .col-33_xl {
    width: 33%;
  }
  .col-66_xl {
    width: 66%;
  }
  .grid-1_xl {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2_xl {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3_xl {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4_xl {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5_xl {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-6_xl {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-7_xl {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-8_xl {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-9_xl {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-10_xl {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-11_xl {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-12_xl {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (width >= 1536px) {
  .col-1_xxl {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
  }
  .col-2_xxl {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
  }
  .col-3_xxl {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
  }
  .col-4_xxl {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
  }
  .col-5_xxl {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
  }
  .col-6_xxl {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .col-7_xxl {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
  }
  .col-8_xxl {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
  }
  .col-9_xxl {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
  }
  .col-10_xxl {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
  }
  .col-11_xxl {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
  }
  .col-12_xxl {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .col-20_xxl {
    width: 20%;
  }
  .col-25_xxl {
    width: 25%;
  }
  .col-50_xxl {
    width: 50%;
  }
  .col-75_xxl {
    width: 75%;
  }
  .col-100_xxl {
    width: 100%;
  }
  .col-33_xxl {
    width: 33%;
  }
  .col-66_xxl {
    width: 66%;
  }
  .grid-1_xxl {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2_xxl {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3_xxl {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4_xxl {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5_xxl {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-6_xxl {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-7_xxl {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-8_xxl {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid-9_xxl {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid-10_xxl {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-11_xxl {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid-12_xxl {
    grid-template-columns: repeat(12, 1fr);
  }
}
.gap-0 {
  gap: 0;
}

.gap-y-0 {
  row-gap: 0;
}

.gap-x-0 {
  column-gap: 0;
}

.has-shadow :is(h1, h2, h3, h4, h5, h6, p, span, a) {
  text-shadow: var(--etfe-text-shadow);
}
.has-shadow :not(:is(h1, h2, h3, h4, h5, h6, p, span, a)) {
  box-shadow: var(--etfe-box-shadow);
}

.has-shadow-secondary :is(h1, h2, h3, h4, h5, h6, p, span, a) {
  text-shadow: var(--etfe-text-shadow-secondary);
}
.has-shadow-secondary :not(:is(h1, h2, h3, h4, h5, h6, p, span, a)) {
  box-shadow: var(--etfe-box-shadow-secondary);
}

.has-shadow-tertiary :is(h1, h2, h3, h4, h5, h6, p, span, a) {
  text-shadow: var(--etfe-text-shadow-tertiary);
}
.has-shadow-tertiary :not(:is(h1, h2, h3, h4, h5, h6, p, span, a)) {
  box-shadow: var(--etfe-box-shadow-tertiary);
}

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

.is-full-height {
  height: 100%;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-justify-evenly {
  justify-content: space-evenly;
}

.flex-items-start {
  align-items: flex-start;
}

.flex-items-center {
  align-items: center;
}

.flex-items-end {
  align-items: flex-end;
}

.flex-items-stretch {
  align-items: stretch;
}

.flex-items-baseline {
  align-items: baseline;
}

.flex-content-start {
  align-content: flex-start;
}

.flex-content-center {
  align-content: center;
}

.flex-content-end {
  align-content: flex-end;
}

.flex-content-between {
  align-content: space-between;
}

.flex-content-around {
  align-content: space-around;
}

.flex-content-evenly {
  align-content: space-evenly;
}

.flex-content-stretch {
  align-content: stretch;
}

.flex-content-baseline {
  align-content: baseline;
}

.flex-self-auto {
  align-self: auto;
}

.flex-self-start {
  align-self: flex-start;
}

.flex-self-center {
  align-self: center;
}

.flex-self-end {
  align-self: flex-end;
}

.flex-self-stretch {
  align-self: stretch;
}

.flex-self-baseline {
  align-self: baseline;
}

.flex-0 {
  flex: 0;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.flex-5 {
  flex: 5;
}

.flex-6 {
  flex: 6;
}

.flex-7 {
  flex: 7;
}

.flex-8 {
  flex: 8;
}

.flex-9 {
  flex: 9;
}

.flex-10 {
  flex: 10;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.m-half {
  margin: 0.5rem !important;
}

.mt-half {
  margin-top: 0.5rem !important;
}

.mr-half {
  margin-right: 0.5rem !important;
}

.mb-half {
  margin-bottom: 0.5rem !important;
}

.ml-half {
  margin-left: 0.5rem !important;
}

.mx-half {
  margin-inline: 0.5rem !important;
}

.my-half {
  margin-block: 0.5rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mx-0 {
  margin-inline: 0rem !important;
}

.my-0 {
  margin-block: 0rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.mx-1 {
  margin-inline: 1rem !important;
}

.my-1 {
  margin-block: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.mx-2 {
  margin-inline: 2rem !important;
}

.my-2 {
  margin-block: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.mx-3 {
  margin-inline: 3rem !important;
}

.my-3 {
  margin-block: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.mx-4 {
  margin-inline: 4rem !important;
}

.my-4 {
  margin-block: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.mx-5 {
  margin-inline: 5rem !important;
}

.my-5 {
  margin-block: 5rem !important;
}

.m-6 {
  margin: 6rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mr-6 {
  margin-right: 6rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.ml-6 {
  margin-left: 6rem !important;
}

.mx-6 {
  margin-inline: 6rem !important;
}

.my-6 {
  margin-block: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mr-7 {
  margin-right: 7rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.ml-7 {
  margin-left: 7rem !important;
}

.mx-7 {
  margin-inline: 7rem !important;
}

.my-7 {
  margin-block: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mr-8 {
  margin-right: 8rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.ml-8 {
  margin-left: 8rem !important;
}

.mx-8 {
  margin-inline: 8rem !important;
}

.my-8 {
  margin-block: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mr-9 {
  margin-right: 9rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.ml-9 {
  margin-left: 9rem !important;
}

.mx-9 {
  margin-inline: 9rem !important;
}

.my-9 {
  margin-block: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.mr-10 {
  margin-right: 10rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.ml-10 {
  margin-left: 10rem !important;
}

.mx-10 {
  margin-inline: 10rem !important;
}

.my-10 {
  margin-block: 10rem !important;
}

.p-half {
  padding: 0.5rem !important;
}

.pt-half {
  padding-top: 0.5rem !important;
}

.pr-half {
  padding-right: 0.5rem !important;
}

.pb-half {
  padding-bottom: 0.5rem !important;
}

.pl-half {
  padding-left: 0.5rem !important;
}

.px-half {
  padding-inline: 0.5rem !important;
}

.py-half {
  padding-block: 0.5rem !important;
}

.p-0 {
  padding: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.px-0 {
  padding-inline: 0rem !important;
}

.py-0 {
  padding-block: 0rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.px-1 {
  padding-inline: 1rem !important;
}

.py-1 {
  padding-block: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.px-2 {
  padding-inline: 2rem !important;
}

.py-2 {
  padding-block: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.px-3 {
  padding-inline: 3rem !important;
}

.py-3 {
  padding-block: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.px-4 {
  padding-inline: 4rem !important;
}

.py-4 {
  padding-block: 4rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pr-5 {
  padding-right: 5rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.px-5 {
  padding-inline: 5rem !important;
}

.py-5 {
  padding-block: 5rem !important;
}

.p-6 {
  padding: 6rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pr-6 {
  padding-right: 6rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pl-6 {
  padding-left: 6rem !important;
}

.px-6 {
  padding-inline: 6rem !important;
}

.py-6 {
  padding-block: 6rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pr-7 {
  padding-right: 7rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pl-7 {
  padding-left: 7rem !important;
}

.px-7 {
  padding-inline: 7rem !important;
}

.py-7 {
  padding-block: 7rem !important;
}

.p-8 {
  padding: 8rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pr-8 {
  padding-right: 8rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pl-8 {
  padding-left: 8rem !important;
}

.px-8 {
  padding-inline: 8rem !important;
}

.py-8 {
  padding-block: 8rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pr-9 {
  padding-right: 9rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pl-9 {
  padding-left: 9rem !important;
}

.px-9 {
  padding-inline: 9rem !important;
}

.py-9 {
  padding-block: 9rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pr-10 {
  padding-right: 10rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pl-10 {
  padding-left: 10rem !important;
}

.px-10 {
  padding-inline: 10rem !important;
}

.py-10 {
  padding-block: 10rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-inline: auto !important;
}

.my-auto {
  margin-block: auto !important;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

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

.border-all {
  border: 1px solid var(--etfe-border-color);
}

.border-none {
  border: 0;
}

.border-top {
  border-top: 1px solid var(--etfe-border-color);
}

.border-right {
  border-right: 1px solid var(--etfe-border-color);
}

.border-bottom {
  border-bottom: 1px solid var(--etfe-border-color);
}

.border-left {
  border-left: 1px solid var(--etfe-border-color);
}

.gap-0 {
  gap: 0;
}

.gap-y-0 {
  row-gap: 0;
}

.gap-x-0 {
  column-gap: 0;
}

.gap-1 {
  gap: calc(var(--etfe-grid-row-gap) * 1);
}

.gap-y-1 {
  row-gap: calc(var(--etfe-grid-row-gap) * 1);
}

.gap-x-1 {
  column-gap: calc(var(--etfe-grid-column-gap) * 1);
}

.gap-2 {
  gap: calc(var(--etfe-grid-row-gap) * 2);
}

.gap-y-2 {
  row-gap: calc(var(--etfe-grid-row-gap) * 2);
}

.gap-x-2 {
  column-gap: calc(var(--etfe-grid-column-gap) * 2);
}

.gap-3 {
  gap: calc(var(--etfe-grid-row-gap) * 3);
}

.gap-y-3 {
  row-gap: calc(var(--etfe-grid-row-gap) * 3);
}

.gap-x-3 {
  column-gap: calc(var(--etfe-grid-column-gap) * 3);
}

.gap-4 {
  gap: calc(var(--etfe-grid-row-gap) * 4);
}

.gap-y-4 {
  row-gap: calc(var(--etfe-grid-row-gap) * 4);
}

.gap-x-4 {
  column-gap: calc(var(--etfe-grid-column-gap) * 4);
}

.gap-5 {
  gap: calc(var(--etfe-grid-row-gap) * 5);
}

.gap-y-5 {
  row-gap: calc(var(--etfe-grid-row-gap) * 5);
}

.gap-x-5 {
  column-gap: calc(var(--etfe-grid-column-gap) * 5);
}

.aspect-landscape {
  aspect-ratio: 1.7777777778;
  object-fit: cover;
}

.aspect-landscape-cover {
  aspect-ratio: 1.7777777778;
  object-fit: cover;
}

.aspect-landscape-contain {
  aspect-ratio: 1.7777777778;
  object-fit: contain;
}

.aspect-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-square-cover {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-square-contain {
  aspect-ratio: 1;
  object-fit: contain;
}

.aspect-portrait {
  aspect-ratio: 0.5625;
  object-fit: cover;
}

.aspect-portrait-cover {
  aspect-ratio: 0.5625;
  object-fit: cover;
}

.aspect-portrait-contain {
  aspect-ratio: 0.5625;
  object-fit: contain;
}

@media (width < 480px) {
  .flex_xs {
    display: flex;
  }
  .block_xs {
    display: block;
  }
  .inline-block_xs {
    display: inline-block;
  }
  .inline_xs {
    display: inline;
  }
  .flex-row_xs {
    flex-direction: row;
  }
  .flex-row-reverse_xs {
    flex-direction: row-reverse;
  }
  .flex-col_xs {
    flex-direction: column;
  }
  .flex-col-reverse_xs {
    flex-direction: column-reverse;
  }
  .flex-nowrap_xs {
    flex-wrap: nowrap;
  }
  .flex-wrap_xs {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_xs {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_xs {
    justify-content: flex-start;
  }
  .flex-justify-end_xs {
    justify-content: flex-end;
  }
  .flex-justify-center_xs {
    justify-content: center;
  }
  .flex-justify-between_xs {
    justify-content: space-between;
  }
  .flex-justify-around_xs {
    justify-content: space-around;
  }
  .flex-justify-evenly_xs {
    justify-content: space-evenly;
  }
  .flex-items-start_xs {
    align-items: flex-start;
  }
  .flex-items-center_xs {
    align-items: center;
  }
  .flex-items-end_xs {
    align-items: flex-end;
  }
  .flex-items-stretch_xs {
    align-items: stretch;
  }
  .flex-items-baseline_xs {
    align-items: baseline;
  }
  .flex-content-start_xs {
    align-content: flex-start;
  }
  .flex-content-center_xs {
    align-content: center;
  }
  .flex-content-end_xs {
    align-content: flex-end;
  }
  .flex-content-between_xs {
    align-content: space-between;
  }
  .flex-content-around_xs {
    align-content: space-around;
  }
  .flex-content-evenly_xs {
    align-content: space-evenly;
  }
  .flex-content-stretch_xs {
    align-content: stretch;
  }
  .flex-content-baseline_xs {
    align-content: baseline;
  }
  .flex-self-auto_xs {
    align-self: auto;
  }
  .flex-self-start_xs {
    align-self: flex-start;
  }
  .flex-self-center_xs {
    align-self: center;
  }
  .flex-self-end_xs {
    align-self: flex-end;
  }
  .flex-self-stretch_xs {
    align-self: stretch;
  }
  .flex-self-baseline_xs {
    align-self: baseline;
  }
  .flex-0_xs {
    flex: 0;
  }
  .flex-1_xs {
    flex: 1;
  }
  .flex-2_xs {
    flex: 2;
  }
  .flex-3_xs {
    flex: 3;
  }
  .flex-4_xs {
    flex: 4;
  }
  .flex-5_xs {
    flex: 5;
  }
  .flex-6_xs {
    flex: 6;
  }
  .flex-7_xs {
    flex: 7;
  }
  .flex-8_xs {
    flex: 8;
  }
  .flex-9_xs {
    flex: 9;
  }
  .flex-10_xs {
    flex: 10;
  }
  .order-0_xs {
    order: 0;
  }
  .order-1_xs {
    order: 1;
  }
  .order-2_xs {
    order: 2;
  }
  .order-3_xs {
    order: 3;
  }
  .order-4_xs {
    order: 4;
  }
  .order-5_xs {
    order: 5;
  }
  .order-6_xs {
    order: 6;
  }
  .order-7_xs {
    order: 7;
  }
  .order-8_xs {
    order: 8;
  }
  .order-9_xs {
    order: 9;
  }
  .order-10_xs {
    order: 10;
  }
  .m-half_xs {
    margin: 0.5rem !important;
  }
  .mt-half_xs {
    margin-top: 0.5rem !important;
  }
  .mr-half_xs {
    margin-right: 0.5rem !important;
  }
  .mb-half_xs {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_xs {
    margin-left: 0.5rem !important;
  }
  .mx-half_xs {
    margin-inline: 0.5rem !important;
  }
  .my-half_xs {
    margin-block: 0.5rem !important;
  }
  .m-0_xs {
    margin: 0rem !important;
  }
  .mt-0_xs {
    margin-top: 0rem !important;
  }
  .mr-0_xs {
    margin-right: 0rem !important;
  }
  .mb-0_xs {
    margin-bottom: 0rem !important;
  }
  .ml-0_xs {
    margin-left: 0rem !important;
  }
  .mx-0_xs {
    margin-inline: 0rem !important;
  }
  .my-0_xs {
    margin-block: 0rem !important;
  }
  .m-1_xs {
    margin: 1rem !important;
  }
  .mt-1_xs {
    margin-top: 1rem !important;
  }
  .mr-1_xs {
    margin-right: 1rem !important;
  }
  .mb-1_xs {
    margin-bottom: 1rem !important;
  }
  .ml-1_xs {
    margin-left: 1rem !important;
  }
  .mx-1_xs {
    margin-inline: 1rem !important;
  }
  .my-1_xs {
    margin-block: 1rem !important;
  }
  .m-2_xs {
    margin: 2rem !important;
  }
  .mt-2_xs {
    margin-top: 2rem !important;
  }
  .mr-2_xs {
    margin-right: 2rem !important;
  }
  .mb-2_xs {
    margin-bottom: 2rem !important;
  }
  .ml-2_xs {
    margin-left: 2rem !important;
  }
  .mx-2_xs {
    margin-inline: 2rem !important;
  }
  .my-2_xs {
    margin-block: 2rem !important;
  }
  .m-3_xs {
    margin: 3rem !important;
  }
  .mt-3_xs {
    margin-top: 3rem !important;
  }
  .mr-3_xs {
    margin-right: 3rem !important;
  }
  .mb-3_xs {
    margin-bottom: 3rem !important;
  }
  .ml-3_xs {
    margin-left: 3rem !important;
  }
  .mx-3_xs {
    margin-inline: 3rem !important;
  }
  .my-3_xs {
    margin-block: 3rem !important;
  }
  .m-4_xs {
    margin: 4rem !important;
  }
  .mt-4_xs {
    margin-top: 4rem !important;
  }
  .mr-4_xs {
    margin-right: 4rem !important;
  }
  .mb-4_xs {
    margin-bottom: 4rem !important;
  }
  .ml-4_xs {
    margin-left: 4rem !important;
  }
  .mx-4_xs {
    margin-inline: 4rem !important;
  }
  .my-4_xs {
    margin-block: 4rem !important;
  }
  .m-5_xs {
    margin: 5rem !important;
  }
  .mt-5_xs {
    margin-top: 5rem !important;
  }
  .mr-5_xs {
    margin-right: 5rem !important;
  }
  .mb-5_xs {
    margin-bottom: 5rem !important;
  }
  .ml-5_xs {
    margin-left: 5rem !important;
  }
  .mx-5_xs {
    margin-inline: 5rem !important;
  }
  .my-5_xs {
    margin-block: 5rem !important;
  }
  .m-6_xs {
    margin: 6rem !important;
  }
  .mt-6_xs {
    margin-top: 6rem !important;
  }
  .mr-6_xs {
    margin-right: 6rem !important;
  }
  .mb-6_xs {
    margin-bottom: 6rem !important;
  }
  .ml-6_xs {
    margin-left: 6rem !important;
  }
  .mx-6_xs {
    margin-inline: 6rem !important;
  }
  .my-6_xs {
    margin-block: 6rem !important;
  }
  .m-7_xs {
    margin: 7rem !important;
  }
  .mt-7_xs {
    margin-top: 7rem !important;
  }
  .mr-7_xs {
    margin-right: 7rem !important;
  }
  .mb-7_xs {
    margin-bottom: 7rem !important;
  }
  .ml-7_xs {
    margin-left: 7rem !important;
  }
  .mx-7_xs {
    margin-inline: 7rem !important;
  }
  .my-7_xs {
    margin-block: 7rem !important;
  }
  .m-8_xs {
    margin: 8rem !important;
  }
  .mt-8_xs {
    margin-top: 8rem !important;
  }
  .mr-8_xs {
    margin-right: 8rem !important;
  }
  .mb-8_xs {
    margin-bottom: 8rem !important;
  }
  .ml-8_xs {
    margin-left: 8rem !important;
  }
  .mx-8_xs {
    margin-inline: 8rem !important;
  }
  .my-8_xs {
    margin-block: 8rem !important;
  }
  .m-9_xs {
    margin: 9rem !important;
  }
  .mt-9_xs {
    margin-top: 9rem !important;
  }
  .mr-9_xs {
    margin-right: 9rem !important;
  }
  .mb-9_xs {
    margin-bottom: 9rem !important;
  }
  .ml-9_xs {
    margin-left: 9rem !important;
  }
  .mx-9_xs {
    margin-inline: 9rem !important;
  }
  .my-9_xs {
    margin-block: 9rem !important;
  }
  .m-10_xs {
    margin: 10rem !important;
  }
  .mt-10_xs {
    margin-top: 10rem !important;
  }
  .mr-10_xs {
    margin-right: 10rem !important;
  }
  .mb-10_xs {
    margin-bottom: 10rem !important;
  }
  .ml-10_xs {
    margin-left: 10rem !important;
  }
  .mx-10_xs {
    margin-inline: 10rem !important;
  }
  .my-10_xs {
    margin-block: 10rem !important;
  }
  .p-half_xs {
    padding: 0.5rem !important;
  }
  .pt-half_xs {
    padding-top: 0.5rem !important;
  }
  .pr-half_xs {
    padding-right: 0.5rem !important;
  }
  .pb-half_xs {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_xs {
    padding-left: 0.5rem !important;
  }
  .px-half_xs {
    padding-inline: 0.5rem !important;
  }
  .py-half_xs {
    padding-block: 0.5rem !important;
  }
  .p-0_xs {
    padding: 0rem !important;
  }
  .pt-0_xs {
    padding-top: 0rem !important;
  }
  .pr-0_xs {
    padding-right: 0rem !important;
  }
  .pb-0_xs {
    padding-bottom: 0rem !important;
  }
  .pl-0_xs {
    padding-left: 0rem !important;
  }
  .px-0_xs {
    padding-inline: 0rem !important;
  }
  .py-0_xs {
    padding-block: 0rem !important;
  }
  .p-1_xs {
    padding: 1rem !important;
  }
  .pt-1_xs {
    padding-top: 1rem !important;
  }
  .pr-1_xs {
    padding-right: 1rem !important;
  }
  .pb-1_xs {
    padding-bottom: 1rem !important;
  }
  .pl-1_xs {
    padding-left: 1rem !important;
  }
  .px-1_xs {
    padding-inline: 1rem !important;
  }
  .py-1_xs {
    padding-block: 1rem !important;
  }
  .p-2_xs {
    padding: 2rem !important;
  }
  .pt-2_xs {
    padding-top: 2rem !important;
  }
  .pr-2_xs {
    padding-right: 2rem !important;
  }
  .pb-2_xs {
    padding-bottom: 2rem !important;
  }
  .pl-2_xs {
    padding-left: 2rem !important;
  }
  .px-2_xs {
    padding-inline: 2rem !important;
  }
  .py-2_xs {
    padding-block: 2rem !important;
  }
  .p-3_xs {
    padding: 3rem !important;
  }
  .pt-3_xs {
    padding-top: 3rem !important;
  }
  .pr-3_xs {
    padding-right: 3rem !important;
  }
  .pb-3_xs {
    padding-bottom: 3rem !important;
  }
  .pl-3_xs {
    padding-left: 3rem !important;
  }
  .px-3_xs {
    padding-inline: 3rem !important;
  }
  .py-3_xs {
    padding-block: 3rem !important;
  }
  .p-4_xs {
    padding: 4rem !important;
  }
  .pt-4_xs {
    padding-top: 4rem !important;
  }
  .pr-4_xs {
    padding-right: 4rem !important;
  }
  .pb-4_xs {
    padding-bottom: 4rem !important;
  }
  .pl-4_xs {
    padding-left: 4rem !important;
  }
  .px-4_xs {
    padding-inline: 4rem !important;
  }
  .py-4_xs {
    padding-block: 4rem !important;
  }
  .p-5_xs {
    padding: 5rem !important;
  }
  .pt-5_xs {
    padding-top: 5rem !important;
  }
  .pr-5_xs {
    padding-right: 5rem !important;
  }
  .pb-5_xs {
    padding-bottom: 5rem !important;
  }
  .pl-5_xs {
    padding-left: 5rem !important;
  }
  .px-5_xs {
    padding-inline: 5rem !important;
  }
  .py-5_xs {
    padding-block: 5rem !important;
  }
  .p-6_xs {
    padding: 6rem !important;
  }
  .pt-6_xs {
    padding-top: 6rem !important;
  }
  .pr-6_xs {
    padding-right: 6rem !important;
  }
  .pb-6_xs {
    padding-bottom: 6rem !important;
  }
  .pl-6_xs {
    padding-left: 6rem !important;
  }
  .px-6_xs {
    padding-inline: 6rem !important;
  }
  .py-6_xs {
    padding-block: 6rem !important;
  }
  .p-7_xs {
    padding: 7rem !important;
  }
  .pt-7_xs {
    padding-top: 7rem !important;
  }
  .pr-7_xs {
    padding-right: 7rem !important;
  }
  .pb-7_xs {
    padding-bottom: 7rem !important;
  }
  .pl-7_xs {
    padding-left: 7rem !important;
  }
  .px-7_xs {
    padding-inline: 7rem !important;
  }
  .py-7_xs {
    padding-block: 7rem !important;
  }
  .p-8_xs {
    padding: 8rem !important;
  }
  .pt-8_xs {
    padding-top: 8rem !important;
  }
  .pr-8_xs {
    padding-right: 8rem !important;
  }
  .pb-8_xs {
    padding-bottom: 8rem !important;
  }
  .pl-8_xs {
    padding-left: 8rem !important;
  }
  .px-8_xs {
    padding-inline: 8rem !important;
  }
  .py-8_xs {
    padding-block: 8rem !important;
  }
  .p-9_xs {
    padding: 9rem !important;
  }
  .pt-9_xs {
    padding-top: 9rem !important;
  }
  .pr-9_xs {
    padding-right: 9rem !important;
  }
  .pb-9_xs {
    padding-bottom: 9rem !important;
  }
  .pl-9_xs {
    padding-left: 9rem !important;
  }
  .px-9_xs {
    padding-inline: 9rem !important;
  }
  .py-9_xs {
    padding-block: 9rem !important;
  }
  .p-10_xs {
    padding: 10rem !important;
  }
  .pt-10_xs {
    padding-top: 10rem !important;
  }
  .pr-10_xs {
    padding-right: 10rem !important;
  }
  .pb-10_xs {
    padding-bottom: 10rem !important;
  }
  .pl-10_xs {
    padding-left: 10rem !important;
  }
  .px-10_xs {
    padding-inline: 10rem !important;
  }
  .py-10_xs {
    padding-block: 10rem !important;
  }
  .m-auto_xs {
    margin: auto !important;
  }
  .mt-auto_xs {
    margin-top: auto !important;
  }
  .mr-auto_xs {
    margin-right: auto !important;
  }
  .mb-auto_xs {
    margin-bottom: auto !important;
  }
  .ml-auto_xs {
    margin-left: auto !important;
  }
  .mx-auto_xs {
    margin-inline: auto !important;
  }
  .my-auto_xs {
    margin-block: auto !important;
  }
  .float-right_xs {
    float: right;
  }
  .float-left_xs {
    float: left;
  }
  .hide_xs,
  .is-hidden_xs {
    display: none !important;
    visibility: hidden;
  }
  .border-all_xs {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_xs {
    border: 0;
  }
  .border-top_xs {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_xs {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_xs {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_xs {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_xs {
    gap: 0;
  }
  .gap-y-0_xs {
    row-gap: 0;
  }
  .gap-x-0_xs {
    column-gap: 0;
  }
  .gap-1_xs {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_xs {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_xs {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_xs {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_xs {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_xs {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_xs {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_xs {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_xs {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_xs {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_xs {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_xs {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_xs {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_xs {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_xs {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_xs {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_xs {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_xs {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_xs {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_xs {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_xs {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_xs {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_xs {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_xs {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 640px) and (width < 768px) {
  .flex_sm-only {
    display: flex;
  }
  .block_sm-only {
    display: block;
  }
  .inline-block_sm-only {
    display: inline-block;
  }
  .inline_sm-only {
    display: inline;
  }
  .flex-row_sm-only {
    flex-direction: row;
  }
  .flex-row-reverse_sm-only {
    flex-direction: row-reverse;
  }
  .flex-col_sm-only {
    flex-direction: column;
  }
  .flex-col-reverse_sm-only {
    flex-direction: column-reverse;
  }
  .flex-nowrap_sm-only {
    flex-wrap: nowrap;
  }
  .flex-wrap_sm-only {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_sm-only {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_sm-only {
    justify-content: flex-start;
  }
  .flex-justify-end_sm-only {
    justify-content: flex-end;
  }
  .flex-justify-center_sm-only {
    justify-content: center;
  }
  .flex-justify-between_sm-only {
    justify-content: space-between;
  }
  .flex-justify-around_sm-only {
    justify-content: space-around;
  }
  .flex-justify-evenly_sm-only {
    justify-content: space-evenly;
  }
  .flex-items-start_sm-only {
    align-items: flex-start;
  }
  .flex-items-center_sm-only {
    align-items: center;
  }
  .flex-items-end_sm-only {
    align-items: flex-end;
  }
  .flex-items-stretch_sm-only {
    align-items: stretch;
  }
  .flex-items-baseline_sm-only {
    align-items: baseline;
  }
  .flex-content-start_sm-only {
    align-content: flex-start;
  }
  .flex-content-center_sm-only {
    align-content: center;
  }
  .flex-content-end_sm-only {
    align-content: flex-end;
  }
  .flex-content-between_sm-only {
    align-content: space-between;
  }
  .flex-content-around_sm-only {
    align-content: space-around;
  }
  .flex-content-evenly_sm-only {
    align-content: space-evenly;
  }
  .flex-content-stretch_sm-only {
    align-content: stretch;
  }
  .flex-content-baseline_sm-only {
    align-content: baseline;
  }
  .flex-self-auto_sm-only {
    align-self: auto;
  }
  .flex-self-start_sm-only {
    align-self: flex-start;
  }
  .flex-self-center_sm-only {
    align-self: center;
  }
  .flex-self-end_sm-only {
    align-self: flex-end;
  }
  .flex-self-stretch_sm-only {
    align-self: stretch;
  }
  .flex-self-baseline_sm-only {
    align-self: baseline;
  }
  .flex-0_sm-only {
    flex: 0;
  }
  .flex-1_sm-only {
    flex: 1;
  }
  .flex-2_sm-only {
    flex: 2;
  }
  .flex-3_sm-only {
    flex: 3;
  }
  .flex-4_sm-only {
    flex: 4;
  }
  .flex-5_sm-only {
    flex: 5;
  }
  .flex-6_sm-only {
    flex: 6;
  }
  .flex-7_sm-only {
    flex: 7;
  }
  .flex-8_sm-only {
    flex: 8;
  }
  .flex-9_sm-only {
    flex: 9;
  }
  .flex-10_sm-only {
    flex: 10;
  }
  .order-0_sm-only {
    order: 0;
  }
  .order-1_sm-only {
    order: 1;
  }
  .order-2_sm-only {
    order: 2;
  }
  .order-3_sm-only {
    order: 3;
  }
  .order-4_sm-only {
    order: 4;
  }
  .order-5_sm-only {
    order: 5;
  }
  .order-6_sm-only {
    order: 6;
  }
  .order-7_sm-only {
    order: 7;
  }
  .order-8_sm-only {
    order: 8;
  }
  .order-9_sm-only {
    order: 9;
  }
  .order-10_sm-only {
    order: 10;
  }
  .m-half_sm-only {
    margin: 0.5rem !important;
  }
  .mt-half_sm-only {
    margin-top: 0.5rem !important;
  }
  .mr-half_sm-only {
    margin-right: 0.5rem !important;
  }
  .mb-half_sm-only {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_sm-only {
    margin-left: 0.5rem !important;
  }
  .mx-half_sm-only {
    margin-inline: 0.5rem !important;
  }
  .my-half_sm-only {
    margin-block: 0.5rem !important;
  }
  .m-0_sm-only {
    margin: 0rem !important;
  }
  .mt-0_sm-only {
    margin-top: 0rem !important;
  }
  .mr-0_sm-only {
    margin-right: 0rem !important;
  }
  .mb-0_sm-only {
    margin-bottom: 0rem !important;
  }
  .ml-0_sm-only {
    margin-left: 0rem !important;
  }
  .mx-0_sm-only {
    margin-inline: 0rem !important;
  }
  .my-0_sm-only {
    margin-block: 0rem !important;
  }
  .m-1_sm-only {
    margin: 1rem !important;
  }
  .mt-1_sm-only {
    margin-top: 1rem !important;
  }
  .mr-1_sm-only {
    margin-right: 1rem !important;
  }
  .mb-1_sm-only {
    margin-bottom: 1rem !important;
  }
  .ml-1_sm-only {
    margin-left: 1rem !important;
  }
  .mx-1_sm-only {
    margin-inline: 1rem !important;
  }
  .my-1_sm-only {
    margin-block: 1rem !important;
  }
  .m-2_sm-only {
    margin: 2rem !important;
  }
  .mt-2_sm-only {
    margin-top: 2rem !important;
  }
  .mr-2_sm-only {
    margin-right: 2rem !important;
  }
  .mb-2_sm-only {
    margin-bottom: 2rem !important;
  }
  .ml-2_sm-only {
    margin-left: 2rem !important;
  }
  .mx-2_sm-only {
    margin-inline: 2rem !important;
  }
  .my-2_sm-only {
    margin-block: 2rem !important;
  }
  .m-3_sm-only {
    margin: 3rem !important;
  }
  .mt-3_sm-only {
    margin-top: 3rem !important;
  }
  .mr-3_sm-only {
    margin-right: 3rem !important;
  }
  .mb-3_sm-only {
    margin-bottom: 3rem !important;
  }
  .ml-3_sm-only {
    margin-left: 3rem !important;
  }
  .mx-3_sm-only {
    margin-inline: 3rem !important;
  }
  .my-3_sm-only {
    margin-block: 3rem !important;
  }
  .m-4_sm-only {
    margin: 4rem !important;
  }
  .mt-4_sm-only {
    margin-top: 4rem !important;
  }
  .mr-4_sm-only {
    margin-right: 4rem !important;
  }
  .mb-4_sm-only {
    margin-bottom: 4rem !important;
  }
  .ml-4_sm-only {
    margin-left: 4rem !important;
  }
  .mx-4_sm-only {
    margin-inline: 4rem !important;
  }
  .my-4_sm-only {
    margin-block: 4rem !important;
  }
  .m-5_sm-only {
    margin: 5rem !important;
  }
  .mt-5_sm-only {
    margin-top: 5rem !important;
  }
  .mr-5_sm-only {
    margin-right: 5rem !important;
  }
  .mb-5_sm-only {
    margin-bottom: 5rem !important;
  }
  .ml-5_sm-only {
    margin-left: 5rem !important;
  }
  .mx-5_sm-only {
    margin-inline: 5rem !important;
  }
  .my-5_sm-only {
    margin-block: 5rem !important;
  }
  .m-6_sm-only {
    margin: 6rem !important;
  }
  .mt-6_sm-only {
    margin-top: 6rem !important;
  }
  .mr-6_sm-only {
    margin-right: 6rem !important;
  }
  .mb-6_sm-only {
    margin-bottom: 6rem !important;
  }
  .ml-6_sm-only {
    margin-left: 6rem !important;
  }
  .mx-6_sm-only {
    margin-inline: 6rem !important;
  }
  .my-6_sm-only {
    margin-block: 6rem !important;
  }
  .m-7_sm-only {
    margin: 7rem !important;
  }
  .mt-7_sm-only {
    margin-top: 7rem !important;
  }
  .mr-7_sm-only {
    margin-right: 7rem !important;
  }
  .mb-7_sm-only {
    margin-bottom: 7rem !important;
  }
  .ml-7_sm-only {
    margin-left: 7rem !important;
  }
  .mx-7_sm-only {
    margin-inline: 7rem !important;
  }
  .my-7_sm-only {
    margin-block: 7rem !important;
  }
  .m-8_sm-only {
    margin: 8rem !important;
  }
  .mt-8_sm-only {
    margin-top: 8rem !important;
  }
  .mr-8_sm-only {
    margin-right: 8rem !important;
  }
  .mb-8_sm-only {
    margin-bottom: 8rem !important;
  }
  .ml-8_sm-only {
    margin-left: 8rem !important;
  }
  .mx-8_sm-only {
    margin-inline: 8rem !important;
  }
  .my-8_sm-only {
    margin-block: 8rem !important;
  }
  .m-9_sm-only {
    margin: 9rem !important;
  }
  .mt-9_sm-only {
    margin-top: 9rem !important;
  }
  .mr-9_sm-only {
    margin-right: 9rem !important;
  }
  .mb-9_sm-only {
    margin-bottom: 9rem !important;
  }
  .ml-9_sm-only {
    margin-left: 9rem !important;
  }
  .mx-9_sm-only {
    margin-inline: 9rem !important;
  }
  .my-9_sm-only {
    margin-block: 9rem !important;
  }
  .m-10_sm-only {
    margin: 10rem !important;
  }
  .mt-10_sm-only {
    margin-top: 10rem !important;
  }
  .mr-10_sm-only {
    margin-right: 10rem !important;
  }
  .mb-10_sm-only {
    margin-bottom: 10rem !important;
  }
  .ml-10_sm-only {
    margin-left: 10rem !important;
  }
  .mx-10_sm-only {
    margin-inline: 10rem !important;
  }
  .my-10_sm-only {
    margin-block: 10rem !important;
  }
  .p-half_sm-only {
    padding: 0.5rem !important;
  }
  .pt-half_sm-only {
    padding-top: 0.5rem !important;
  }
  .pr-half_sm-only {
    padding-right: 0.5rem !important;
  }
  .pb-half_sm-only {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_sm-only {
    padding-left: 0.5rem !important;
  }
  .px-half_sm-only {
    padding-inline: 0.5rem !important;
  }
  .py-half_sm-only {
    padding-block: 0.5rem !important;
  }
  .p-0_sm-only {
    padding: 0rem !important;
  }
  .pt-0_sm-only {
    padding-top: 0rem !important;
  }
  .pr-0_sm-only {
    padding-right: 0rem !important;
  }
  .pb-0_sm-only {
    padding-bottom: 0rem !important;
  }
  .pl-0_sm-only {
    padding-left: 0rem !important;
  }
  .px-0_sm-only {
    padding-inline: 0rem !important;
  }
  .py-0_sm-only {
    padding-block: 0rem !important;
  }
  .p-1_sm-only {
    padding: 1rem !important;
  }
  .pt-1_sm-only {
    padding-top: 1rem !important;
  }
  .pr-1_sm-only {
    padding-right: 1rem !important;
  }
  .pb-1_sm-only {
    padding-bottom: 1rem !important;
  }
  .pl-1_sm-only {
    padding-left: 1rem !important;
  }
  .px-1_sm-only {
    padding-inline: 1rem !important;
  }
  .py-1_sm-only {
    padding-block: 1rem !important;
  }
  .p-2_sm-only {
    padding: 2rem !important;
  }
  .pt-2_sm-only {
    padding-top: 2rem !important;
  }
  .pr-2_sm-only {
    padding-right: 2rem !important;
  }
  .pb-2_sm-only {
    padding-bottom: 2rem !important;
  }
  .pl-2_sm-only {
    padding-left: 2rem !important;
  }
  .px-2_sm-only {
    padding-inline: 2rem !important;
  }
  .py-2_sm-only {
    padding-block: 2rem !important;
  }
  .p-3_sm-only {
    padding: 3rem !important;
  }
  .pt-3_sm-only {
    padding-top: 3rem !important;
  }
  .pr-3_sm-only {
    padding-right: 3rem !important;
  }
  .pb-3_sm-only {
    padding-bottom: 3rem !important;
  }
  .pl-3_sm-only {
    padding-left: 3rem !important;
  }
  .px-3_sm-only {
    padding-inline: 3rem !important;
  }
  .py-3_sm-only {
    padding-block: 3rem !important;
  }
  .p-4_sm-only {
    padding: 4rem !important;
  }
  .pt-4_sm-only {
    padding-top: 4rem !important;
  }
  .pr-4_sm-only {
    padding-right: 4rem !important;
  }
  .pb-4_sm-only {
    padding-bottom: 4rem !important;
  }
  .pl-4_sm-only {
    padding-left: 4rem !important;
  }
  .px-4_sm-only {
    padding-inline: 4rem !important;
  }
  .py-4_sm-only {
    padding-block: 4rem !important;
  }
  .p-5_sm-only {
    padding: 5rem !important;
  }
  .pt-5_sm-only {
    padding-top: 5rem !important;
  }
  .pr-5_sm-only {
    padding-right: 5rem !important;
  }
  .pb-5_sm-only {
    padding-bottom: 5rem !important;
  }
  .pl-5_sm-only {
    padding-left: 5rem !important;
  }
  .px-5_sm-only {
    padding-inline: 5rem !important;
  }
  .py-5_sm-only {
    padding-block: 5rem !important;
  }
  .p-6_sm-only {
    padding: 6rem !important;
  }
  .pt-6_sm-only {
    padding-top: 6rem !important;
  }
  .pr-6_sm-only {
    padding-right: 6rem !important;
  }
  .pb-6_sm-only {
    padding-bottom: 6rem !important;
  }
  .pl-6_sm-only {
    padding-left: 6rem !important;
  }
  .px-6_sm-only {
    padding-inline: 6rem !important;
  }
  .py-6_sm-only {
    padding-block: 6rem !important;
  }
  .p-7_sm-only {
    padding: 7rem !important;
  }
  .pt-7_sm-only {
    padding-top: 7rem !important;
  }
  .pr-7_sm-only {
    padding-right: 7rem !important;
  }
  .pb-7_sm-only {
    padding-bottom: 7rem !important;
  }
  .pl-7_sm-only {
    padding-left: 7rem !important;
  }
  .px-7_sm-only {
    padding-inline: 7rem !important;
  }
  .py-7_sm-only {
    padding-block: 7rem !important;
  }
  .p-8_sm-only {
    padding: 8rem !important;
  }
  .pt-8_sm-only {
    padding-top: 8rem !important;
  }
  .pr-8_sm-only {
    padding-right: 8rem !important;
  }
  .pb-8_sm-only {
    padding-bottom: 8rem !important;
  }
  .pl-8_sm-only {
    padding-left: 8rem !important;
  }
  .px-8_sm-only {
    padding-inline: 8rem !important;
  }
  .py-8_sm-only {
    padding-block: 8rem !important;
  }
  .p-9_sm-only {
    padding: 9rem !important;
  }
  .pt-9_sm-only {
    padding-top: 9rem !important;
  }
  .pr-9_sm-only {
    padding-right: 9rem !important;
  }
  .pb-9_sm-only {
    padding-bottom: 9rem !important;
  }
  .pl-9_sm-only {
    padding-left: 9rem !important;
  }
  .px-9_sm-only {
    padding-inline: 9rem !important;
  }
  .py-9_sm-only {
    padding-block: 9rem !important;
  }
  .p-10_sm-only {
    padding: 10rem !important;
  }
  .pt-10_sm-only {
    padding-top: 10rem !important;
  }
  .pr-10_sm-only {
    padding-right: 10rem !important;
  }
  .pb-10_sm-only {
    padding-bottom: 10rem !important;
  }
  .pl-10_sm-only {
    padding-left: 10rem !important;
  }
  .px-10_sm-only {
    padding-inline: 10rem !important;
  }
  .py-10_sm-only {
    padding-block: 10rem !important;
  }
  .m-auto_sm-only {
    margin: auto !important;
  }
  .mt-auto_sm-only {
    margin-top: auto !important;
  }
  .mr-auto_sm-only {
    margin-right: auto !important;
  }
  .mb-auto_sm-only {
    margin-bottom: auto !important;
  }
  .ml-auto_sm-only {
    margin-left: auto !important;
  }
  .mx-auto_sm-only {
    margin-inline: auto !important;
  }
  .my-auto_sm-only {
    margin-block: auto !important;
  }
  .float-right_sm-only {
    float: right;
  }
  .float-left_sm-only {
    float: left;
  }
  .hide_sm-only,
  .is-hidden_sm-only {
    display: none !important;
    visibility: hidden;
  }
  .border-all_sm-only {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_sm-only {
    border: 0;
  }
  .border-top_sm-only {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_sm-only {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_sm-only {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_sm-only {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_sm-only {
    gap: 0;
  }
  .gap-y-0_sm-only {
    row-gap: 0;
  }
  .gap-x-0_sm-only {
    column-gap: 0;
  }
  .gap-1_sm-only {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_sm-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_sm-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_sm-only {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_sm-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_sm-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_sm-only {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_sm-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_sm-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_sm-only {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_sm-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_sm-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_sm-only {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_sm-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_sm-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_sm-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_sm-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_sm-only {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_sm-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_sm-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_sm-only {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_sm-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_sm-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_sm-only {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 640px) {
  .flex_sm {
    display: flex;
  }
  .block_sm {
    display: block;
  }
  .inline-block_sm {
    display: inline-block;
  }
  .inline_sm {
    display: inline;
  }
  .flex-row_sm {
    flex-direction: row;
  }
  .flex-row-reverse_sm {
    flex-direction: row-reverse;
  }
  .flex-col_sm {
    flex-direction: column;
  }
  .flex-col-reverse_sm {
    flex-direction: column-reverse;
  }
  .flex-nowrap_sm {
    flex-wrap: nowrap;
  }
  .flex-wrap_sm {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_sm {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_sm {
    justify-content: flex-start;
  }
  .flex-justify-end_sm {
    justify-content: flex-end;
  }
  .flex-justify-center_sm {
    justify-content: center;
  }
  .flex-justify-between_sm {
    justify-content: space-between;
  }
  .flex-justify-around_sm {
    justify-content: space-around;
  }
  .flex-justify-evenly_sm {
    justify-content: space-evenly;
  }
  .flex-items-start_sm {
    align-items: flex-start;
  }
  .flex-items-center_sm {
    align-items: center;
  }
  .flex-items-end_sm {
    align-items: flex-end;
  }
  .flex-items-stretch_sm {
    align-items: stretch;
  }
  .flex-items-baseline_sm {
    align-items: baseline;
  }
  .flex-content-start_sm {
    align-content: flex-start;
  }
  .flex-content-center_sm {
    align-content: center;
  }
  .flex-content-end_sm {
    align-content: flex-end;
  }
  .flex-content-between_sm {
    align-content: space-between;
  }
  .flex-content-around_sm {
    align-content: space-around;
  }
  .flex-content-evenly_sm {
    align-content: space-evenly;
  }
  .flex-content-stretch_sm {
    align-content: stretch;
  }
  .flex-content-baseline_sm {
    align-content: baseline;
  }
  .flex-self-auto_sm {
    align-self: auto;
  }
  .flex-self-start_sm {
    align-self: flex-start;
  }
  .flex-self-center_sm {
    align-self: center;
  }
  .flex-self-end_sm {
    align-self: flex-end;
  }
  .flex-self-stretch_sm {
    align-self: stretch;
  }
  .flex-self-baseline_sm {
    align-self: baseline;
  }
  .flex-0_sm {
    flex: 0;
  }
  .flex-1_sm {
    flex: 1;
  }
  .flex-2_sm {
    flex: 2;
  }
  .flex-3_sm {
    flex: 3;
  }
  .flex-4_sm {
    flex: 4;
  }
  .flex-5_sm {
    flex: 5;
  }
  .flex-6_sm {
    flex: 6;
  }
  .flex-7_sm {
    flex: 7;
  }
  .flex-8_sm {
    flex: 8;
  }
  .flex-9_sm {
    flex: 9;
  }
  .flex-10_sm {
    flex: 10;
  }
  .order-0_sm {
    order: 0;
  }
  .order-1_sm {
    order: 1;
  }
  .order-2_sm {
    order: 2;
  }
  .order-3_sm {
    order: 3;
  }
  .order-4_sm {
    order: 4;
  }
  .order-5_sm {
    order: 5;
  }
  .order-6_sm {
    order: 6;
  }
  .order-7_sm {
    order: 7;
  }
  .order-8_sm {
    order: 8;
  }
  .order-9_sm {
    order: 9;
  }
  .order-10_sm {
    order: 10;
  }
  .m-half_sm {
    margin: 0.5rem !important;
  }
  .mt-half_sm {
    margin-top: 0.5rem !important;
  }
  .mr-half_sm {
    margin-right: 0.5rem !important;
  }
  .mb-half_sm {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_sm {
    margin-left: 0.5rem !important;
  }
  .mx-half_sm {
    margin-inline: 0.5rem !important;
  }
  .my-half_sm {
    margin-block: 0.5rem !important;
  }
  .m-0_sm {
    margin: 0rem !important;
  }
  .mt-0_sm {
    margin-top: 0rem !important;
  }
  .mr-0_sm {
    margin-right: 0rem !important;
  }
  .mb-0_sm {
    margin-bottom: 0rem !important;
  }
  .ml-0_sm {
    margin-left: 0rem !important;
  }
  .mx-0_sm {
    margin-inline: 0rem !important;
  }
  .my-0_sm {
    margin-block: 0rem !important;
  }
  .m-1_sm {
    margin: 1rem !important;
  }
  .mt-1_sm {
    margin-top: 1rem !important;
  }
  .mr-1_sm {
    margin-right: 1rem !important;
  }
  .mb-1_sm {
    margin-bottom: 1rem !important;
  }
  .ml-1_sm {
    margin-left: 1rem !important;
  }
  .mx-1_sm {
    margin-inline: 1rem !important;
  }
  .my-1_sm {
    margin-block: 1rem !important;
  }
  .m-2_sm {
    margin: 2rem !important;
  }
  .mt-2_sm {
    margin-top: 2rem !important;
  }
  .mr-2_sm {
    margin-right: 2rem !important;
  }
  .mb-2_sm {
    margin-bottom: 2rem !important;
  }
  .ml-2_sm {
    margin-left: 2rem !important;
  }
  .mx-2_sm {
    margin-inline: 2rem !important;
  }
  .my-2_sm {
    margin-block: 2rem !important;
  }
  .m-3_sm {
    margin: 3rem !important;
  }
  .mt-3_sm {
    margin-top: 3rem !important;
  }
  .mr-3_sm {
    margin-right: 3rem !important;
  }
  .mb-3_sm {
    margin-bottom: 3rem !important;
  }
  .ml-3_sm {
    margin-left: 3rem !important;
  }
  .mx-3_sm {
    margin-inline: 3rem !important;
  }
  .my-3_sm {
    margin-block: 3rem !important;
  }
  .m-4_sm {
    margin: 4rem !important;
  }
  .mt-4_sm {
    margin-top: 4rem !important;
  }
  .mr-4_sm {
    margin-right: 4rem !important;
  }
  .mb-4_sm {
    margin-bottom: 4rem !important;
  }
  .ml-4_sm {
    margin-left: 4rem !important;
  }
  .mx-4_sm {
    margin-inline: 4rem !important;
  }
  .my-4_sm {
    margin-block: 4rem !important;
  }
  .m-5_sm {
    margin: 5rem !important;
  }
  .mt-5_sm {
    margin-top: 5rem !important;
  }
  .mr-5_sm {
    margin-right: 5rem !important;
  }
  .mb-5_sm {
    margin-bottom: 5rem !important;
  }
  .ml-5_sm {
    margin-left: 5rem !important;
  }
  .mx-5_sm {
    margin-inline: 5rem !important;
  }
  .my-5_sm {
    margin-block: 5rem !important;
  }
  .m-6_sm {
    margin: 6rem !important;
  }
  .mt-6_sm {
    margin-top: 6rem !important;
  }
  .mr-6_sm {
    margin-right: 6rem !important;
  }
  .mb-6_sm {
    margin-bottom: 6rem !important;
  }
  .ml-6_sm {
    margin-left: 6rem !important;
  }
  .mx-6_sm {
    margin-inline: 6rem !important;
  }
  .my-6_sm {
    margin-block: 6rem !important;
  }
  .m-7_sm {
    margin: 7rem !important;
  }
  .mt-7_sm {
    margin-top: 7rem !important;
  }
  .mr-7_sm {
    margin-right: 7rem !important;
  }
  .mb-7_sm {
    margin-bottom: 7rem !important;
  }
  .ml-7_sm {
    margin-left: 7rem !important;
  }
  .mx-7_sm {
    margin-inline: 7rem !important;
  }
  .my-7_sm {
    margin-block: 7rem !important;
  }
  .m-8_sm {
    margin: 8rem !important;
  }
  .mt-8_sm {
    margin-top: 8rem !important;
  }
  .mr-8_sm {
    margin-right: 8rem !important;
  }
  .mb-8_sm {
    margin-bottom: 8rem !important;
  }
  .ml-8_sm {
    margin-left: 8rem !important;
  }
  .mx-8_sm {
    margin-inline: 8rem !important;
  }
  .my-8_sm {
    margin-block: 8rem !important;
  }
  .m-9_sm {
    margin: 9rem !important;
  }
  .mt-9_sm {
    margin-top: 9rem !important;
  }
  .mr-9_sm {
    margin-right: 9rem !important;
  }
  .mb-9_sm {
    margin-bottom: 9rem !important;
  }
  .ml-9_sm {
    margin-left: 9rem !important;
  }
  .mx-9_sm {
    margin-inline: 9rem !important;
  }
  .my-9_sm {
    margin-block: 9rem !important;
  }
  .m-10_sm {
    margin: 10rem !important;
  }
  .mt-10_sm {
    margin-top: 10rem !important;
  }
  .mr-10_sm {
    margin-right: 10rem !important;
  }
  .mb-10_sm {
    margin-bottom: 10rem !important;
  }
  .ml-10_sm {
    margin-left: 10rem !important;
  }
  .mx-10_sm {
    margin-inline: 10rem !important;
  }
  .my-10_sm {
    margin-block: 10rem !important;
  }
  .p-half_sm {
    padding: 0.5rem !important;
  }
  .pt-half_sm {
    padding-top: 0.5rem !important;
  }
  .pr-half_sm {
    padding-right: 0.5rem !important;
  }
  .pb-half_sm {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_sm {
    padding-left: 0.5rem !important;
  }
  .px-half_sm {
    padding-inline: 0.5rem !important;
  }
  .py-half_sm {
    padding-block: 0.5rem !important;
  }
  .p-0_sm {
    padding: 0rem !important;
  }
  .pt-0_sm {
    padding-top: 0rem !important;
  }
  .pr-0_sm {
    padding-right: 0rem !important;
  }
  .pb-0_sm {
    padding-bottom: 0rem !important;
  }
  .pl-0_sm {
    padding-left: 0rem !important;
  }
  .px-0_sm {
    padding-inline: 0rem !important;
  }
  .py-0_sm {
    padding-block: 0rem !important;
  }
  .p-1_sm {
    padding: 1rem !important;
  }
  .pt-1_sm {
    padding-top: 1rem !important;
  }
  .pr-1_sm {
    padding-right: 1rem !important;
  }
  .pb-1_sm {
    padding-bottom: 1rem !important;
  }
  .pl-1_sm {
    padding-left: 1rem !important;
  }
  .px-1_sm {
    padding-inline: 1rem !important;
  }
  .py-1_sm {
    padding-block: 1rem !important;
  }
  .p-2_sm {
    padding: 2rem !important;
  }
  .pt-2_sm {
    padding-top: 2rem !important;
  }
  .pr-2_sm {
    padding-right: 2rem !important;
  }
  .pb-2_sm {
    padding-bottom: 2rem !important;
  }
  .pl-2_sm {
    padding-left: 2rem !important;
  }
  .px-2_sm {
    padding-inline: 2rem !important;
  }
  .py-2_sm {
    padding-block: 2rem !important;
  }
  .p-3_sm {
    padding: 3rem !important;
  }
  .pt-3_sm {
    padding-top: 3rem !important;
  }
  .pr-3_sm {
    padding-right: 3rem !important;
  }
  .pb-3_sm {
    padding-bottom: 3rem !important;
  }
  .pl-3_sm {
    padding-left: 3rem !important;
  }
  .px-3_sm {
    padding-inline: 3rem !important;
  }
  .py-3_sm {
    padding-block: 3rem !important;
  }
  .p-4_sm {
    padding: 4rem !important;
  }
  .pt-4_sm {
    padding-top: 4rem !important;
  }
  .pr-4_sm {
    padding-right: 4rem !important;
  }
  .pb-4_sm {
    padding-bottom: 4rem !important;
  }
  .pl-4_sm {
    padding-left: 4rem !important;
  }
  .px-4_sm {
    padding-inline: 4rem !important;
  }
  .py-4_sm {
    padding-block: 4rem !important;
  }
  .p-5_sm {
    padding: 5rem !important;
  }
  .pt-5_sm {
    padding-top: 5rem !important;
  }
  .pr-5_sm {
    padding-right: 5rem !important;
  }
  .pb-5_sm {
    padding-bottom: 5rem !important;
  }
  .pl-5_sm {
    padding-left: 5rem !important;
  }
  .px-5_sm {
    padding-inline: 5rem !important;
  }
  .py-5_sm {
    padding-block: 5rem !important;
  }
  .p-6_sm {
    padding: 6rem !important;
  }
  .pt-6_sm {
    padding-top: 6rem !important;
  }
  .pr-6_sm {
    padding-right: 6rem !important;
  }
  .pb-6_sm {
    padding-bottom: 6rem !important;
  }
  .pl-6_sm {
    padding-left: 6rem !important;
  }
  .px-6_sm {
    padding-inline: 6rem !important;
  }
  .py-6_sm {
    padding-block: 6rem !important;
  }
  .p-7_sm {
    padding: 7rem !important;
  }
  .pt-7_sm {
    padding-top: 7rem !important;
  }
  .pr-7_sm {
    padding-right: 7rem !important;
  }
  .pb-7_sm {
    padding-bottom: 7rem !important;
  }
  .pl-7_sm {
    padding-left: 7rem !important;
  }
  .px-7_sm {
    padding-inline: 7rem !important;
  }
  .py-7_sm {
    padding-block: 7rem !important;
  }
  .p-8_sm {
    padding: 8rem !important;
  }
  .pt-8_sm {
    padding-top: 8rem !important;
  }
  .pr-8_sm {
    padding-right: 8rem !important;
  }
  .pb-8_sm {
    padding-bottom: 8rem !important;
  }
  .pl-8_sm {
    padding-left: 8rem !important;
  }
  .px-8_sm {
    padding-inline: 8rem !important;
  }
  .py-8_sm {
    padding-block: 8rem !important;
  }
  .p-9_sm {
    padding: 9rem !important;
  }
  .pt-9_sm {
    padding-top: 9rem !important;
  }
  .pr-9_sm {
    padding-right: 9rem !important;
  }
  .pb-9_sm {
    padding-bottom: 9rem !important;
  }
  .pl-9_sm {
    padding-left: 9rem !important;
  }
  .px-9_sm {
    padding-inline: 9rem !important;
  }
  .py-9_sm {
    padding-block: 9rem !important;
  }
  .p-10_sm {
    padding: 10rem !important;
  }
  .pt-10_sm {
    padding-top: 10rem !important;
  }
  .pr-10_sm {
    padding-right: 10rem !important;
  }
  .pb-10_sm {
    padding-bottom: 10rem !important;
  }
  .pl-10_sm {
    padding-left: 10rem !important;
  }
  .px-10_sm {
    padding-inline: 10rem !important;
  }
  .py-10_sm {
    padding-block: 10rem !important;
  }
  .m-auto_sm {
    margin: auto !important;
  }
  .mt-auto_sm {
    margin-top: auto !important;
  }
  .mr-auto_sm {
    margin-right: auto !important;
  }
  .mb-auto_sm {
    margin-bottom: auto !important;
  }
  .ml-auto_sm {
    margin-left: auto !important;
  }
  .mx-auto_sm {
    margin-inline: auto !important;
  }
  .my-auto_sm {
    margin-block: auto !important;
  }
  .float-right_sm {
    float: right;
  }
  .float-left_sm {
    float: left;
  }
  .hide_sm,
  .is-hidden_sm {
    display: none !important;
    visibility: hidden;
  }
  .border-all_sm {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_sm {
    border: 0;
  }
  .border-top_sm {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_sm {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_sm {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_sm {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_sm {
    gap: 0;
  }
  .gap-y-0_sm {
    row-gap: 0;
  }
  .gap-x-0_sm {
    column-gap: 0;
  }
  .gap-1_sm {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_sm {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_sm {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_sm {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_sm {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_sm {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_sm {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_sm {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_sm {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_sm {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_sm {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_sm {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_sm {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_sm {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_sm {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_sm {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_sm {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_sm {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_sm {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_sm {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_sm {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_sm {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_sm {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_sm {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .flex_md-only {
    display: flex;
  }
  .block_md-only {
    display: block;
  }
  .inline-block_md-only {
    display: inline-block;
  }
  .inline_md-only {
    display: inline;
  }
  .flex-row_md-only {
    flex-direction: row;
  }
  .flex-row-reverse_md-only {
    flex-direction: row-reverse;
  }
  .flex-col_md-only {
    flex-direction: column;
  }
  .flex-col-reverse_md-only {
    flex-direction: column-reverse;
  }
  .flex-nowrap_md-only {
    flex-wrap: nowrap;
  }
  .flex-wrap_md-only {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_md-only {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_md-only {
    justify-content: flex-start;
  }
  .flex-justify-end_md-only {
    justify-content: flex-end;
  }
  .flex-justify-center_md-only {
    justify-content: center;
  }
  .flex-justify-between_md-only {
    justify-content: space-between;
  }
  .flex-justify-around_md-only {
    justify-content: space-around;
  }
  .flex-justify-evenly_md-only {
    justify-content: space-evenly;
  }
  .flex-items-start_md-only {
    align-items: flex-start;
  }
  .flex-items-center_md-only {
    align-items: center;
  }
  .flex-items-end_md-only {
    align-items: flex-end;
  }
  .flex-items-stretch_md-only {
    align-items: stretch;
  }
  .flex-items-baseline_md-only {
    align-items: baseline;
  }
  .flex-content-start_md-only {
    align-content: flex-start;
  }
  .flex-content-center_md-only {
    align-content: center;
  }
  .flex-content-end_md-only {
    align-content: flex-end;
  }
  .flex-content-between_md-only {
    align-content: space-between;
  }
  .flex-content-around_md-only {
    align-content: space-around;
  }
  .flex-content-evenly_md-only {
    align-content: space-evenly;
  }
  .flex-content-stretch_md-only {
    align-content: stretch;
  }
  .flex-content-baseline_md-only {
    align-content: baseline;
  }
  .flex-self-auto_md-only {
    align-self: auto;
  }
  .flex-self-start_md-only {
    align-self: flex-start;
  }
  .flex-self-center_md-only {
    align-self: center;
  }
  .flex-self-end_md-only {
    align-self: flex-end;
  }
  .flex-self-stretch_md-only {
    align-self: stretch;
  }
  .flex-self-baseline_md-only {
    align-self: baseline;
  }
  .flex-0_md-only {
    flex: 0;
  }
  .flex-1_md-only {
    flex: 1;
  }
  .flex-2_md-only {
    flex: 2;
  }
  .flex-3_md-only {
    flex: 3;
  }
  .flex-4_md-only {
    flex: 4;
  }
  .flex-5_md-only {
    flex: 5;
  }
  .flex-6_md-only {
    flex: 6;
  }
  .flex-7_md-only {
    flex: 7;
  }
  .flex-8_md-only {
    flex: 8;
  }
  .flex-9_md-only {
    flex: 9;
  }
  .flex-10_md-only {
    flex: 10;
  }
  .order-0_md-only {
    order: 0;
  }
  .order-1_md-only {
    order: 1;
  }
  .order-2_md-only {
    order: 2;
  }
  .order-3_md-only {
    order: 3;
  }
  .order-4_md-only {
    order: 4;
  }
  .order-5_md-only {
    order: 5;
  }
  .order-6_md-only {
    order: 6;
  }
  .order-7_md-only {
    order: 7;
  }
  .order-8_md-only {
    order: 8;
  }
  .order-9_md-only {
    order: 9;
  }
  .order-10_md-only {
    order: 10;
  }
  .m-half_md-only {
    margin: 0.5rem !important;
  }
  .mt-half_md-only {
    margin-top: 0.5rem !important;
  }
  .mr-half_md-only {
    margin-right: 0.5rem !important;
  }
  .mb-half_md-only {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_md-only {
    margin-left: 0.5rem !important;
  }
  .mx-half_md-only {
    margin-inline: 0.5rem !important;
  }
  .my-half_md-only {
    margin-block: 0.5rem !important;
  }
  .m-0_md-only {
    margin: 0rem !important;
  }
  .mt-0_md-only {
    margin-top: 0rem !important;
  }
  .mr-0_md-only {
    margin-right: 0rem !important;
  }
  .mb-0_md-only {
    margin-bottom: 0rem !important;
  }
  .ml-0_md-only {
    margin-left: 0rem !important;
  }
  .mx-0_md-only {
    margin-inline: 0rem !important;
  }
  .my-0_md-only {
    margin-block: 0rem !important;
  }
  .m-1_md-only {
    margin: 1rem !important;
  }
  .mt-1_md-only {
    margin-top: 1rem !important;
  }
  .mr-1_md-only {
    margin-right: 1rem !important;
  }
  .mb-1_md-only {
    margin-bottom: 1rem !important;
  }
  .ml-1_md-only {
    margin-left: 1rem !important;
  }
  .mx-1_md-only {
    margin-inline: 1rem !important;
  }
  .my-1_md-only {
    margin-block: 1rem !important;
  }
  .m-2_md-only {
    margin: 2rem !important;
  }
  .mt-2_md-only {
    margin-top: 2rem !important;
  }
  .mr-2_md-only {
    margin-right: 2rem !important;
  }
  .mb-2_md-only {
    margin-bottom: 2rem !important;
  }
  .ml-2_md-only {
    margin-left: 2rem !important;
  }
  .mx-2_md-only {
    margin-inline: 2rem !important;
  }
  .my-2_md-only {
    margin-block: 2rem !important;
  }
  .m-3_md-only {
    margin: 3rem !important;
  }
  .mt-3_md-only {
    margin-top: 3rem !important;
  }
  .mr-3_md-only {
    margin-right: 3rem !important;
  }
  .mb-3_md-only {
    margin-bottom: 3rem !important;
  }
  .ml-3_md-only {
    margin-left: 3rem !important;
  }
  .mx-3_md-only {
    margin-inline: 3rem !important;
  }
  .my-3_md-only {
    margin-block: 3rem !important;
  }
  .m-4_md-only {
    margin: 4rem !important;
  }
  .mt-4_md-only {
    margin-top: 4rem !important;
  }
  .mr-4_md-only {
    margin-right: 4rem !important;
  }
  .mb-4_md-only {
    margin-bottom: 4rem !important;
  }
  .ml-4_md-only {
    margin-left: 4rem !important;
  }
  .mx-4_md-only {
    margin-inline: 4rem !important;
  }
  .my-4_md-only {
    margin-block: 4rem !important;
  }
  .m-5_md-only {
    margin: 5rem !important;
  }
  .mt-5_md-only {
    margin-top: 5rem !important;
  }
  .mr-5_md-only {
    margin-right: 5rem !important;
  }
  .mb-5_md-only {
    margin-bottom: 5rem !important;
  }
  .ml-5_md-only {
    margin-left: 5rem !important;
  }
  .mx-5_md-only {
    margin-inline: 5rem !important;
  }
  .my-5_md-only {
    margin-block: 5rem !important;
  }
  .m-6_md-only {
    margin: 6rem !important;
  }
  .mt-6_md-only {
    margin-top: 6rem !important;
  }
  .mr-6_md-only {
    margin-right: 6rem !important;
  }
  .mb-6_md-only {
    margin-bottom: 6rem !important;
  }
  .ml-6_md-only {
    margin-left: 6rem !important;
  }
  .mx-6_md-only {
    margin-inline: 6rem !important;
  }
  .my-6_md-only {
    margin-block: 6rem !important;
  }
  .m-7_md-only {
    margin: 7rem !important;
  }
  .mt-7_md-only {
    margin-top: 7rem !important;
  }
  .mr-7_md-only {
    margin-right: 7rem !important;
  }
  .mb-7_md-only {
    margin-bottom: 7rem !important;
  }
  .ml-7_md-only {
    margin-left: 7rem !important;
  }
  .mx-7_md-only {
    margin-inline: 7rem !important;
  }
  .my-7_md-only {
    margin-block: 7rem !important;
  }
  .m-8_md-only {
    margin: 8rem !important;
  }
  .mt-8_md-only {
    margin-top: 8rem !important;
  }
  .mr-8_md-only {
    margin-right: 8rem !important;
  }
  .mb-8_md-only {
    margin-bottom: 8rem !important;
  }
  .ml-8_md-only {
    margin-left: 8rem !important;
  }
  .mx-8_md-only {
    margin-inline: 8rem !important;
  }
  .my-8_md-only {
    margin-block: 8rem !important;
  }
  .m-9_md-only {
    margin: 9rem !important;
  }
  .mt-9_md-only {
    margin-top: 9rem !important;
  }
  .mr-9_md-only {
    margin-right: 9rem !important;
  }
  .mb-9_md-only {
    margin-bottom: 9rem !important;
  }
  .ml-9_md-only {
    margin-left: 9rem !important;
  }
  .mx-9_md-only {
    margin-inline: 9rem !important;
  }
  .my-9_md-only {
    margin-block: 9rem !important;
  }
  .m-10_md-only {
    margin: 10rem !important;
  }
  .mt-10_md-only {
    margin-top: 10rem !important;
  }
  .mr-10_md-only {
    margin-right: 10rem !important;
  }
  .mb-10_md-only {
    margin-bottom: 10rem !important;
  }
  .ml-10_md-only {
    margin-left: 10rem !important;
  }
  .mx-10_md-only {
    margin-inline: 10rem !important;
  }
  .my-10_md-only {
    margin-block: 10rem !important;
  }
  .p-half_md-only {
    padding: 0.5rem !important;
  }
  .pt-half_md-only {
    padding-top: 0.5rem !important;
  }
  .pr-half_md-only {
    padding-right: 0.5rem !important;
  }
  .pb-half_md-only {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_md-only {
    padding-left: 0.5rem !important;
  }
  .px-half_md-only {
    padding-inline: 0.5rem !important;
  }
  .py-half_md-only {
    padding-block: 0.5rem !important;
  }
  .p-0_md-only {
    padding: 0rem !important;
  }
  .pt-0_md-only {
    padding-top: 0rem !important;
  }
  .pr-0_md-only {
    padding-right: 0rem !important;
  }
  .pb-0_md-only {
    padding-bottom: 0rem !important;
  }
  .pl-0_md-only {
    padding-left: 0rem !important;
  }
  .px-0_md-only {
    padding-inline: 0rem !important;
  }
  .py-0_md-only {
    padding-block: 0rem !important;
  }
  .p-1_md-only {
    padding: 1rem !important;
  }
  .pt-1_md-only {
    padding-top: 1rem !important;
  }
  .pr-1_md-only {
    padding-right: 1rem !important;
  }
  .pb-1_md-only {
    padding-bottom: 1rem !important;
  }
  .pl-1_md-only {
    padding-left: 1rem !important;
  }
  .px-1_md-only {
    padding-inline: 1rem !important;
  }
  .py-1_md-only {
    padding-block: 1rem !important;
  }
  .p-2_md-only {
    padding: 2rem !important;
  }
  .pt-2_md-only {
    padding-top: 2rem !important;
  }
  .pr-2_md-only {
    padding-right: 2rem !important;
  }
  .pb-2_md-only {
    padding-bottom: 2rem !important;
  }
  .pl-2_md-only {
    padding-left: 2rem !important;
  }
  .px-2_md-only {
    padding-inline: 2rem !important;
  }
  .py-2_md-only {
    padding-block: 2rem !important;
  }
  .p-3_md-only {
    padding: 3rem !important;
  }
  .pt-3_md-only {
    padding-top: 3rem !important;
  }
  .pr-3_md-only {
    padding-right: 3rem !important;
  }
  .pb-3_md-only {
    padding-bottom: 3rem !important;
  }
  .pl-3_md-only {
    padding-left: 3rem !important;
  }
  .px-3_md-only {
    padding-inline: 3rem !important;
  }
  .py-3_md-only {
    padding-block: 3rem !important;
  }
  .p-4_md-only {
    padding: 4rem !important;
  }
  .pt-4_md-only {
    padding-top: 4rem !important;
  }
  .pr-4_md-only {
    padding-right: 4rem !important;
  }
  .pb-4_md-only {
    padding-bottom: 4rem !important;
  }
  .pl-4_md-only {
    padding-left: 4rem !important;
  }
  .px-4_md-only {
    padding-inline: 4rem !important;
  }
  .py-4_md-only {
    padding-block: 4rem !important;
  }
  .p-5_md-only {
    padding: 5rem !important;
  }
  .pt-5_md-only {
    padding-top: 5rem !important;
  }
  .pr-5_md-only {
    padding-right: 5rem !important;
  }
  .pb-5_md-only {
    padding-bottom: 5rem !important;
  }
  .pl-5_md-only {
    padding-left: 5rem !important;
  }
  .px-5_md-only {
    padding-inline: 5rem !important;
  }
  .py-5_md-only {
    padding-block: 5rem !important;
  }
  .p-6_md-only {
    padding: 6rem !important;
  }
  .pt-6_md-only {
    padding-top: 6rem !important;
  }
  .pr-6_md-only {
    padding-right: 6rem !important;
  }
  .pb-6_md-only {
    padding-bottom: 6rem !important;
  }
  .pl-6_md-only {
    padding-left: 6rem !important;
  }
  .px-6_md-only {
    padding-inline: 6rem !important;
  }
  .py-6_md-only {
    padding-block: 6rem !important;
  }
  .p-7_md-only {
    padding: 7rem !important;
  }
  .pt-7_md-only {
    padding-top: 7rem !important;
  }
  .pr-7_md-only {
    padding-right: 7rem !important;
  }
  .pb-7_md-only {
    padding-bottom: 7rem !important;
  }
  .pl-7_md-only {
    padding-left: 7rem !important;
  }
  .px-7_md-only {
    padding-inline: 7rem !important;
  }
  .py-7_md-only {
    padding-block: 7rem !important;
  }
  .p-8_md-only {
    padding: 8rem !important;
  }
  .pt-8_md-only {
    padding-top: 8rem !important;
  }
  .pr-8_md-only {
    padding-right: 8rem !important;
  }
  .pb-8_md-only {
    padding-bottom: 8rem !important;
  }
  .pl-8_md-only {
    padding-left: 8rem !important;
  }
  .px-8_md-only {
    padding-inline: 8rem !important;
  }
  .py-8_md-only {
    padding-block: 8rem !important;
  }
  .p-9_md-only {
    padding: 9rem !important;
  }
  .pt-9_md-only {
    padding-top: 9rem !important;
  }
  .pr-9_md-only {
    padding-right: 9rem !important;
  }
  .pb-9_md-only {
    padding-bottom: 9rem !important;
  }
  .pl-9_md-only {
    padding-left: 9rem !important;
  }
  .px-9_md-only {
    padding-inline: 9rem !important;
  }
  .py-9_md-only {
    padding-block: 9rem !important;
  }
  .p-10_md-only {
    padding: 10rem !important;
  }
  .pt-10_md-only {
    padding-top: 10rem !important;
  }
  .pr-10_md-only {
    padding-right: 10rem !important;
  }
  .pb-10_md-only {
    padding-bottom: 10rem !important;
  }
  .pl-10_md-only {
    padding-left: 10rem !important;
  }
  .px-10_md-only {
    padding-inline: 10rem !important;
  }
  .py-10_md-only {
    padding-block: 10rem !important;
  }
  .m-auto_md-only {
    margin: auto !important;
  }
  .mt-auto_md-only {
    margin-top: auto !important;
  }
  .mr-auto_md-only {
    margin-right: auto !important;
  }
  .mb-auto_md-only {
    margin-bottom: auto !important;
  }
  .ml-auto_md-only {
    margin-left: auto !important;
  }
  .mx-auto_md-only {
    margin-inline: auto !important;
  }
  .my-auto_md-only {
    margin-block: auto !important;
  }
  .float-right_md-only {
    float: right;
  }
  .float-left_md-only {
    float: left;
  }
  .hide_md-only,
  .is-hidden_md-only {
    display: none !important;
    visibility: hidden;
  }
  .border-all_md-only {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_md-only {
    border: 0;
  }
  .border-top_md-only {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_md-only {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_md-only {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_md-only {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_md-only {
    gap: 0;
  }
  .gap-y-0_md-only {
    row-gap: 0;
  }
  .gap-x-0_md-only {
    column-gap: 0;
  }
  .gap-1_md-only {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_md-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_md-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_md-only {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_md-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_md-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_md-only {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_md-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_md-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_md-only {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_md-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_md-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_md-only {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_md-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_md-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_md-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_md-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_md-only {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_md-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_md-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_md-only {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_md-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_md-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_md-only {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 768px) {
  .flex_md {
    display: flex;
  }
  .block_md {
    display: block;
  }
  .inline-block_md {
    display: inline-block;
  }
  .inline_md {
    display: inline;
  }
  .flex-row_md {
    flex-direction: row;
  }
  .flex-row-reverse_md {
    flex-direction: row-reverse;
  }
  .flex-col_md {
    flex-direction: column;
  }
  .flex-col-reverse_md {
    flex-direction: column-reverse;
  }
  .flex-nowrap_md {
    flex-wrap: nowrap;
  }
  .flex-wrap_md {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_md {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_md {
    justify-content: flex-start;
  }
  .flex-justify-end_md {
    justify-content: flex-end;
  }
  .flex-justify-center_md {
    justify-content: center;
  }
  .flex-justify-between_md {
    justify-content: space-between;
  }
  .flex-justify-around_md {
    justify-content: space-around;
  }
  .flex-justify-evenly_md {
    justify-content: space-evenly;
  }
  .flex-items-start_md {
    align-items: flex-start;
  }
  .flex-items-center_md {
    align-items: center;
  }
  .flex-items-end_md {
    align-items: flex-end;
  }
  .flex-items-stretch_md {
    align-items: stretch;
  }
  .flex-items-baseline_md {
    align-items: baseline;
  }
  .flex-content-start_md {
    align-content: flex-start;
  }
  .flex-content-center_md {
    align-content: center;
  }
  .flex-content-end_md {
    align-content: flex-end;
  }
  .flex-content-between_md {
    align-content: space-between;
  }
  .flex-content-around_md {
    align-content: space-around;
  }
  .flex-content-evenly_md {
    align-content: space-evenly;
  }
  .flex-content-stretch_md {
    align-content: stretch;
  }
  .flex-content-baseline_md {
    align-content: baseline;
  }
  .flex-self-auto_md {
    align-self: auto;
  }
  .flex-self-start_md {
    align-self: flex-start;
  }
  .flex-self-center_md {
    align-self: center;
  }
  .flex-self-end_md {
    align-self: flex-end;
  }
  .flex-self-stretch_md {
    align-self: stretch;
  }
  .flex-self-baseline_md {
    align-self: baseline;
  }
  .flex-0_md {
    flex: 0;
  }
  .flex-1_md {
    flex: 1;
  }
  .flex-2_md {
    flex: 2;
  }
  .flex-3_md {
    flex: 3;
  }
  .flex-4_md {
    flex: 4;
  }
  .flex-5_md {
    flex: 5;
  }
  .flex-6_md {
    flex: 6;
  }
  .flex-7_md {
    flex: 7;
  }
  .flex-8_md {
    flex: 8;
  }
  .flex-9_md {
    flex: 9;
  }
  .flex-10_md {
    flex: 10;
  }
  .order-0_md {
    order: 0;
  }
  .order-1_md {
    order: 1;
  }
  .order-2_md {
    order: 2;
  }
  .order-3_md {
    order: 3;
  }
  .order-4_md {
    order: 4;
  }
  .order-5_md {
    order: 5;
  }
  .order-6_md {
    order: 6;
  }
  .order-7_md {
    order: 7;
  }
  .order-8_md {
    order: 8;
  }
  .order-9_md {
    order: 9;
  }
  .order-10_md {
    order: 10;
  }
  .m-half_md {
    margin: 0.5rem !important;
  }
  .mt-half_md {
    margin-top: 0.5rem !important;
  }
  .mr-half_md {
    margin-right: 0.5rem !important;
  }
  .mb-half_md {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_md {
    margin-left: 0.5rem !important;
  }
  .mx-half_md {
    margin-inline: 0.5rem !important;
  }
  .my-half_md {
    margin-block: 0.5rem !important;
  }
  .m-0_md {
    margin: 0rem !important;
  }
  .mt-0_md {
    margin-top: 0rem !important;
  }
  .mr-0_md {
    margin-right: 0rem !important;
  }
  .mb-0_md {
    margin-bottom: 0rem !important;
  }
  .ml-0_md {
    margin-left: 0rem !important;
  }
  .mx-0_md {
    margin-inline: 0rem !important;
  }
  .my-0_md {
    margin-block: 0rem !important;
  }
  .m-1_md {
    margin: 1rem !important;
  }
  .mt-1_md {
    margin-top: 1rem !important;
  }
  .mr-1_md {
    margin-right: 1rem !important;
  }
  .mb-1_md {
    margin-bottom: 1rem !important;
  }
  .ml-1_md {
    margin-left: 1rem !important;
  }
  .mx-1_md {
    margin-inline: 1rem !important;
  }
  .my-1_md {
    margin-block: 1rem !important;
  }
  .m-2_md {
    margin: 2rem !important;
  }
  .mt-2_md {
    margin-top: 2rem !important;
  }
  .mr-2_md {
    margin-right: 2rem !important;
  }
  .mb-2_md {
    margin-bottom: 2rem !important;
  }
  .ml-2_md {
    margin-left: 2rem !important;
  }
  .mx-2_md {
    margin-inline: 2rem !important;
  }
  .my-2_md {
    margin-block: 2rem !important;
  }
  .m-3_md {
    margin: 3rem !important;
  }
  .mt-3_md {
    margin-top: 3rem !important;
  }
  .mr-3_md {
    margin-right: 3rem !important;
  }
  .mb-3_md {
    margin-bottom: 3rem !important;
  }
  .ml-3_md {
    margin-left: 3rem !important;
  }
  .mx-3_md {
    margin-inline: 3rem !important;
  }
  .my-3_md {
    margin-block: 3rem !important;
  }
  .m-4_md {
    margin: 4rem !important;
  }
  .mt-4_md {
    margin-top: 4rem !important;
  }
  .mr-4_md {
    margin-right: 4rem !important;
  }
  .mb-4_md {
    margin-bottom: 4rem !important;
  }
  .ml-4_md {
    margin-left: 4rem !important;
  }
  .mx-4_md {
    margin-inline: 4rem !important;
  }
  .my-4_md {
    margin-block: 4rem !important;
  }
  .m-5_md {
    margin: 5rem !important;
  }
  .mt-5_md {
    margin-top: 5rem !important;
  }
  .mr-5_md {
    margin-right: 5rem !important;
  }
  .mb-5_md {
    margin-bottom: 5rem !important;
  }
  .ml-5_md {
    margin-left: 5rem !important;
  }
  .mx-5_md {
    margin-inline: 5rem !important;
  }
  .my-5_md {
    margin-block: 5rem !important;
  }
  .m-6_md {
    margin: 6rem !important;
  }
  .mt-6_md {
    margin-top: 6rem !important;
  }
  .mr-6_md {
    margin-right: 6rem !important;
  }
  .mb-6_md {
    margin-bottom: 6rem !important;
  }
  .ml-6_md {
    margin-left: 6rem !important;
  }
  .mx-6_md {
    margin-inline: 6rem !important;
  }
  .my-6_md {
    margin-block: 6rem !important;
  }
  .m-7_md {
    margin: 7rem !important;
  }
  .mt-7_md {
    margin-top: 7rem !important;
  }
  .mr-7_md {
    margin-right: 7rem !important;
  }
  .mb-7_md {
    margin-bottom: 7rem !important;
  }
  .ml-7_md {
    margin-left: 7rem !important;
  }
  .mx-7_md {
    margin-inline: 7rem !important;
  }
  .my-7_md {
    margin-block: 7rem !important;
  }
  .m-8_md {
    margin: 8rem !important;
  }
  .mt-8_md {
    margin-top: 8rem !important;
  }
  .mr-8_md {
    margin-right: 8rem !important;
  }
  .mb-8_md {
    margin-bottom: 8rem !important;
  }
  .ml-8_md {
    margin-left: 8rem !important;
  }
  .mx-8_md {
    margin-inline: 8rem !important;
  }
  .my-8_md {
    margin-block: 8rem !important;
  }
  .m-9_md {
    margin: 9rem !important;
  }
  .mt-9_md {
    margin-top: 9rem !important;
  }
  .mr-9_md {
    margin-right: 9rem !important;
  }
  .mb-9_md {
    margin-bottom: 9rem !important;
  }
  .ml-9_md {
    margin-left: 9rem !important;
  }
  .mx-9_md {
    margin-inline: 9rem !important;
  }
  .my-9_md {
    margin-block: 9rem !important;
  }
  .m-10_md {
    margin: 10rem !important;
  }
  .mt-10_md {
    margin-top: 10rem !important;
  }
  .mr-10_md {
    margin-right: 10rem !important;
  }
  .mb-10_md {
    margin-bottom: 10rem !important;
  }
  .ml-10_md {
    margin-left: 10rem !important;
  }
  .mx-10_md {
    margin-inline: 10rem !important;
  }
  .my-10_md {
    margin-block: 10rem !important;
  }
  .p-half_md {
    padding: 0.5rem !important;
  }
  .pt-half_md {
    padding-top: 0.5rem !important;
  }
  .pr-half_md {
    padding-right: 0.5rem !important;
  }
  .pb-half_md {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_md {
    padding-left: 0.5rem !important;
  }
  .px-half_md {
    padding-inline: 0.5rem !important;
  }
  .py-half_md {
    padding-block: 0.5rem !important;
  }
  .p-0_md {
    padding: 0rem !important;
  }
  .pt-0_md {
    padding-top: 0rem !important;
  }
  .pr-0_md {
    padding-right: 0rem !important;
  }
  .pb-0_md {
    padding-bottom: 0rem !important;
  }
  .pl-0_md {
    padding-left: 0rem !important;
  }
  .px-0_md {
    padding-inline: 0rem !important;
  }
  .py-0_md {
    padding-block: 0rem !important;
  }
  .p-1_md {
    padding: 1rem !important;
  }
  .pt-1_md {
    padding-top: 1rem !important;
  }
  .pr-1_md {
    padding-right: 1rem !important;
  }
  .pb-1_md {
    padding-bottom: 1rem !important;
  }
  .pl-1_md {
    padding-left: 1rem !important;
  }
  .px-1_md {
    padding-inline: 1rem !important;
  }
  .py-1_md {
    padding-block: 1rem !important;
  }
  .p-2_md {
    padding: 2rem !important;
  }
  .pt-2_md {
    padding-top: 2rem !important;
  }
  .pr-2_md {
    padding-right: 2rem !important;
  }
  .pb-2_md {
    padding-bottom: 2rem !important;
  }
  .pl-2_md {
    padding-left: 2rem !important;
  }
  .px-2_md {
    padding-inline: 2rem !important;
  }
  .py-2_md {
    padding-block: 2rem !important;
  }
  .p-3_md {
    padding: 3rem !important;
  }
  .pt-3_md {
    padding-top: 3rem !important;
  }
  .pr-3_md {
    padding-right: 3rem !important;
  }
  .pb-3_md {
    padding-bottom: 3rem !important;
  }
  .pl-3_md {
    padding-left: 3rem !important;
  }
  .px-3_md {
    padding-inline: 3rem !important;
  }
  .py-3_md {
    padding-block: 3rem !important;
  }
  .p-4_md {
    padding: 4rem !important;
  }
  .pt-4_md {
    padding-top: 4rem !important;
  }
  .pr-4_md {
    padding-right: 4rem !important;
  }
  .pb-4_md {
    padding-bottom: 4rem !important;
  }
  .pl-4_md {
    padding-left: 4rem !important;
  }
  .px-4_md {
    padding-inline: 4rem !important;
  }
  .py-4_md {
    padding-block: 4rem !important;
  }
  .p-5_md {
    padding: 5rem !important;
  }
  .pt-5_md {
    padding-top: 5rem !important;
  }
  .pr-5_md {
    padding-right: 5rem !important;
  }
  .pb-5_md {
    padding-bottom: 5rem !important;
  }
  .pl-5_md {
    padding-left: 5rem !important;
  }
  .px-5_md {
    padding-inline: 5rem !important;
  }
  .py-5_md {
    padding-block: 5rem !important;
  }
  .p-6_md {
    padding: 6rem !important;
  }
  .pt-6_md {
    padding-top: 6rem !important;
  }
  .pr-6_md {
    padding-right: 6rem !important;
  }
  .pb-6_md {
    padding-bottom: 6rem !important;
  }
  .pl-6_md {
    padding-left: 6rem !important;
  }
  .px-6_md {
    padding-inline: 6rem !important;
  }
  .py-6_md {
    padding-block: 6rem !important;
  }
  .p-7_md {
    padding: 7rem !important;
  }
  .pt-7_md {
    padding-top: 7rem !important;
  }
  .pr-7_md {
    padding-right: 7rem !important;
  }
  .pb-7_md {
    padding-bottom: 7rem !important;
  }
  .pl-7_md {
    padding-left: 7rem !important;
  }
  .px-7_md {
    padding-inline: 7rem !important;
  }
  .py-7_md {
    padding-block: 7rem !important;
  }
  .p-8_md {
    padding: 8rem !important;
  }
  .pt-8_md {
    padding-top: 8rem !important;
  }
  .pr-8_md {
    padding-right: 8rem !important;
  }
  .pb-8_md {
    padding-bottom: 8rem !important;
  }
  .pl-8_md {
    padding-left: 8rem !important;
  }
  .px-8_md {
    padding-inline: 8rem !important;
  }
  .py-8_md {
    padding-block: 8rem !important;
  }
  .p-9_md {
    padding: 9rem !important;
  }
  .pt-9_md {
    padding-top: 9rem !important;
  }
  .pr-9_md {
    padding-right: 9rem !important;
  }
  .pb-9_md {
    padding-bottom: 9rem !important;
  }
  .pl-9_md {
    padding-left: 9rem !important;
  }
  .px-9_md {
    padding-inline: 9rem !important;
  }
  .py-9_md {
    padding-block: 9rem !important;
  }
  .p-10_md {
    padding: 10rem !important;
  }
  .pt-10_md {
    padding-top: 10rem !important;
  }
  .pr-10_md {
    padding-right: 10rem !important;
  }
  .pb-10_md {
    padding-bottom: 10rem !important;
  }
  .pl-10_md {
    padding-left: 10rem !important;
  }
  .px-10_md {
    padding-inline: 10rem !important;
  }
  .py-10_md {
    padding-block: 10rem !important;
  }
  .m-auto_md {
    margin: auto !important;
  }
  .mt-auto_md {
    margin-top: auto !important;
  }
  .mr-auto_md {
    margin-right: auto !important;
  }
  .mb-auto_md {
    margin-bottom: auto !important;
  }
  .ml-auto_md {
    margin-left: auto !important;
  }
  .mx-auto_md {
    margin-inline: auto !important;
  }
  .my-auto_md {
    margin-block: auto !important;
  }
  .float-right_md {
    float: right;
  }
  .float-left_md {
    float: left;
  }
  .hide_md,
  .is-hidden_md {
    display: none !important;
    visibility: hidden;
  }
  .border-all_md {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_md {
    border: 0;
  }
  .border-top_md {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_md {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_md {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_md {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_md {
    gap: 0;
  }
  .gap-y-0_md {
    row-gap: 0;
  }
  .gap-x-0_md {
    column-gap: 0;
  }
  .gap-1_md {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_md {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_md {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_md {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_md {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_md {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_md {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_md {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_md {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_md {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_md {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_md {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_md {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_md {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_md {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_md {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_md {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_md {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_md {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_md {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_md {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_md {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_md {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_md {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 1024px) and (width < 1280px) {
  .flex_lg-only {
    display: flex;
  }
  .block_lg-only {
    display: block;
  }
  .inline-block_lg-only {
    display: inline-block;
  }
  .inline_lg-only {
    display: inline;
  }
  .flex-row_lg-only {
    flex-direction: row;
  }
  .flex-row-reverse_lg-only {
    flex-direction: row-reverse;
  }
  .flex-col_lg-only {
    flex-direction: column;
  }
  .flex-col-reverse_lg-only {
    flex-direction: column-reverse;
  }
  .flex-nowrap_lg-only {
    flex-wrap: nowrap;
  }
  .flex-wrap_lg-only {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_lg-only {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_lg-only {
    justify-content: flex-start;
  }
  .flex-justify-end_lg-only {
    justify-content: flex-end;
  }
  .flex-justify-center_lg-only {
    justify-content: center;
  }
  .flex-justify-between_lg-only {
    justify-content: space-between;
  }
  .flex-justify-around_lg-only {
    justify-content: space-around;
  }
  .flex-justify-evenly_lg-only {
    justify-content: space-evenly;
  }
  .flex-items-start_lg-only {
    align-items: flex-start;
  }
  .flex-items-center_lg-only {
    align-items: center;
  }
  .flex-items-end_lg-only {
    align-items: flex-end;
  }
  .flex-items-stretch_lg-only {
    align-items: stretch;
  }
  .flex-items-baseline_lg-only {
    align-items: baseline;
  }
  .flex-content-start_lg-only {
    align-content: flex-start;
  }
  .flex-content-center_lg-only {
    align-content: center;
  }
  .flex-content-end_lg-only {
    align-content: flex-end;
  }
  .flex-content-between_lg-only {
    align-content: space-between;
  }
  .flex-content-around_lg-only {
    align-content: space-around;
  }
  .flex-content-evenly_lg-only {
    align-content: space-evenly;
  }
  .flex-content-stretch_lg-only {
    align-content: stretch;
  }
  .flex-content-baseline_lg-only {
    align-content: baseline;
  }
  .flex-self-auto_lg-only {
    align-self: auto;
  }
  .flex-self-start_lg-only {
    align-self: flex-start;
  }
  .flex-self-center_lg-only {
    align-self: center;
  }
  .flex-self-end_lg-only {
    align-self: flex-end;
  }
  .flex-self-stretch_lg-only {
    align-self: stretch;
  }
  .flex-self-baseline_lg-only {
    align-self: baseline;
  }
  .flex-0_lg-only {
    flex: 0;
  }
  .flex-1_lg-only {
    flex: 1;
  }
  .flex-2_lg-only {
    flex: 2;
  }
  .flex-3_lg-only {
    flex: 3;
  }
  .flex-4_lg-only {
    flex: 4;
  }
  .flex-5_lg-only {
    flex: 5;
  }
  .flex-6_lg-only {
    flex: 6;
  }
  .flex-7_lg-only {
    flex: 7;
  }
  .flex-8_lg-only {
    flex: 8;
  }
  .flex-9_lg-only {
    flex: 9;
  }
  .flex-10_lg-only {
    flex: 10;
  }
  .order-0_lg-only {
    order: 0;
  }
  .order-1_lg-only {
    order: 1;
  }
  .order-2_lg-only {
    order: 2;
  }
  .order-3_lg-only {
    order: 3;
  }
  .order-4_lg-only {
    order: 4;
  }
  .order-5_lg-only {
    order: 5;
  }
  .order-6_lg-only {
    order: 6;
  }
  .order-7_lg-only {
    order: 7;
  }
  .order-8_lg-only {
    order: 8;
  }
  .order-9_lg-only {
    order: 9;
  }
  .order-10_lg-only {
    order: 10;
  }
  .m-half_lg-only {
    margin: 0.5rem !important;
  }
  .mt-half_lg-only {
    margin-top: 0.5rem !important;
  }
  .mr-half_lg-only {
    margin-right: 0.5rem !important;
  }
  .mb-half_lg-only {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_lg-only {
    margin-left: 0.5rem !important;
  }
  .mx-half_lg-only {
    margin-inline: 0.5rem !important;
  }
  .my-half_lg-only {
    margin-block: 0.5rem !important;
  }
  .m-0_lg-only {
    margin: 0rem !important;
  }
  .mt-0_lg-only {
    margin-top: 0rem !important;
  }
  .mr-0_lg-only {
    margin-right: 0rem !important;
  }
  .mb-0_lg-only {
    margin-bottom: 0rem !important;
  }
  .ml-0_lg-only {
    margin-left: 0rem !important;
  }
  .mx-0_lg-only {
    margin-inline: 0rem !important;
  }
  .my-0_lg-only {
    margin-block: 0rem !important;
  }
  .m-1_lg-only {
    margin: 1rem !important;
  }
  .mt-1_lg-only {
    margin-top: 1rem !important;
  }
  .mr-1_lg-only {
    margin-right: 1rem !important;
  }
  .mb-1_lg-only {
    margin-bottom: 1rem !important;
  }
  .ml-1_lg-only {
    margin-left: 1rem !important;
  }
  .mx-1_lg-only {
    margin-inline: 1rem !important;
  }
  .my-1_lg-only {
    margin-block: 1rem !important;
  }
  .m-2_lg-only {
    margin: 2rem !important;
  }
  .mt-2_lg-only {
    margin-top: 2rem !important;
  }
  .mr-2_lg-only {
    margin-right: 2rem !important;
  }
  .mb-2_lg-only {
    margin-bottom: 2rem !important;
  }
  .ml-2_lg-only {
    margin-left: 2rem !important;
  }
  .mx-2_lg-only {
    margin-inline: 2rem !important;
  }
  .my-2_lg-only {
    margin-block: 2rem !important;
  }
  .m-3_lg-only {
    margin: 3rem !important;
  }
  .mt-3_lg-only {
    margin-top: 3rem !important;
  }
  .mr-3_lg-only {
    margin-right: 3rem !important;
  }
  .mb-3_lg-only {
    margin-bottom: 3rem !important;
  }
  .ml-3_lg-only {
    margin-left: 3rem !important;
  }
  .mx-3_lg-only {
    margin-inline: 3rem !important;
  }
  .my-3_lg-only {
    margin-block: 3rem !important;
  }
  .m-4_lg-only {
    margin: 4rem !important;
  }
  .mt-4_lg-only {
    margin-top: 4rem !important;
  }
  .mr-4_lg-only {
    margin-right: 4rem !important;
  }
  .mb-4_lg-only {
    margin-bottom: 4rem !important;
  }
  .ml-4_lg-only {
    margin-left: 4rem !important;
  }
  .mx-4_lg-only {
    margin-inline: 4rem !important;
  }
  .my-4_lg-only {
    margin-block: 4rem !important;
  }
  .m-5_lg-only {
    margin: 5rem !important;
  }
  .mt-5_lg-only {
    margin-top: 5rem !important;
  }
  .mr-5_lg-only {
    margin-right: 5rem !important;
  }
  .mb-5_lg-only {
    margin-bottom: 5rem !important;
  }
  .ml-5_lg-only {
    margin-left: 5rem !important;
  }
  .mx-5_lg-only {
    margin-inline: 5rem !important;
  }
  .my-5_lg-only {
    margin-block: 5rem !important;
  }
  .m-6_lg-only {
    margin: 6rem !important;
  }
  .mt-6_lg-only {
    margin-top: 6rem !important;
  }
  .mr-6_lg-only {
    margin-right: 6rem !important;
  }
  .mb-6_lg-only {
    margin-bottom: 6rem !important;
  }
  .ml-6_lg-only {
    margin-left: 6rem !important;
  }
  .mx-6_lg-only {
    margin-inline: 6rem !important;
  }
  .my-6_lg-only {
    margin-block: 6rem !important;
  }
  .m-7_lg-only {
    margin: 7rem !important;
  }
  .mt-7_lg-only {
    margin-top: 7rem !important;
  }
  .mr-7_lg-only {
    margin-right: 7rem !important;
  }
  .mb-7_lg-only {
    margin-bottom: 7rem !important;
  }
  .ml-7_lg-only {
    margin-left: 7rem !important;
  }
  .mx-7_lg-only {
    margin-inline: 7rem !important;
  }
  .my-7_lg-only {
    margin-block: 7rem !important;
  }
  .m-8_lg-only {
    margin: 8rem !important;
  }
  .mt-8_lg-only {
    margin-top: 8rem !important;
  }
  .mr-8_lg-only {
    margin-right: 8rem !important;
  }
  .mb-8_lg-only {
    margin-bottom: 8rem !important;
  }
  .ml-8_lg-only {
    margin-left: 8rem !important;
  }
  .mx-8_lg-only {
    margin-inline: 8rem !important;
  }
  .my-8_lg-only {
    margin-block: 8rem !important;
  }
  .m-9_lg-only {
    margin: 9rem !important;
  }
  .mt-9_lg-only {
    margin-top: 9rem !important;
  }
  .mr-9_lg-only {
    margin-right: 9rem !important;
  }
  .mb-9_lg-only {
    margin-bottom: 9rem !important;
  }
  .ml-9_lg-only {
    margin-left: 9rem !important;
  }
  .mx-9_lg-only {
    margin-inline: 9rem !important;
  }
  .my-9_lg-only {
    margin-block: 9rem !important;
  }
  .m-10_lg-only {
    margin: 10rem !important;
  }
  .mt-10_lg-only {
    margin-top: 10rem !important;
  }
  .mr-10_lg-only {
    margin-right: 10rem !important;
  }
  .mb-10_lg-only {
    margin-bottom: 10rem !important;
  }
  .ml-10_lg-only {
    margin-left: 10rem !important;
  }
  .mx-10_lg-only {
    margin-inline: 10rem !important;
  }
  .my-10_lg-only {
    margin-block: 10rem !important;
  }
  .p-half_lg-only {
    padding: 0.5rem !important;
  }
  .pt-half_lg-only {
    padding-top: 0.5rem !important;
  }
  .pr-half_lg-only {
    padding-right: 0.5rem !important;
  }
  .pb-half_lg-only {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_lg-only {
    padding-left: 0.5rem !important;
  }
  .px-half_lg-only {
    padding-inline: 0.5rem !important;
  }
  .py-half_lg-only {
    padding-block: 0.5rem !important;
  }
  .p-0_lg-only {
    padding: 0rem !important;
  }
  .pt-0_lg-only {
    padding-top: 0rem !important;
  }
  .pr-0_lg-only {
    padding-right: 0rem !important;
  }
  .pb-0_lg-only {
    padding-bottom: 0rem !important;
  }
  .pl-0_lg-only {
    padding-left: 0rem !important;
  }
  .px-0_lg-only {
    padding-inline: 0rem !important;
  }
  .py-0_lg-only {
    padding-block: 0rem !important;
  }
  .p-1_lg-only {
    padding: 1rem !important;
  }
  .pt-1_lg-only {
    padding-top: 1rem !important;
  }
  .pr-1_lg-only {
    padding-right: 1rem !important;
  }
  .pb-1_lg-only {
    padding-bottom: 1rem !important;
  }
  .pl-1_lg-only {
    padding-left: 1rem !important;
  }
  .px-1_lg-only {
    padding-inline: 1rem !important;
  }
  .py-1_lg-only {
    padding-block: 1rem !important;
  }
  .p-2_lg-only {
    padding: 2rem !important;
  }
  .pt-2_lg-only {
    padding-top: 2rem !important;
  }
  .pr-2_lg-only {
    padding-right: 2rem !important;
  }
  .pb-2_lg-only {
    padding-bottom: 2rem !important;
  }
  .pl-2_lg-only {
    padding-left: 2rem !important;
  }
  .px-2_lg-only {
    padding-inline: 2rem !important;
  }
  .py-2_lg-only {
    padding-block: 2rem !important;
  }
  .p-3_lg-only {
    padding: 3rem !important;
  }
  .pt-3_lg-only {
    padding-top: 3rem !important;
  }
  .pr-3_lg-only {
    padding-right: 3rem !important;
  }
  .pb-3_lg-only {
    padding-bottom: 3rem !important;
  }
  .pl-3_lg-only {
    padding-left: 3rem !important;
  }
  .px-3_lg-only {
    padding-inline: 3rem !important;
  }
  .py-3_lg-only {
    padding-block: 3rem !important;
  }
  .p-4_lg-only {
    padding: 4rem !important;
  }
  .pt-4_lg-only {
    padding-top: 4rem !important;
  }
  .pr-4_lg-only {
    padding-right: 4rem !important;
  }
  .pb-4_lg-only {
    padding-bottom: 4rem !important;
  }
  .pl-4_lg-only {
    padding-left: 4rem !important;
  }
  .px-4_lg-only {
    padding-inline: 4rem !important;
  }
  .py-4_lg-only {
    padding-block: 4rem !important;
  }
  .p-5_lg-only {
    padding: 5rem !important;
  }
  .pt-5_lg-only {
    padding-top: 5rem !important;
  }
  .pr-5_lg-only {
    padding-right: 5rem !important;
  }
  .pb-5_lg-only {
    padding-bottom: 5rem !important;
  }
  .pl-5_lg-only {
    padding-left: 5rem !important;
  }
  .px-5_lg-only {
    padding-inline: 5rem !important;
  }
  .py-5_lg-only {
    padding-block: 5rem !important;
  }
  .p-6_lg-only {
    padding: 6rem !important;
  }
  .pt-6_lg-only {
    padding-top: 6rem !important;
  }
  .pr-6_lg-only {
    padding-right: 6rem !important;
  }
  .pb-6_lg-only {
    padding-bottom: 6rem !important;
  }
  .pl-6_lg-only {
    padding-left: 6rem !important;
  }
  .px-6_lg-only {
    padding-inline: 6rem !important;
  }
  .py-6_lg-only {
    padding-block: 6rem !important;
  }
  .p-7_lg-only {
    padding: 7rem !important;
  }
  .pt-7_lg-only {
    padding-top: 7rem !important;
  }
  .pr-7_lg-only {
    padding-right: 7rem !important;
  }
  .pb-7_lg-only {
    padding-bottom: 7rem !important;
  }
  .pl-7_lg-only {
    padding-left: 7rem !important;
  }
  .px-7_lg-only {
    padding-inline: 7rem !important;
  }
  .py-7_lg-only {
    padding-block: 7rem !important;
  }
  .p-8_lg-only {
    padding: 8rem !important;
  }
  .pt-8_lg-only {
    padding-top: 8rem !important;
  }
  .pr-8_lg-only {
    padding-right: 8rem !important;
  }
  .pb-8_lg-only {
    padding-bottom: 8rem !important;
  }
  .pl-8_lg-only {
    padding-left: 8rem !important;
  }
  .px-8_lg-only {
    padding-inline: 8rem !important;
  }
  .py-8_lg-only {
    padding-block: 8rem !important;
  }
  .p-9_lg-only {
    padding: 9rem !important;
  }
  .pt-9_lg-only {
    padding-top: 9rem !important;
  }
  .pr-9_lg-only {
    padding-right: 9rem !important;
  }
  .pb-9_lg-only {
    padding-bottom: 9rem !important;
  }
  .pl-9_lg-only {
    padding-left: 9rem !important;
  }
  .px-9_lg-only {
    padding-inline: 9rem !important;
  }
  .py-9_lg-only {
    padding-block: 9rem !important;
  }
  .p-10_lg-only {
    padding: 10rem !important;
  }
  .pt-10_lg-only {
    padding-top: 10rem !important;
  }
  .pr-10_lg-only {
    padding-right: 10rem !important;
  }
  .pb-10_lg-only {
    padding-bottom: 10rem !important;
  }
  .pl-10_lg-only {
    padding-left: 10rem !important;
  }
  .px-10_lg-only {
    padding-inline: 10rem !important;
  }
  .py-10_lg-only {
    padding-block: 10rem !important;
  }
  .m-auto_lg-only {
    margin: auto !important;
  }
  .mt-auto_lg-only {
    margin-top: auto !important;
  }
  .mr-auto_lg-only {
    margin-right: auto !important;
  }
  .mb-auto_lg-only {
    margin-bottom: auto !important;
  }
  .ml-auto_lg-only {
    margin-left: auto !important;
  }
  .mx-auto_lg-only {
    margin-inline: auto !important;
  }
  .my-auto_lg-only {
    margin-block: auto !important;
  }
  .float-right_lg-only {
    float: right;
  }
  .float-left_lg-only {
    float: left;
  }
  .hide_lg-only,
  .is-hidden_lg-only {
    display: none !important;
    visibility: hidden;
  }
  .border-all_lg-only {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_lg-only {
    border: 0;
  }
  .border-top_lg-only {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_lg-only {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_lg-only {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_lg-only {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_lg-only {
    gap: 0;
  }
  .gap-y-0_lg-only {
    row-gap: 0;
  }
  .gap-x-0_lg-only {
    column-gap: 0;
  }
  .gap-1_lg-only {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_lg-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_lg-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_lg-only {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_lg-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_lg-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_lg-only {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_lg-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_lg-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_lg-only {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_lg-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_lg-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_lg-only {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_lg-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_lg-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_lg-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_lg-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_lg-only {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_lg-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_lg-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_lg-only {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_lg-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_lg-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_lg-only {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 1024px) {
  .flex_lg {
    display: flex;
  }
  .block_lg {
    display: block;
  }
  .inline-block_lg {
    display: inline-block;
  }
  .inline_lg {
    display: inline;
  }
  .flex-row_lg {
    flex-direction: row;
  }
  .flex-row-reverse_lg {
    flex-direction: row-reverse;
  }
  .flex-col_lg {
    flex-direction: column;
  }
  .flex-col-reverse_lg {
    flex-direction: column-reverse;
  }
  .flex-nowrap_lg {
    flex-wrap: nowrap;
  }
  .flex-wrap_lg {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_lg {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_lg {
    justify-content: flex-start;
  }
  .flex-justify-end_lg {
    justify-content: flex-end;
  }
  .flex-justify-center_lg {
    justify-content: center;
  }
  .flex-justify-between_lg {
    justify-content: space-between;
  }
  .flex-justify-around_lg {
    justify-content: space-around;
  }
  .flex-justify-evenly_lg {
    justify-content: space-evenly;
  }
  .flex-items-start_lg {
    align-items: flex-start;
  }
  .flex-items-center_lg {
    align-items: center;
  }
  .flex-items-end_lg {
    align-items: flex-end;
  }
  .flex-items-stretch_lg {
    align-items: stretch;
  }
  .flex-items-baseline_lg {
    align-items: baseline;
  }
  .flex-content-start_lg {
    align-content: flex-start;
  }
  .flex-content-center_lg {
    align-content: center;
  }
  .flex-content-end_lg {
    align-content: flex-end;
  }
  .flex-content-between_lg {
    align-content: space-between;
  }
  .flex-content-around_lg {
    align-content: space-around;
  }
  .flex-content-evenly_lg {
    align-content: space-evenly;
  }
  .flex-content-stretch_lg {
    align-content: stretch;
  }
  .flex-content-baseline_lg {
    align-content: baseline;
  }
  .flex-self-auto_lg {
    align-self: auto;
  }
  .flex-self-start_lg {
    align-self: flex-start;
  }
  .flex-self-center_lg {
    align-self: center;
  }
  .flex-self-end_lg {
    align-self: flex-end;
  }
  .flex-self-stretch_lg {
    align-self: stretch;
  }
  .flex-self-baseline_lg {
    align-self: baseline;
  }
  .flex-0_lg {
    flex: 0;
  }
  .flex-1_lg {
    flex: 1;
  }
  .flex-2_lg {
    flex: 2;
  }
  .flex-3_lg {
    flex: 3;
  }
  .flex-4_lg {
    flex: 4;
  }
  .flex-5_lg {
    flex: 5;
  }
  .flex-6_lg {
    flex: 6;
  }
  .flex-7_lg {
    flex: 7;
  }
  .flex-8_lg {
    flex: 8;
  }
  .flex-9_lg {
    flex: 9;
  }
  .flex-10_lg {
    flex: 10;
  }
  .order-0_lg {
    order: 0;
  }
  .order-1_lg {
    order: 1;
  }
  .order-2_lg {
    order: 2;
  }
  .order-3_lg {
    order: 3;
  }
  .order-4_lg {
    order: 4;
  }
  .order-5_lg {
    order: 5;
  }
  .order-6_lg {
    order: 6;
  }
  .order-7_lg {
    order: 7;
  }
  .order-8_lg {
    order: 8;
  }
  .order-9_lg {
    order: 9;
  }
  .order-10_lg {
    order: 10;
  }
  .m-half_lg {
    margin: 0.5rem !important;
  }
  .mt-half_lg {
    margin-top: 0.5rem !important;
  }
  .mr-half_lg {
    margin-right: 0.5rem !important;
  }
  .mb-half_lg {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_lg {
    margin-left: 0.5rem !important;
  }
  .mx-half_lg {
    margin-inline: 0.5rem !important;
  }
  .my-half_lg {
    margin-block: 0.5rem !important;
  }
  .m-0_lg {
    margin: 0rem !important;
  }
  .mt-0_lg {
    margin-top: 0rem !important;
  }
  .mr-0_lg {
    margin-right: 0rem !important;
  }
  .mb-0_lg {
    margin-bottom: 0rem !important;
  }
  .ml-0_lg {
    margin-left: 0rem !important;
  }
  .mx-0_lg {
    margin-inline: 0rem !important;
  }
  .my-0_lg {
    margin-block: 0rem !important;
  }
  .m-1_lg {
    margin: 1rem !important;
  }
  .mt-1_lg {
    margin-top: 1rem !important;
  }
  .mr-1_lg {
    margin-right: 1rem !important;
  }
  .mb-1_lg {
    margin-bottom: 1rem !important;
  }
  .ml-1_lg {
    margin-left: 1rem !important;
  }
  .mx-1_lg {
    margin-inline: 1rem !important;
  }
  .my-1_lg {
    margin-block: 1rem !important;
  }
  .m-2_lg {
    margin: 2rem !important;
  }
  .mt-2_lg {
    margin-top: 2rem !important;
  }
  .mr-2_lg {
    margin-right: 2rem !important;
  }
  .mb-2_lg {
    margin-bottom: 2rem !important;
  }
  .ml-2_lg {
    margin-left: 2rem !important;
  }
  .mx-2_lg {
    margin-inline: 2rem !important;
  }
  .my-2_lg {
    margin-block: 2rem !important;
  }
  .m-3_lg {
    margin: 3rem !important;
  }
  .mt-3_lg {
    margin-top: 3rem !important;
  }
  .mr-3_lg {
    margin-right: 3rem !important;
  }
  .mb-3_lg {
    margin-bottom: 3rem !important;
  }
  .ml-3_lg {
    margin-left: 3rem !important;
  }
  .mx-3_lg {
    margin-inline: 3rem !important;
  }
  .my-3_lg {
    margin-block: 3rem !important;
  }
  .m-4_lg {
    margin: 4rem !important;
  }
  .mt-4_lg {
    margin-top: 4rem !important;
  }
  .mr-4_lg {
    margin-right: 4rem !important;
  }
  .mb-4_lg {
    margin-bottom: 4rem !important;
  }
  .ml-4_lg {
    margin-left: 4rem !important;
  }
  .mx-4_lg {
    margin-inline: 4rem !important;
  }
  .my-4_lg {
    margin-block: 4rem !important;
  }
  .m-5_lg {
    margin: 5rem !important;
  }
  .mt-5_lg {
    margin-top: 5rem !important;
  }
  .mr-5_lg {
    margin-right: 5rem !important;
  }
  .mb-5_lg {
    margin-bottom: 5rem !important;
  }
  .ml-5_lg {
    margin-left: 5rem !important;
  }
  .mx-5_lg {
    margin-inline: 5rem !important;
  }
  .my-5_lg {
    margin-block: 5rem !important;
  }
  .m-6_lg {
    margin: 6rem !important;
  }
  .mt-6_lg {
    margin-top: 6rem !important;
  }
  .mr-6_lg {
    margin-right: 6rem !important;
  }
  .mb-6_lg {
    margin-bottom: 6rem !important;
  }
  .ml-6_lg {
    margin-left: 6rem !important;
  }
  .mx-6_lg {
    margin-inline: 6rem !important;
  }
  .my-6_lg {
    margin-block: 6rem !important;
  }
  .m-7_lg {
    margin: 7rem !important;
  }
  .mt-7_lg {
    margin-top: 7rem !important;
  }
  .mr-7_lg {
    margin-right: 7rem !important;
  }
  .mb-7_lg {
    margin-bottom: 7rem !important;
  }
  .ml-7_lg {
    margin-left: 7rem !important;
  }
  .mx-7_lg {
    margin-inline: 7rem !important;
  }
  .my-7_lg {
    margin-block: 7rem !important;
  }
  .m-8_lg {
    margin: 8rem !important;
  }
  .mt-8_lg {
    margin-top: 8rem !important;
  }
  .mr-8_lg {
    margin-right: 8rem !important;
  }
  .mb-8_lg {
    margin-bottom: 8rem !important;
  }
  .ml-8_lg {
    margin-left: 8rem !important;
  }
  .mx-8_lg {
    margin-inline: 8rem !important;
  }
  .my-8_lg {
    margin-block: 8rem !important;
  }
  .m-9_lg {
    margin: 9rem !important;
  }
  .mt-9_lg {
    margin-top: 9rem !important;
  }
  .mr-9_lg {
    margin-right: 9rem !important;
  }
  .mb-9_lg {
    margin-bottom: 9rem !important;
  }
  .ml-9_lg {
    margin-left: 9rem !important;
  }
  .mx-9_lg {
    margin-inline: 9rem !important;
  }
  .my-9_lg {
    margin-block: 9rem !important;
  }
  .m-10_lg {
    margin: 10rem !important;
  }
  .mt-10_lg {
    margin-top: 10rem !important;
  }
  .mr-10_lg {
    margin-right: 10rem !important;
  }
  .mb-10_lg {
    margin-bottom: 10rem !important;
  }
  .ml-10_lg {
    margin-left: 10rem !important;
  }
  .mx-10_lg {
    margin-inline: 10rem !important;
  }
  .my-10_lg {
    margin-block: 10rem !important;
  }
  .p-half_lg {
    padding: 0.5rem !important;
  }
  .pt-half_lg {
    padding-top: 0.5rem !important;
  }
  .pr-half_lg {
    padding-right: 0.5rem !important;
  }
  .pb-half_lg {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_lg {
    padding-left: 0.5rem !important;
  }
  .px-half_lg {
    padding-inline: 0.5rem !important;
  }
  .py-half_lg {
    padding-block: 0.5rem !important;
  }
  .p-0_lg {
    padding: 0rem !important;
  }
  .pt-0_lg {
    padding-top: 0rem !important;
  }
  .pr-0_lg {
    padding-right: 0rem !important;
  }
  .pb-0_lg {
    padding-bottom: 0rem !important;
  }
  .pl-0_lg {
    padding-left: 0rem !important;
  }
  .px-0_lg {
    padding-inline: 0rem !important;
  }
  .py-0_lg {
    padding-block: 0rem !important;
  }
  .p-1_lg {
    padding: 1rem !important;
  }
  .pt-1_lg {
    padding-top: 1rem !important;
  }
  .pr-1_lg {
    padding-right: 1rem !important;
  }
  .pb-1_lg {
    padding-bottom: 1rem !important;
  }
  .pl-1_lg {
    padding-left: 1rem !important;
  }
  .px-1_lg {
    padding-inline: 1rem !important;
  }
  .py-1_lg {
    padding-block: 1rem !important;
  }
  .p-2_lg {
    padding: 2rem !important;
  }
  .pt-2_lg {
    padding-top: 2rem !important;
  }
  .pr-2_lg {
    padding-right: 2rem !important;
  }
  .pb-2_lg {
    padding-bottom: 2rem !important;
  }
  .pl-2_lg {
    padding-left: 2rem !important;
  }
  .px-2_lg {
    padding-inline: 2rem !important;
  }
  .py-2_lg {
    padding-block: 2rem !important;
  }
  .p-3_lg {
    padding: 3rem !important;
  }
  .pt-3_lg {
    padding-top: 3rem !important;
  }
  .pr-3_lg {
    padding-right: 3rem !important;
  }
  .pb-3_lg {
    padding-bottom: 3rem !important;
  }
  .pl-3_lg {
    padding-left: 3rem !important;
  }
  .px-3_lg {
    padding-inline: 3rem !important;
  }
  .py-3_lg {
    padding-block: 3rem !important;
  }
  .p-4_lg {
    padding: 4rem !important;
  }
  .pt-4_lg {
    padding-top: 4rem !important;
  }
  .pr-4_lg {
    padding-right: 4rem !important;
  }
  .pb-4_lg {
    padding-bottom: 4rem !important;
  }
  .pl-4_lg {
    padding-left: 4rem !important;
  }
  .px-4_lg {
    padding-inline: 4rem !important;
  }
  .py-4_lg {
    padding-block: 4rem !important;
  }
  .p-5_lg {
    padding: 5rem !important;
  }
  .pt-5_lg {
    padding-top: 5rem !important;
  }
  .pr-5_lg {
    padding-right: 5rem !important;
  }
  .pb-5_lg {
    padding-bottom: 5rem !important;
  }
  .pl-5_lg {
    padding-left: 5rem !important;
  }
  .px-5_lg {
    padding-inline: 5rem !important;
  }
  .py-5_lg {
    padding-block: 5rem !important;
  }
  .p-6_lg {
    padding: 6rem !important;
  }
  .pt-6_lg {
    padding-top: 6rem !important;
  }
  .pr-6_lg {
    padding-right: 6rem !important;
  }
  .pb-6_lg {
    padding-bottom: 6rem !important;
  }
  .pl-6_lg {
    padding-left: 6rem !important;
  }
  .px-6_lg {
    padding-inline: 6rem !important;
  }
  .py-6_lg {
    padding-block: 6rem !important;
  }
  .p-7_lg {
    padding: 7rem !important;
  }
  .pt-7_lg {
    padding-top: 7rem !important;
  }
  .pr-7_lg {
    padding-right: 7rem !important;
  }
  .pb-7_lg {
    padding-bottom: 7rem !important;
  }
  .pl-7_lg {
    padding-left: 7rem !important;
  }
  .px-7_lg {
    padding-inline: 7rem !important;
  }
  .py-7_lg {
    padding-block: 7rem !important;
  }
  .p-8_lg {
    padding: 8rem !important;
  }
  .pt-8_lg {
    padding-top: 8rem !important;
  }
  .pr-8_lg {
    padding-right: 8rem !important;
  }
  .pb-8_lg {
    padding-bottom: 8rem !important;
  }
  .pl-8_lg {
    padding-left: 8rem !important;
  }
  .px-8_lg {
    padding-inline: 8rem !important;
  }
  .py-8_lg {
    padding-block: 8rem !important;
  }
  .p-9_lg {
    padding: 9rem !important;
  }
  .pt-9_lg {
    padding-top: 9rem !important;
  }
  .pr-9_lg {
    padding-right: 9rem !important;
  }
  .pb-9_lg {
    padding-bottom: 9rem !important;
  }
  .pl-9_lg {
    padding-left: 9rem !important;
  }
  .px-9_lg {
    padding-inline: 9rem !important;
  }
  .py-9_lg {
    padding-block: 9rem !important;
  }
  .p-10_lg {
    padding: 10rem !important;
  }
  .pt-10_lg {
    padding-top: 10rem !important;
  }
  .pr-10_lg {
    padding-right: 10rem !important;
  }
  .pb-10_lg {
    padding-bottom: 10rem !important;
  }
  .pl-10_lg {
    padding-left: 10rem !important;
  }
  .px-10_lg {
    padding-inline: 10rem !important;
  }
  .py-10_lg {
    padding-block: 10rem !important;
  }
  .m-auto_lg {
    margin: auto !important;
  }
  .mt-auto_lg {
    margin-top: auto !important;
  }
  .mr-auto_lg {
    margin-right: auto !important;
  }
  .mb-auto_lg {
    margin-bottom: auto !important;
  }
  .ml-auto_lg {
    margin-left: auto !important;
  }
  .mx-auto_lg {
    margin-inline: auto !important;
  }
  .my-auto_lg {
    margin-block: auto !important;
  }
  .float-right_lg {
    float: right;
  }
  .float-left_lg {
    float: left;
  }
  .hide_lg,
  .is-hidden_lg {
    display: none !important;
    visibility: hidden;
  }
  .border-all_lg {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_lg {
    border: 0;
  }
  .border-top_lg {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_lg {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_lg {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_lg {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_lg {
    gap: 0;
  }
  .gap-y-0_lg {
    row-gap: 0;
  }
  .gap-x-0_lg {
    column-gap: 0;
  }
  .gap-1_lg {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_lg {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_lg {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_lg {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_lg {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_lg {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_lg {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_lg {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_lg {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_lg {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_lg {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_lg {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_lg {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_lg {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_lg {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_lg {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_lg {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_lg {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_lg {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_lg {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_lg {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_lg {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_lg {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_lg {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 1280px) and (width < 1536px) {
  .flex_xl-only {
    display: flex;
  }
  .block_xl-only {
    display: block;
  }
  .inline-block_xl-only {
    display: inline-block;
  }
  .inline_xl-only {
    display: inline;
  }
  .flex-row_xl-only {
    flex-direction: row;
  }
  .flex-row-reverse_xl-only {
    flex-direction: row-reverse;
  }
  .flex-col_xl-only {
    flex-direction: column;
  }
  .flex-col-reverse_xl-only {
    flex-direction: column-reverse;
  }
  .flex-nowrap_xl-only {
    flex-wrap: nowrap;
  }
  .flex-wrap_xl-only {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_xl-only {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_xl-only {
    justify-content: flex-start;
  }
  .flex-justify-end_xl-only {
    justify-content: flex-end;
  }
  .flex-justify-center_xl-only {
    justify-content: center;
  }
  .flex-justify-between_xl-only {
    justify-content: space-between;
  }
  .flex-justify-around_xl-only {
    justify-content: space-around;
  }
  .flex-justify-evenly_xl-only {
    justify-content: space-evenly;
  }
  .flex-items-start_xl-only {
    align-items: flex-start;
  }
  .flex-items-center_xl-only {
    align-items: center;
  }
  .flex-items-end_xl-only {
    align-items: flex-end;
  }
  .flex-items-stretch_xl-only {
    align-items: stretch;
  }
  .flex-items-baseline_xl-only {
    align-items: baseline;
  }
  .flex-content-start_xl-only {
    align-content: flex-start;
  }
  .flex-content-center_xl-only {
    align-content: center;
  }
  .flex-content-end_xl-only {
    align-content: flex-end;
  }
  .flex-content-between_xl-only {
    align-content: space-between;
  }
  .flex-content-around_xl-only {
    align-content: space-around;
  }
  .flex-content-evenly_xl-only {
    align-content: space-evenly;
  }
  .flex-content-stretch_xl-only {
    align-content: stretch;
  }
  .flex-content-baseline_xl-only {
    align-content: baseline;
  }
  .flex-self-auto_xl-only {
    align-self: auto;
  }
  .flex-self-start_xl-only {
    align-self: flex-start;
  }
  .flex-self-center_xl-only {
    align-self: center;
  }
  .flex-self-end_xl-only {
    align-self: flex-end;
  }
  .flex-self-stretch_xl-only {
    align-self: stretch;
  }
  .flex-self-baseline_xl-only {
    align-self: baseline;
  }
  .flex-0_xl-only {
    flex: 0;
  }
  .flex-1_xl-only {
    flex: 1;
  }
  .flex-2_xl-only {
    flex: 2;
  }
  .flex-3_xl-only {
    flex: 3;
  }
  .flex-4_xl-only {
    flex: 4;
  }
  .flex-5_xl-only {
    flex: 5;
  }
  .flex-6_xl-only {
    flex: 6;
  }
  .flex-7_xl-only {
    flex: 7;
  }
  .flex-8_xl-only {
    flex: 8;
  }
  .flex-9_xl-only {
    flex: 9;
  }
  .flex-10_xl-only {
    flex: 10;
  }
  .order-0_xl-only {
    order: 0;
  }
  .order-1_xl-only {
    order: 1;
  }
  .order-2_xl-only {
    order: 2;
  }
  .order-3_xl-only {
    order: 3;
  }
  .order-4_xl-only {
    order: 4;
  }
  .order-5_xl-only {
    order: 5;
  }
  .order-6_xl-only {
    order: 6;
  }
  .order-7_xl-only {
    order: 7;
  }
  .order-8_xl-only {
    order: 8;
  }
  .order-9_xl-only {
    order: 9;
  }
  .order-10_xl-only {
    order: 10;
  }
  .m-half_xl-only {
    margin: 0.5rem !important;
  }
  .mt-half_xl-only {
    margin-top: 0.5rem !important;
  }
  .mr-half_xl-only {
    margin-right: 0.5rem !important;
  }
  .mb-half_xl-only {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_xl-only {
    margin-left: 0.5rem !important;
  }
  .mx-half_xl-only {
    margin-inline: 0.5rem !important;
  }
  .my-half_xl-only {
    margin-block: 0.5rem !important;
  }
  .m-0_xl-only {
    margin: 0rem !important;
  }
  .mt-0_xl-only {
    margin-top: 0rem !important;
  }
  .mr-0_xl-only {
    margin-right: 0rem !important;
  }
  .mb-0_xl-only {
    margin-bottom: 0rem !important;
  }
  .ml-0_xl-only {
    margin-left: 0rem !important;
  }
  .mx-0_xl-only {
    margin-inline: 0rem !important;
  }
  .my-0_xl-only {
    margin-block: 0rem !important;
  }
  .m-1_xl-only {
    margin: 1rem !important;
  }
  .mt-1_xl-only {
    margin-top: 1rem !important;
  }
  .mr-1_xl-only {
    margin-right: 1rem !important;
  }
  .mb-1_xl-only {
    margin-bottom: 1rem !important;
  }
  .ml-1_xl-only {
    margin-left: 1rem !important;
  }
  .mx-1_xl-only {
    margin-inline: 1rem !important;
  }
  .my-1_xl-only {
    margin-block: 1rem !important;
  }
  .m-2_xl-only {
    margin: 2rem !important;
  }
  .mt-2_xl-only {
    margin-top: 2rem !important;
  }
  .mr-2_xl-only {
    margin-right: 2rem !important;
  }
  .mb-2_xl-only {
    margin-bottom: 2rem !important;
  }
  .ml-2_xl-only {
    margin-left: 2rem !important;
  }
  .mx-2_xl-only {
    margin-inline: 2rem !important;
  }
  .my-2_xl-only {
    margin-block: 2rem !important;
  }
  .m-3_xl-only {
    margin: 3rem !important;
  }
  .mt-3_xl-only {
    margin-top: 3rem !important;
  }
  .mr-3_xl-only {
    margin-right: 3rem !important;
  }
  .mb-3_xl-only {
    margin-bottom: 3rem !important;
  }
  .ml-3_xl-only {
    margin-left: 3rem !important;
  }
  .mx-3_xl-only {
    margin-inline: 3rem !important;
  }
  .my-3_xl-only {
    margin-block: 3rem !important;
  }
  .m-4_xl-only {
    margin: 4rem !important;
  }
  .mt-4_xl-only {
    margin-top: 4rem !important;
  }
  .mr-4_xl-only {
    margin-right: 4rem !important;
  }
  .mb-4_xl-only {
    margin-bottom: 4rem !important;
  }
  .ml-4_xl-only {
    margin-left: 4rem !important;
  }
  .mx-4_xl-only {
    margin-inline: 4rem !important;
  }
  .my-4_xl-only {
    margin-block: 4rem !important;
  }
  .m-5_xl-only {
    margin: 5rem !important;
  }
  .mt-5_xl-only {
    margin-top: 5rem !important;
  }
  .mr-5_xl-only {
    margin-right: 5rem !important;
  }
  .mb-5_xl-only {
    margin-bottom: 5rem !important;
  }
  .ml-5_xl-only {
    margin-left: 5rem !important;
  }
  .mx-5_xl-only {
    margin-inline: 5rem !important;
  }
  .my-5_xl-only {
    margin-block: 5rem !important;
  }
  .m-6_xl-only {
    margin: 6rem !important;
  }
  .mt-6_xl-only {
    margin-top: 6rem !important;
  }
  .mr-6_xl-only {
    margin-right: 6rem !important;
  }
  .mb-6_xl-only {
    margin-bottom: 6rem !important;
  }
  .ml-6_xl-only {
    margin-left: 6rem !important;
  }
  .mx-6_xl-only {
    margin-inline: 6rem !important;
  }
  .my-6_xl-only {
    margin-block: 6rem !important;
  }
  .m-7_xl-only {
    margin: 7rem !important;
  }
  .mt-7_xl-only {
    margin-top: 7rem !important;
  }
  .mr-7_xl-only {
    margin-right: 7rem !important;
  }
  .mb-7_xl-only {
    margin-bottom: 7rem !important;
  }
  .ml-7_xl-only {
    margin-left: 7rem !important;
  }
  .mx-7_xl-only {
    margin-inline: 7rem !important;
  }
  .my-7_xl-only {
    margin-block: 7rem !important;
  }
  .m-8_xl-only {
    margin: 8rem !important;
  }
  .mt-8_xl-only {
    margin-top: 8rem !important;
  }
  .mr-8_xl-only {
    margin-right: 8rem !important;
  }
  .mb-8_xl-only {
    margin-bottom: 8rem !important;
  }
  .ml-8_xl-only {
    margin-left: 8rem !important;
  }
  .mx-8_xl-only {
    margin-inline: 8rem !important;
  }
  .my-8_xl-only {
    margin-block: 8rem !important;
  }
  .m-9_xl-only {
    margin: 9rem !important;
  }
  .mt-9_xl-only {
    margin-top: 9rem !important;
  }
  .mr-9_xl-only {
    margin-right: 9rem !important;
  }
  .mb-9_xl-only {
    margin-bottom: 9rem !important;
  }
  .ml-9_xl-only {
    margin-left: 9rem !important;
  }
  .mx-9_xl-only {
    margin-inline: 9rem !important;
  }
  .my-9_xl-only {
    margin-block: 9rem !important;
  }
  .m-10_xl-only {
    margin: 10rem !important;
  }
  .mt-10_xl-only {
    margin-top: 10rem !important;
  }
  .mr-10_xl-only {
    margin-right: 10rem !important;
  }
  .mb-10_xl-only {
    margin-bottom: 10rem !important;
  }
  .ml-10_xl-only {
    margin-left: 10rem !important;
  }
  .mx-10_xl-only {
    margin-inline: 10rem !important;
  }
  .my-10_xl-only {
    margin-block: 10rem !important;
  }
  .p-half_xl-only {
    padding: 0.5rem !important;
  }
  .pt-half_xl-only {
    padding-top: 0.5rem !important;
  }
  .pr-half_xl-only {
    padding-right: 0.5rem !important;
  }
  .pb-half_xl-only {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_xl-only {
    padding-left: 0.5rem !important;
  }
  .px-half_xl-only {
    padding-inline: 0.5rem !important;
  }
  .py-half_xl-only {
    padding-block: 0.5rem !important;
  }
  .p-0_xl-only {
    padding: 0rem !important;
  }
  .pt-0_xl-only {
    padding-top: 0rem !important;
  }
  .pr-0_xl-only {
    padding-right: 0rem !important;
  }
  .pb-0_xl-only {
    padding-bottom: 0rem !important;
  }
  .pl-0_xl-only {
    padding-left: 0rem !important;
  }
  .px-0_xl-only {
    padding-inline: 0rem !important;
  }
  .py-0_xl-only {
    padding-block: 0rem !important;
  }
  .p-1_xl-only {
    padding: 1rem !important;
  }
  .pt-1_xl-only {
    padding-top: 1rem !important;
  }
  .pr-1_xl-only {
    padding-right: 1rem !important;
  }
  .pb-1_xl-only {
    padding-bottom: 1rem !important;
  }
  .pl-1_xl-only {
    padding-left: 1rem !important;
  }
  .px-1_xl-only {
    padding-inline: 1rem !important;
  }
  .py-1_xl-only {
    padding-block: 1rem !important;
  }
  .p-2_xl-only {
    padding: 2rem !important;
  }
  .pt-2_xl-only {
    padding-top: 2rem !important;
  }
  .pr-2_xl-only {
    padding-right: 2rem !important;
  }
  .pb-2_xl-only {
    padding-bottom: 2rem !important;
  }
  .pl-2_xl-only {
    padding-left: 2rem !important;
  }
  .px-2_xl-only {
    padding-inline: 2rem !important;
  }
  .py-2_xl-only {
    padding-block: 2rem !important;
  }
  .p-3_xl-only {
    padding: 3rem !important;
  }
  .pt-3_xl-only {
    padding-top: 3rem !important;
  }
  .pr-3_xl-only {
    padding-right: 3rem !important;
  }
  .pb-3_xl-only {
    padding-bottom: 3rem !important;
  }
  .pl-3_xl-only {
    padding-left: 3rem !important;
  }
  .px-3_xl-only {
    padding-inline: 3rem !important;
  }
  .py-3_xl-only {
    padding-block: 3rem !important;
  }
  .p-4_xl-only {
    padding: 4rem !important;
  }
  .pt-4_xl-only {
    padding-top: 4rem !important;
  }
  .pr-4_xl-only {
    padding-right: 4rem !important;
  }
  .pb-4_xl-only {
    padding-bottom: 4rem !important;
  }
  .pl-4_xl-only {
    padding-left: 4rem !important;
  }
  .px-4_xl-only {
    padding-inline: 4rem !important;
  }
  .py-4_xl-only {
    padding-block: 4rem !important;
  }
  .p-5_xl-only {
    padding: 5rem !important;
  }
  .pt-5_xl-only {
    padding-top: 5rem !important;
  }
  .pr-5_xl-only {
    padding-right: 5rem !important;
  }
  .pb-5_xl-only {
    padding-bottom: 5rem !important;
  }
  .pl-5_xl-only {
    padding-left: 5rem !important;
  }
  .px-5_xl-only {
    padding-inline: 5rem !important;
  }
  .py-5_xl-only {
    padding-block: 5rem !important;
  }
  .p-6_xl-only {
    padding: 6rem !important;
  }
  .pt-6_xl-only {
    padding-top: 6rem !important;
  }
  .pr-6_xl-only {
    padding-right: 6rem !important;
  }
  .pb-6_xl-only {
    padding-bottom: 6rem !important;
  }
  .pl-6_xl-only {
    padding-left: 6rem !important;
  }
  .px-6_xl-only {
    padding-inline: 6rem !important;
  }
  .py-6_xl-only {
    padding-block: 6rem !important;
  }
  .p-7_xl-only {
    padding: 7rem !important;
  }
  .pt-7_xl-only {
    padding-top: 7rem !important;
  }
  .pr-7_xl-only {
    padding-right: 7rem !important;
  }
  .pb-7_xl-only {
    padding-bottom: 7rem !important;
  }
  .pl-7_xl-only {
    padding-left: 7rem !important;
  }
  .px-7_xl-only {
    padding-inline: 7rem !important;
  }
  .py-7_xl-only {
    padding-block: 7rem !important;
  }
  .p-8_xl-only {
    padding: 8rem !important;
  }
  .pt-8_xl-only {
    padding-top: 8rem !important;
  }
  .pr-8_xl-only {
    padding-right: 8rem !important;
  }
  .pb-8_xl-only {
    padding-bottom: 8rem !important;
  }
  .pl-8_xl-only {
    padding-left: 8rem !important;
  }
  .px-8_xl-only {
    padding-inline: 8rem !important;
  }
  .py-8_xl-only {
    padding-block: 8rem !important;
  }
  .p-9_xl-only {
    padding: 9rem !important;
  }
  .pt-9_xl-only {
    padding-top: 9rem !important;
  }
  .pr-9_xl-only {
    padding-right: 9rem !important;
  }
  .pb-9_xl-only {
    padding-bottom: 9rem !important;
  }
  .pl-9_xl-only {
    padding-left: 9rem !important;
  }
  .px-9_xl-only {
    padding-inline: 9rem !important;
  }
  .py-9_xl-only {
    padding-block: 9rem !important;
  }
  .p-10_xl-only {
    padding: 10rem !important;
  }
  .pt-10_xl-only {
    padding-top: 10rem !important;
  }
  .pr-10_xl-only {
    padding-right: 10rem !important;
  }
  .pb-10_xl-only {
    padding-bottom: 10rem !important;
  }
  .pl-10_xl-only {
    padding-left: 10rem !important;
  }
  .px-10_xl-only {
    padding-inline: 10rem !important;
  }
  .py-10_xl-only {
    padding-block: 10rem !important;
  }
  .m-auto_xl-only {
    margin: auto !important;
  }
  .mt-auto_xl-only {
    margin-top: auto !important;
  }
  .mr-auto_xl-only {
    margin-right: auto !important;
  }
  .mb-auto_xl-only {
    margin-bottom: auto !important;
  }
  .ml-auto_xl-only {
    margin-left: auto !important;
  }
  .mx-auto_xl-only {
    margin-inline: auto !important;
  }
  .my-auto_xl-only {
    margin-block: auto !important;
  }
  .float-right_xl-only {
    float: right;
  }
  .float-left_xl-only {
    float: left;
  }
  .hide_xl-only,
  .is-hidden_xl-only {
    display: none !important;
    visibility: hidden;
  }
  .border-all_xl-only {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_xl-only {
    border: 0;
  }
  .border-top_xl-only {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_xl-only {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_xl-only {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_xl-only {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_xl-only {
    gap: 0;
  }
  .gap-y-0_xl-only {
    row-gap: 0;
  }
  .gap-x-0_xl-only {
    column-gap: 0;
  }
  .gap-1_xl-only {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_xl-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_xl-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_xl-only {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_xl-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_xl-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_xl-only {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_xl-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_xl-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_xl-only {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_xl-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_xl-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_xl-only {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_xl-only {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_xl-only {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_xl-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_xl-only {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_xl-only {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_xl-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_xl-only {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_xl-only {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_xl-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_xl-only {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_xl-only {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 1280px) {
  .flex_xl {
    display: flex;
  }
  .block_xl {
    display: block;
  }
  .inline-block_xl {
    display: inline-block;
  }
  .inline_xl {
    display: inline;
  }
  .flex-row_xl {
    flex-direction: row;
  }
  .flex-row-reverse_xl {
    flex-direction: row-reverse;
  }
  .flex-col_xl {
    flex-direction: column;
  }
  .flex-col-reverse_xl {
    flex-direction: column-reverse;
  }
  .flex-nowrap_xl {
    flex-wrap: nowrap;
  }
  .flex-wrap_xl {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_xl {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_xl {
    justify-content: flex-start;
  }
  .flex-justify-end_xl {
    justify-content: flex-end;
  }
  .flex-justify-center_xl {
    justify-content: center;
  }
  .flex-justify-between_xl {
    justify-content: space-between;
  }
  .flex-justify-around_xl {
    justify-content: space-around;
  }
  .flex-justify-evenly_xl {
    justify-content: space-evenly;
  }
  .flex-items-start_xl {
    align-items: flex-start;
  }
  .flex-items-center_xl {
    align-items: center;
  }
  .flex-items-end_xl {
    align-items: flex-end;
  }
  .flex-items-stretch_xl {
    align-items: stretch;
  }
  .flex-items-baseline_xl {
    align-items: baseline;
  }
  .flex-content-start_xl {
    align-content: flex-start;
  }
  .flex-content-center_xl {
    align-content: center;
  }
  .flex-content-end_xl {
    align-content: flex-end;
  }
  .flex-content-between_xl {
    align-content: space-between;
  }
  .flex-content-around_xl {
    align-content: space-around;
  }
  .flex-content-evenly_xl {
    align-content: space-evenly;
  }
  .flex-content-stretch_xl {
    align-content: stretch;
  }
  .flex-content-baseline_xl {
    align-content: baseline;
  }
  .flex-self-auto_xl {
    align-self: auto;
  }
  .flex-self-start_xl {
    align-self: flex-start;
  }
  .flex-self-center_xl {
    align-self: center;
  }
  .flex-self-end_xl {
    align-self: flex-end;
  }
  .flex-self-stretch_xl {
    align-self: stretch;
  }
  .flex-self-baseline_xl {
    align-self: baseline;
  }
  .flex-0_xl {
    flex: 0;
  }
  .flex-1_xl {
    flex: 1;
  }
  .flex-2_xl {
    flex: 2;
  }
  .flex-3_xl {
    flex: 3;
  }
  .flex-4_xl {
    flex: 4;
  }
  .flex-5_xl {
    flex: 5;
  }
  .flex-6_xl {
    flex: 6;
  }
  .flex-7_xl {
    flex: 7;
  }
  .flex-8_xl {
    flex: 8;
  }
  .flex-9_xl {
    flex: 9;
  }
  .flex-10_xl {
    flex: 10;
  }
  .order-0_xl {
    order: 0;
  }
  .order-1_xl {
    order: 1;
  }
  .order-2_xl {
    order: 2;
  }
  .order-3_xl {
    order: 3;
  }
  .order-4_xl {
    order: 4;
  }
  .order-5_xl {
    order: 5;
  }
  .order-6_xl {
    order: 6;
  }
  .order-7_xl {
    order: 7;
  }
  .order-8_xl {
    order: 8;
  }
  .order-9_xl {
    order: 9;
  }
  .order-10_xl {
    order: 10;
  }
  .m-half_xl {
    margin: 0.5rem !important;
  }
  .mt-half_xl {
    margin-top: 0.5rem !important;
  }
  .mr-half_xl {
    margin-right: 0.5rem !important;
  }
  .mb-half_xl {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_xl {
    margin-left: 0.5rem !important;
  }
  .mx-half_xl {
    margin-inline: 0.5rem !important;
  }
  .my-half_xl {
    margin-block: 0.5rem !important;
  }
  .m-0_xl {
    margin: 0rem !important;
  }
  .mt-0_xl {
    margin-top: 0rem !important;
  }
  .mr-0_xl {
    margin-right: 0rem !important;
  }
  .mb-0_xl {
    margin-bottom: 0rem !important;
  }
  .ml-0_xl {
    margin-left: 0rem !important;
  }
  .mx-0_xl {
    margin-inline: 0rem !important;
  }
  .my-0_xl {
    margin-block: 0rem !important;
  }
  .m-1_xl {
    margin: 1rem !important;
  }
  .mt-1_xl {
    margin-top: 1rem !important;
  }
  .mr-1_xl {
    margin-right: 1rem !important;
  }
  .mb-1_xl {
    margin-bottom: 1rem !important;
  }
  .ml-1_xl {
    margin-left: 1rem !important;
  }
  .mx-1_xl {
    margin-inline: 1rem !important;
  }
  .my-1_xl {
    margin-block: 1rem !important;
  }
  .m-2_xl {
    margin: 2rem !important;
  }
  .mt-2_xl {
    margin-top: 2rem !important;
  }
  .mr-2_xl {
    margin-right: 2rem !important;
  }
  .mb-2_xl {
    margin-bottom: 2rem !important;
  }
  .ml-2_xl {
    margin-left: 2rem !important;
  }
  .mx-2_xl {
    margin-inline: 2rem !important;
  }
  .my-2_xl {
    margin-block: 2rem !important;
  }
  .m-3_xl {
    margin: 3rem !important;
  }
  .mt-3_xl {
    margin-top: 3rem !important;
  }
  .mr-3_xl {
    margin-right: 3rem !important;
  }
  .mb-3_xl {
    margin-bottom: 3rem !important;
  }
  .ml-3_xl {
    margin-left: 3rem !important;
  }
  .mx-3_xl {
    margin-inline: 3rem !important;
  }
  .my-3_xl {
    margin-block: 3rem !important;
  }
  .m-4_xl {
    margin: 4rem !important;
  }
  .mt-4_xl {
    margin-top: 4rem !important;
  }
  .mr-4_xl {
    margin-right: 4rem !important;
  }
  .mb-4_xl {
    margin-bottom: 4rem !important;
  }
  .ml-4_xl {
    margin-left: 4rem !important;
  }
  .mx-4_xl {
    margin-inline: 4rem !important;
  }
  .my-4_xl {
    margin-block: 4rem !important;
  }
  .m-5_xl {
    margin: 5rem !important;
  }
  .mt-5_xl {
    margin-top: 5rem !important;
  }
  .mr-5_xl {
    margin-right: 5rem !important;
  }
  .mb-5_xl {
    margin-bottom: 5rem !important;
  }
  .ml-5_xl {
    margin-left: 5rem !important;
  }
  .mx-5_xl {
    margin-inline: 5rem !important;
  }
  .my-5_xl {
    margin-block: 5rem !important;
  }
  .m-6_xl {
    margin: 6rem !important;
  }
  .mt-6_xl {
    margin-top: 6rem !important;
  }
  .mr-6_xl {
    margin-right: 6rem !important;
  }
  .mb-6_xl {
    margin-bottom: 6rem !important;
  }
  .ml-6_xl {
    margin-left: 6rem !important;
  }
  .mx-6_xl {
    margin-inline: 6rem !important;
  }
  .my-6_xl {
    margin-block: 6rem !important;
  }
  .m-7_xl {
    margin: 7rem !important;
  }
  .mt-7_xl {
    margin-top: 7rem !important;
  }
  .mr-7_xl {
    margin-right: 7rem !important;
  }
  .mb-7_xl {
    margin-bottom: 7rem !important;
  }
  .ml-7_xl {
    margin-left: 7rem !important;
  }
  .mx-7_xl {
    margin-inline: 7rem !important;
  }
  .my-7_xl {
    margin-block: 7rem !important;
  }
  .m-8_xl {
    margin: 8rem !important;
  }
  .mt-8_xl {
    margin-top: 8rem !important;
  }
  .mr-8_xl {
    margin-right: 8rem !important;
  }
  .mb-8_xl {
    margin-bottom: 8rem !important;
  }
  .ml-8_xl {
    margin-left: 8rem !important;
  }
  .mx-8_xl {
    margin-inline: 8rem !important;
  }
  .my-8_xl {
    margin-block: 8rem !important;
  }
  .m-9_xl {
    margin: 9rem !important;
  }
  .mt-9_xl {
    margin-top: 9rem !important;
  }
  .mr-9_xl {
    margin-right: 9rem !important;
  }
  .mb-9_xl {
    margin-bottom: 9rem !important;
  }
  .ml-9_xl {
    margin-left: 9rem !important;
  }
  .mx-9_xl {
    margin-inline: 9rem !important;
  }
  .my-9_xl {
    margin-block: 9rem !important;
  }
  .m-10_xl {
    margin: 10rem !important;
  }
  .mt-10_xl {
    margin-top: 10rem !important;
  }
  .mr-10_xl {
    margin-right: 10rem !important;
  }
  .mb-10_xl {
    margin-bottom: 10rem !important;
  }
  .ml-10_xl {
    margin-left: 10rem !important;
  }
  .mx-10_xl {
    margin-inline: 10rem !important;
  }
  .my-10_xl {
    margin-block: 10rem !important;
  }
  .p-half_xl {
    padding: 0.5rem !important;
  }
  .pt-half_xl {
    padding-top: 0.5rem !important;
  }
  .pr-half_xl {
    padding-right: 0.5rem !important;
  }
  .pb-half_xl {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_xl {
    padding-left: 0.5rem !important;
  }
  .px-half_xl {
    padding-inline: 0.5rem !important;
  }
  .py-half_xl {
    padding-block: 0.5rem !important;
  }
  .p-0_xl {
    padding: 0rem !important;
  }
  .pt-0_xl {
    padding-top: 0rem !important;
  }
  .pr-0_xl {
    padding-right: 0rem !important;
  }
  .pb-0_xl {
    padding-bottom: 0rem !important;
  }
  .pl-0_xl {
    padding-left: 0rem !important;
  }
  .px-0_xl {
    padding-inline: 0rem !important;
  }
  .py-0_xl {
    padding-block: 0rem !important;
  }
  .p-1_xl {
    padding: 1rem !important;
  }
  .pt-1_xl {
    padding-top: 1rem !important;
  }
  .pr-1_xl {
    padding-right: 1rem !important;
  }
  .pb-1_xl {
    padding-bottom: 1rem !important;
  }
  .pl-1_xl {
    padding-left: 1rem !important;
  }
  .px-1_xl {
    padding-inline: 1rem !important;
  }
  .py-1_xl {
    padding-block: 1rem !important;
  }
  .p-2_xl {
    padding: 2rem !important;
  }
  .pt-2_xl {
    padding-top: 2rem !important;
  }
  .pr-2_xl {
    padding-right: 2rem !important;
  }
  .pb-2_xl {
    padding-bottom: 2rem !important;
  }
  .pl-2_xl {
    padding-left: 2rem !important;
  }
  .px-2_xl {
    padding-inline: 2rem !important;
  }
  .py-2_xl {
    padding-block: 2rem !important;
  }
  .p-3_xl {
    padding: 3rem !important;
  }
  .pt-3_xl {
    padding-top: 3rem !important;
  }
  .pr-3_xl {
    padding-right: 3rem !important;
  }
  .pb-3_xl {
    padding-bottom: 3rem !important;
  }
  .pl-3_xl {
    padding-left: 3rem !important;
  }
  .px-3_xl {
    padding-inline: 3rem !important;
  }
  .py-3_xl {
    padding-block: 3rem !important;
  }
  .p-4_xl {
    padding: 4rem !important;
  }
  .pt-4_xl {
    padding-top: 4rem !important;
  }
  .pr-4_xl {
    padding-right: 4rem !important;
  }
  .pb-4_xl {
    padding-bottom: 4rem !important;
  }
  .pl-4_xl {
    padding-left: 4rem !important;
  }
  .px-4_xl {
    padding-inline: 4rem !important;
  }
  .py-4_xl {
    padding-block: 4rem !important;
  }
  .p-5_xl {
    padding: 5rem !important;
  }
  .pt-5_xl {
    padding-top: 5rem !important;
  }
  .pr-5_xl {
    padding-right: 5rem !important;
  }
  .pb-5_xl {
    padding-bottom: 5rem !important;
  }
  .pl-5_xl {
    padding-left: 5rem !important;
  }
  .px-5_xl {
    padding-inline: 5rem !important;
  }
  .py-5_xl {
    padding-block: 5rem !important;
  }
  .p-6_xl {
    padding: 6rem !important;
  }
  .pt-6_xl {
    padding-top: 6rem !important;
  }
  .pr-6_xl {
    padding-right: 6rem !important;
  }
  .pb-6_xl {
    padding-bottom: 6rem !important;
  }
  .pl-6_xl {
    padding-left: 6rem !important;
  }
  .px-6_xl {
    padding-inline: 6rem !important;
  }
  .py-6_xl {
    padding-block: 6rem !important;
  }
  .p-7_xl {
    padding: 7rem !important;
  }
  .pt-7_xl {
    padding-top: 7rem !important;
  }
  .pr-7_xl {
    padding-right: 7rem !important;
  }
  .pb-7_xl {
    padding-bottom: 7rem !important;
  }
  .pl-7_xl {
    padding-left: 7rem !important;
  }
  .px-7_xl {
    padding-inline: 7rem !important;
  }
  .py-7_xl {
    padding-block: 7rem !important;
  }
  .p-8_xl {
    padding: 8rem !important;
  }
  .pt-8_xl {
    padding-top: 8rem !important;
  }
  .pr-8_xl {
    padding-right: 8rem !important;
  }
  .pb-8_xl {
    padding-bottom: 8rem !important;
  }
  .pl-8_xl {
    padding-left: 8rem !important;
  }
  .px-8_xl {
    padding-inline: 8rem !important;
  }
  .py-8_xl {
    padding-block: 8rem !important;
  }
  .p-9_xl {
    padding: 9rem !important;
  }
  .pt-9_xl {
    padding-top: 9rem !important;
  }
  .pr-9_xl {
    padding-right: 9rem !important;
  }
  .pb-9_xl {
    padding-bottom: 9rem !important;
  }
  .pl-9_xl {
    padding-left: 9rem !important;
  }
  .px-9_xl {
    padding-inline: 9rem !important;
  }
  .py-9_xl {
    padding-block: 9rem !important;
  }
  .p-10_xl {
    padding: 10rem !important;
  }
  .pt-10_xl {
    padding-top: 10rem !important;
  }
  .pr-10_xl {
    padding-right: 10rem !important;
  }
  .pb-10_xl {
    padding-bottom: 10rem !important;
  }
  .pl-10_xl {
    padding-left: 10rem !important;
  }
  .px-10_xl {
    padding-inline: 10rem !important;
  }
  .py-10_xl {
    padding-block: 10rem !important;
  }
  .m-auto_xl {
    margin: auto !important;
  }
  .mt-auto_xl {
    margin-top: auto !important;
  }
  .mr-auto_xl {
    margin-right: auto !important;
  }
  .mb-auto_xl {
    margin-bottom: auto !important;
  }
  .ml-auto_xl {
    margin-left: auto !important;
  }
  .mx-auto_xl {
    margin-inline: auto !important;
  }
  .my-auto_xl {
    margin-block: auto !important;
  }
  .float-right_xl {
    float: right;
  }
  .float-left_xl {
    float: left;
  }
  .hide_xl,
  .is-hidden_xl {
    display: none !important;
    visibility: hidden;
  }
  .border-all_xl {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_xl {
    border: 0;
  }
  .border-top_xl {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_xl {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_xl {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_xl {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_xl {
    gap: 0;
  }
  .gap-y-0_xl {
    row-gap: 0;
  }
  .gap-x-0_xl {
    column-gap: 0;
  }
  .gap-1_xl {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_xl {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_xl {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_xl {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_xl {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_xl {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_xl {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_xl {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_xl {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_xl {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_xl {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_xl {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_xl {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_xl {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_xl {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_xl {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_xl {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_xl {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_xl {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_xl {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_xl {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_xl {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_xl {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_xl {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}
@media (width >= 1536px) {
  .flex_xxl {
    display: flex;
  }
  .block_xxl {
    display: block;
  }
  .inline-block_xxl {
    display: inline-block;
  }
  .inline_xxl {
    display: inline;
  }
  .flex-row_xxl {
    flex-direction: row;
  }
  .flex-row-reverse_xxl {
    flex-direction: row-reverse;
  }
  .flex-col_xxl {
    flex-direction: column;
  }
  .flex-col-reverse_xxl {
    flex-direction: column-reverse;
  }
  .flex-nowrap_xxl {
    flex-wrap: nowrap;
  }
  .flex-wrap_xxl {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse_xxl {
    flex-wrap: wrap-reverse;
  }
  .flex-justify-start_xxl {
    justify-content: flex-start;
  }
  .flex-justify-end_xxl {
    justify-content: flex-end;
  }
  .flex-justify-center_xxl {
    justify-content: center;
  }
  .flex-justify-between_xxl {
    justify-content: space-between;
  }
  .flex-justify-around_xxl {
    justify-content: space-around;
  }
  .flex-justify-evenly_xxl {
    justify-content: space-evenly;
  }
  .flex-items-start_xxl {
    align-items: flex-start;
  }
  .flex-items-center_xxl {
    align-items: center;
  }
  .flex-items-end_xxl {
    align-items: flex-end;
  }
  .flex-items-stretch_xxl {
    align-items: stretch;
  }
  .flex-items-baseline_xxl {
    align-items: baseline;
  }
  .flex-content-start_xxl {
    align-content: flex-start;
  }
  .flex-content-center_xxl {
    align-content: center;
  }
  .flex-content-end_xxl {
    align-content: flex-end;
  }
  .flex-content-between_xxl {
    align-content: space-between;
  }
  .flex-content-around_xxl {
    align-content: space-around;
  }
  .flex-content-evenly_xxl {
    align-content: space-evenly;
  }
  .flex-content-stretch_xxl {
    align-content: stretch;
  }
  .flex-content-baseline_xxl {
    align-content: baseline;
  }
  .flex-self-auto_xxl {
    align-self: auto;
  }
  .flex-self-start_xxl {
    align-self: flex-start;
  }
  .flex-self-center_xxl {
    align-self: center;
  }
  .flex-self-end_xxl {
    align-self: flex-end;
  }
  .flex-self-stretch_xxl {
    align-self: stretch;
  }
  .flex-self-baseline_xxl {
    align-self: baseline;
  }
  .flex-0_xxl {
    flex: 0;
  }
  .flex-1_xxl {
    flex: 1;
  }
  .flex-2_xxl {
    flex: 2;
  }
  .flex-3_xxl {
    flex: 3;
  }
  .flex-4_xxl {
    flex: 4;
  }
  .flex-5_xxl {
    flex: 5;
  }
  .flex-6_xxl {
    flex: 6;
  }
  .flex-7_xxl {
    flex: 7;
  }
  .flex-8_xxl {
    flex: 8;
  }
  .flex-9_xxl {
    flex: 9;
  }
  .flex-10_xxl {
    flex: 10;
  }
  .order-0_xxl {
    order: 0;
  }
  .order-1_xxl {
    order: 1;
  }
  .order-2_xxl {
    order: 2;
  }
  .order-3_xxl {
    order: 3;
  }
  .order-4_xxl {
    order: 4;
  }
  .order-5_xxl {
    order: 5;
  }
  .order-6_xxl {
    order: 6;
  }
  .order-7_xxl {
    order: 7;
  }
  .order-8_xxl {
    order: 8;
  }
  .order-9_xxl {
    order: 9;
  }
  .order-10_xxl {
    order: 10;
  }
  .m-half_xxl {
    margin: 0.5rem !important;
  }
  .mt-half_xxl {
    margin-top: 0.5rem !important;
  }
  .mr-half_xxl {
    margin-right: 0.5rem !important;
  }
  .mb-half_xxl {
    margin-bottom: 0.5rem !important;
  }
  .ml-half_xxl {
    margin-left: 0.5rem !important;
  }
  .mx-half_xxl {
    margin-inline: 0.5rem !important;
  }
  .my-half_xxl {
    margin-block: 0.5rem !important;
  }
  .m-0_xxl {
    margin: 0rem !important;
  }
  .mt-0_xxl {
    margin-top: 0rem !important;
  }
  .mr-0_xxl {
    margin-right: 0rem !important;
  }
  .mb-0_xxl {
    margin-bottom: 0rem !important;
  }
  .ml-0_xxl {
    margin-left: 0rem !important;
  }
  .mx-0_xxl {
    margin-inline: 0rem !important;
  }
  .my-0_xxl {
    margin-block: 0rem !important;
  }
  .m-1_xxl {
    margin: 1rem !important;
  }
  .mt-1_xxl {
    margin-top: 1rem !important;
  }
  .mr-1_xxl {
    margin-right: 1rem !important;
  }
  .mb-1_xxl {
    margin-bottom: 1rem !important;
  }
  .ml-1_xxl {
    margin-left: 1rem !important;
  }
  .mx-1_xxl {
    margin-inline: 1rem !important;
  }
  .my-1_xxl {
    margin-block: 1rem !important;
  }
  .m-2_xxl {
    margin: 2rem !important;
  }
  .mt-2_xxl {
    margin-top: 2rem !important;
  }
  .mr-2_xxl {
    margin-right: 2rem !important;
  }
  .mb-2_xxl {
    margin-bottom: 2rem !important;
  }
  .ml-2_xxl {
    margin-left: 2rem !important;
  }
  .mx-2_xxl {
    margin-inline: 2rem !important;
  }
  .my-2_xxl {
    margin-block: 2rem !important;
  }
  .m-3_xxl {
    margin: 3rem !important;
  }
  .mt-3_xxl {
    margin-top: 3rem !important;
  }
  .mr-3_xxl {
    margin-right: 3rem !important;
  }
  .mb-3_xxl {
    margin-bottom: 3rem !important;
  }
  .ml-3_xxl {
    margin-left: 3rem !important;
  }
  .mx-3_xxl {
    margin-inline: 3rem !important;
  }
  .my-3_xxl {
    margin-block: 3rem !important;
  }
  .m-4_xxl {
    margin: 4rem !important;
  }
  .mt-4_xxl {
    margin-top: 4rem !important;
  }
  .mr-4_xxl {
    margin-right: 4rem !important;
  }
  .mb-4_xxl {
    margin-bottom: 4rem !important;
  }
  .ml-4_xxl {
    margin-left: 4rem !important;
  }
  .mx-4_xxl {
    margin-inline: 4rem !important;
  }
  .my-4_xxl {
    margin-block: 4rem !important;
  }
  .m-5_xxl {
    margin: 5rem !important;
  }
  .mt-5_xxl {
    margin-top: 5rem !important;
  }
  .mr-5_xxl {
    margin-right: 5rem !important;
  }
  .mb-5_xxl {
    margin-bottom: 5rem !important;
  }
  .ml-5_xxl {
    margin-left: 5rem !important;
  }
  .mx-5_xxl {
    margin-inline: 5rem !important;
  }
  .my-5_xxl {
    margin-block: 5rem !important;
  }
  .m-6_xxl {
    margin: 6rem !important;
  }
  .mt-6_xxl {
    margin-top: 6rem !important;
  }
  .mr-6_xxl {
    margin-right: 6rem !important;
  }
  .mb-6_xxl {
    margin-bottom: 6rem !important;
  }
  .ml-6_xxl {
    margin-left: 6rem !important;
  }
  .mx-6_xxl {
    margin-inline: 6rem !important;
  }
  .my-6_xxl {
    margin-block: 6rem !important;
  }
  .m-7_xxl {
    margin: 7rem !important;
  }
  .mt-7_xxl {
    margin-top: 7rem !important;
  }
  .mr-7_xxl {
    margin-right: 7rem !important;
  }
  .mb-7_xxl {
    margin-bottom: 7rem !important;
  }
  .ml-7_xxl {
    margin-left: 7rem !important;
  }
  .mx-7_xxl {
    margin-inline: 7rem !important;
  }
  .my-7_xxl {
    margin-block: 7rem !important;
  }
  .m-8_xxl {
    margin: 8rem !important;
  }
  .mt-8_xxl {
    margin-top: 8rem !important;
  }
  .mr-8_xxl {
    margin-right: 8rem !important;
  }
  .mb-8_xxl {
    margin-bottom: 8rem !important;
  }
  .ml-8_xxl {
    margin-left: 8rem !important;
  }
  .mx-8_xxl {
    margin-inline: 8rem !important;
  }
  .my-8_xxl {
    margin-block: 8rem !important;
  }
  .m-9_xxl {
    margin: 9rem !important;
  }
  .mt-9_xxl {
    margin-top: 9rem !important;
  }
  .mr-9_xxl {
    margin-right: 9rem !important;
  }
  .mb-9_xxl {
    margin-bottom: 9rem !important;
  }
  .ml-9_xxl {
    margin-left: 9rem !important;
  }
  .mx-9_xxl {
    margin-inline: 9rem !important;
  }
  .my-9_xxl {
    margin-block: 9rem !important;
  }
  .m-10_xxl {
    margin: 10rem !important;
  }
  .mt-10_xxl {
    margin-top: 10rem !important;
  }
  .mr-10_xxl {
    margin-right: 10rem !important;
  }
  .mb-10_xxl {
    margin-bottom: 10rem !important;
  }
  .ml-10_xxl {
    margin-left: 10rem !important;
  }
  .mx-10_xxl {
    margin-inline: 10rem !important;
  }
  .my-10_xxl {
    margin-block: 10rem !important;
  }
  .p-half_xxl {
    padding: 0.5rem !important;
  }
  .pt-half_xxl {
    padding-top: 0.5rem !important;
  }
  .pr-half_xxl {
    padding-right: 0.5rem !important;
  }
  .pb-half_xxl {
    padding-bottom: 0.5rem !important;
  }
  .pl-half_xxl {
    padding-left: 0.5rem !important;
  }
  .px-half_xxl {
    padding-inline: 0.5rem !important;
  }
  .py-half_xxl {
    padding-block: 0.5rem !important;
  }
  .p-0_xxl {
    padding: 0rem !important;
  }
  .pt-0_xxl {
    padding-top: 0rem !important;
  }
  .pr-0_xxl {
    padding-right: 0rem !important;
  }
  .pb-0_xxl {
    padding-bottom: 0rem !important;
  }
  .pl-0_xxl {
    padding-left: 0rem !important;
  }
  .px-0_xxl {
    padding-inline: 0rem !important;
  }
  .py-0_xxl {
    padding-block: 0rem !important;
  }
  .p-1_xxl {
    padding: 1rem !important;
  }
  .pt-1_xxl {
    padding-top: 1rem !important;
  }
  .pr-1_xxl {
    padding-right: 1rem !important;
  }
  .pb-1_xxl {
    padding-bottom: 1rem !important;
  }
  .pl-1_xxl {
    padding-left: 1rem !important;
  }
  .px-1_xxl {
    padding-inline: 1rem !important;
  }
  .py-1_xxl {
    padding-block: 1rem !important;
  }
  .p-2_xxl {
    padding: 2rem !important;
  }
  .pt-2_xxl {
    padding-top: 2rem !important;
  }
  .pr-2_xxl {
    padding-right: 2rem !important;
  }
  .pb-2_xxl {
    padding-bottom: 2rem !important;
  }
  .pl-2_xxl {
    padding-left: 2rem !important;
  }
  .px-2_xxl {
    padding-inline: 2rem !important;
  }
  .py-2_xxl {
    padding-block: 2rem !important;
  }
  .p-3_xxl {
    padding: 3rem !important;
  }
  .pt-3_xxl {
    padding-top: 3rem !important;
  }
  .pr-3_xxl {
    padding-right: 3rem !important;
  }
  .pb-3_xxl {
    padding-bottom: 3rem !important;
  }
  .pl-3_xxl {
    padding-left: 3rem !important;
  }
  .px-3_xxl {
    padding-inline: 3rem !important;
  }
  .py-3_xxl {
    padding-block: 3rem !important;
  }
  .p-4_xxl {
    padding: 4rem !important;
  }
  .pt-4_xxl {
    padding-top: 4rem !important;
  }
  .pr-4_xxl {
    padding-right: 4rem !important;
  }
  .pb-4_xxl {
    padding-bottom: 4rem !important;
  }
  .pl-4_xxl {
    padding-left: 4rem !important;
  }
  .px-4_xxl {
    padding-inline: 4rem !important;
  }
  .py-4_xxl {
    padding-block: 4rem !important;
  }
  .p-5_xxl {
    padding: 5rem !important;
  }
  .pt-5_xxl {
    padding-top: 5rem !important;
  }
  .pr-5_xxl {
    padding-right: 5rem !important;
  }
  .pb-5_xxl {
    padding-bottom: 5rem !important;
  }
  .pl-5_xxl {
    padding-left: 5rem !important;
  }
  .px-5_xxl {
    padding-inline: 5rem !important;
  }
  .py-5_xxl {
    padding-block: 5rem !important;
  }
  .p-6_xxl {
    padding: 6rem !important;
  }
  .pt-6_xxl {
    padding-top: 6rem !important;
  }
  .pr-6_xxl {
    padding-right: 6rem !important;
  }
  .pb-6_xxl {
    padding-bottom: 6rem !important;
  }
  .pl-6_xxl {
    padding-left: 6rem !important;
  }
  .px-6_xxl {
    padding-inline: 6rem !important;
  }
  .py-6_xxl {
    padding-block: 6rem !important;
  }
  .p-7_xxl {
    padding: 7rem !important;
  }
  .pt-7_xxl {
    padding-top: 7rem !important;
  }
  .pr-7_xxl {
    padding-right: 7rem !important;
  }
  .pb-7_xxl {
    padding-bottom: 7rem !important;
  }
  .pl-7_xxl {
    padding-left: 7rem !important;
  }
  .px-7_xxl {
    padding-inline: 7rem !important;
  }
  .py-7_xxl {
    padding-block: 7rem !important;
  }
  .p-8_xxl {
    padding: 8rem !important;
  }
  .pt-8_xxl {
    padding-top: 8rem !important;
  }
  .pr-8_xxl {
    padding-right: 8rem !important;
  }
  .pb-8_xxl {
    padding-bottom: 8rem !important;
  }
  .pl-8_xxl {
    padding-left: 8rem !important;
  }
  .px-8_xxl {
    padding-inline: 8rem !important;
  }
  .py-8_xxl {
    padding-block: 8rem !important;
  }
  .p-9_xxl {
    padding: 9rem !important;
  }
  .pt-9_xxl {
    padding-top: 9rem !important;
  }
  .pr-9_xxl {
    padding-right: 9rem !important;
  }
  .pb-9_xxl {
    padding-bottom: 9rem !important;
  }
  .pl-9_xxl {
    padding-left: 9rem !important;
  }
  .px-9_xxl {
    padding-inline: 9rem !important;
  }
  .py-9_xxl {
    padding-block: 9rem !important;
  }
  .p-10_xxl {
    padding: 10rem !important;
  }
  .pt-10_xxl {
    padding-top: 10rem !important;
  }
  .pr-10_xxl {
    padding-right: 10rem !important;
  }
  .pb-10_xxl {
    padding-bottom: 10rem !important;
  }
  .pl-10_xxl {
    padding-left: 10rem !important;
  }
  .px-10_xxl {
    padding-inline: 10rem !important;
  }
  .py-10_xxl {
    padding-block: 10rem !important;
  }
  .m-auto_xxl {
    margin: auto !important;
  }
  .mt-auto_xxl {
    margin-top: auto !important;
  }
  .mr-auto_xxl {
    margin-right: auto !important;
  }
  .mb-auto_xxl {
    margin-bottom: auto !important;
  }
  .ml-auto_xxl {
    margin-left: auto !important;
  }
  .mx-auto_xxl {
    margin-inline: auto !important;
  }
  .my-auto_xxl {
    margin-block: auto !important;
  }
  .float-right_xxl {
    float: right;
  }
  .float-left_xxl {
    float: left;
  }
  .hide_xxl,
  .is-hidden_xxl {
    display: none !important;
    visibility: hidden;
  }
  .border-all_xxl {
    border: 1px solid var(--etfe-border-color);
  }
  .border-none_xxl {
    border: 0;
  }
  .border-top_xxl {
    border-top: 1px solid var(--etfe-border-color);
  }
  .border-right_xxl {
    border-right: 1px solid var(--etfe-border-color);
  }
  .border-bottom_xxl {
    border-bottom: 1px solid var(--etfe-border-color);
  }
  .border-left_xxl {
    border-left: 1px solid var(--etfe-border-color);
  }
  .gap-0_xxl {
    gap: 0;
  }
  .gap-y-0_xxl {
    row-gap: 0;
  }
  .gap-x-0_xxl {
    column-gap: 0;
  }
  .gap-1_xxl {
    gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-y-1_xxl {
    row-gap: calc(var(--etfe-grid-row-gap) * 1);
  }
  .gap-x-1_xxl {
    column-gap: calc(var(--etfe-grid-column-gap) * 1);
  }
  .gap-2_xxl {
    gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-y-2_xxl {
    row-gap: calc(var(--etfe-grid-row-gap) * 2);
  }
  .gap-x-2_xxl {
    column-gap: calc(var(--etfe-grid-column-gap) * 2);
  }
  .gap-3_xxl {
    gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-y-3_xxl {
    row-gap: calc(var(--etfe-grid-row-gap) * 3);
  }
  .gap-x-3_xxl {
    column-gap: calc(var(--etfe-grid-column-gap) * 3);
  }
  .gap-4_xxl {
    gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-y-4_xxl {
    row-gap: calc(var(--etfe-grid-row-gap) * 4);
  }
  .gap-x-4_xxl {
    column-gap: calc(var(--etfe-grid-column-gap) * 4);
  }
  .gap-5_xxl {
    gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-y-5_xxl {
    row-gap: calc(var(--etfe-grid-row-gap) * 5);
  }
  .gap-x-5_xxl {
    column-gap: calc(var(--etfe-grid-column-gap) * 5);
  }
  .aspect-landscape_xxl {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-cover_xxl {
    aspect-ratio: 1.7777777778;
    object-fit: cover;
  }
  .aspect-landscape-contain_xxl {
    aspect-ratio: 1.7777777778;
    object-fit: contain;
  }
  .aspect-square_xxl {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-cover_xxl {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .aspect-square-contain_xxl {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .aspect-portrait_xxl {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-cover_xxl {
    aspect-ratio: 0.5625;
    object-fit: cover;
  }
  .aspect-portrait-contain_xxl {
    aspect-ratio: 0.5625;
    object-fit: contain;
  }
}

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