@charset "UTF-8";
body {
  --sb-track-color: #fff;
  --sb-thumb-color: #111;
  --sb-size: 3px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
strong {
  font-weight: 600;
}

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
  text-decoration: none;
}

/* Remove list styles (bullets/numbers) */
ul,
menu {
  list-style: none;
  margin-bottom: 0;
}

ul {
  padding: 0;
}

ul li a {
  text-decoration: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
       display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
       - fix for the content editable attribute will work properly.
       - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

body {
  --sb-track-color: #fff;
  --sb-thumb-color: #111;
  --sb-size: 3px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
strong {
  font-weight: 600;
}

.ekt-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.ekt-row > .col,
.ekt-row > .col-auto,
.ekt-row > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (max-width: 767px) {
  .ekt-row {
    row-gap: calc(2.5rem + 1.5vw);
  }
}
.row--g-xs {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.row--g-xs > .col,
.row--g-xs > .col-auto,
.row--g-xs > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.row--g-sm {
  margin-left: -0.775rem;
  margin-right: -0.775rem;
  margin-top: -0.775rem;
  margin-bottom: -0.775rem;
}

.row--g-sm > .col,
.row--g-sm > .col-auto,
.row--g-sm > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.775rem;
  padding-right: 0.775rem;
}

.row--g-md {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.row--g-md > .col,
.row--g-md > .col-auto,
.row--g-md > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.row--g-lg {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.row--g-lg > .col,
.row--g-lg > .col-auto,
.row--g-lg > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.row--g-xl {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.row--g-xl > .col,
.row--g-xl > .col-auto,
.row--g-xl > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.row--g-xxl {
  margin-left: -3.75rem;
  margin-right: -3.75rem;
  margin-top: -3.75rem;
  margin-bottom: -3.75rem;
}

.row--g-xxl > .col,
.row--g-xxl > .col-auto,
.row--g-xxl > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.row--g-xxxl {
  margin-left: -5rem;
  margin-right: -5rem;
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.row--g-xxxl > .col,
.row--g-xxxl > .col-auto,
.row--g-xxxl > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5rem;
  padding-right: 5rem;
}

@media (min-width: 640px) {
  .sm\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .sm\:row--g-xs > .col,
  .sm\:row--g-xs > .col-auto,
  .sm\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .sm\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .sm\:row--g-sm > .col,
  .sm\:row--g-sm > .col-auto,
  .sm\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .sm\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .sm\:row--g-md > .col,
  .sm\:row--g-md > .col-auto,
  .sm\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sm\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .sm\:row--g-lg > .col,
  .sm\:row--g-lg > .col-auto,
  .sm\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .sm\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .sm\:row--g-xl > .col,
  .sm\:row--g-xl > .col-auto,
  .sm\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .sm\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .sm\:row--g-xxl > .col,
  .sm\:row--g-xxl > .col-auto,
  .sm\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .sm\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .sm\:row--g-xxxl > .col,
  .sm\:row--g-xxxl > .col-auto,
  .sm\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 768px) {
  .md\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .md\:row--g-xs > .col,
  .md\:row--g-xs > .col-auto,
  .md\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .md\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .md\:row--g-sm > .col,
  .md\:row--g-sm > .col-auto,
  .md\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .md\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .md\:row--g-md > .col,
  .md\:row--g-md > .col-auto,
  .md\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .md\:row--g-lg > .col,
  .md\:row--g-lg > .col-auto,
  .md\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .md\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .md\:row--g-xl > .col,
  .md\:row--g-xl > .col-auto,
  .md\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .md\:row--g-xxl > .col,
  .md\:row--g-xxl > .col-auto,
  .md\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .md\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .md\:row--g-xxxl > .col,
  .md\:row--g-xxxl > .col-auto,
  .md\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 991px) {
  .lg\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .lg\:row--g-xs > .col,
  .lg\:row--g-xs > .col-auto,
  .lg\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .lg\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .lg\:row--g-sm > .col,
  .lg\:row--g-sm > .col-auto,
  .lg\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .lg\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .lg\:row--g-md > .col,
  .lg\:row--g-md > .col-auto,
  .lg\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .lg\:row--g-lg > .col,
  .lg\:row--g-lg > .col-auto,
  .lg\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .lg\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .lg\:row--g-xl > .col,
  .lg\:row--g-xl > .col-auto,
  .lg\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .lg\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .lg\:row--g-xxl > .col,
  .lg\:row--g-xxl > .col-auto,
  .lg\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .lg\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .lg\:row--g-xxxl > .col,
  .lg\:row--g-xxxl > .col-auto,
  .lg\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .xl\:row--g-xs > .col,
  .xl\:row--g-xs > .col-auto,
  .xl\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xl\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .xl\:row--g-sm > .col,
  .xl\:row--g-sm > .col-auto,
  .xl\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .xl\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .xl\:row--g-md > .col,
  .xl\:row--g-md > .col-auto,
  .xl\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xl\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .xl\:row--g-lg > .col,
  .xl\:row--g-lg > .col-auto,
  .xl\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .xl\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .xl\:row--g-xl > .col,
  .xl\:row--g-xl > .col-auto,
  .xl\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xl\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .xl\:row--g-xxl > .col,
  .xl\:row--g-xxl > .col-auto,
  .xl\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xl\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .xl\:row--g-xxxl > .col,
  .xl\:row--g-xxxl > .col-auto,
  .xl\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1440px) {
  .xxl\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .xxl\:row--g-xs > .col,
  .xxl\:row--g-xs > .col-auto,
  .xxl\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xxl\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .xxl\:row--g-sm > .col,
  .xxl\:row--g-sm > .col-auto,
  .xxl\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .xxl\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .xxl\:row--g-md > .col,
  .xxl\:row--g-md > .col-auto,
  .xxl\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xxl\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .xxl\:row--g-lg > .col,
  .xxl\:row--g-lg > .col-auto,
  .xxl\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .xxl\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .xxl\:row--g-xl > .col,
  .xxl\:row--g-xl > .col-auto,
  .xxl\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xxl\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .xxl\:row--g-xxl > .col,
  .xxl\:row--g-xxl > .col-auto,
  .xxl\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xxl\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .xxl\:row--g-xxxl > .col,
  .xxl\:row--g-xxxl > .col-auto,
  .xxl\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1600px) {
  .xxxl\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .xxxl\:row--g-xs > .col,
  .xxxl\:row--g-xs > .col-auto,
  .xxxl\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xxxl\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .xxxl\:row--g-sm > .col,
  .xxxl\:row--g-sm > .col-auto,
  .xxxl\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .xxxl\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .xxxl\:row--g-md > .col,
  .xxxl\:row--g-md > .col-auto,
  .xxxl\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xxxl\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .xxxl\:row--g-lg > .col,
  .xxxl\:row--g-lg > .col-auto,
  .xxxl\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .xxxl\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .xxxl\:row--g-xl > .col,
  .xxxl\:row--g-xl > .col-auto,
  .xxxl\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xxxl\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .xxxl\:row--g-xxl > .col,
  .xxxl\:row--g-xxl > .col-auto,
  .xxxl\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xxxl\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .xxxl\:row--g-xxxl > .col,
  .xxxl\:row--g-xxxl > .col-auto,
  .xxxl\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.offset-3 {
  margin-left: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.offset-6 {
  margin-left: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.offset-9 {
  margin-left: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-12 {
  margin-left: 100%;
}

@media (min-width: 640px) {
  .sm\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .sm\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .sm\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .sm\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .sm\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .sm\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .sm\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .sm\:offset-3 {
    margin-left: 25%;
  }
  .sm\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .sm\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .sm\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .sm\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .sm\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .sm\:offset-6 {
    margin-left: 50%;
  }
  .sm\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .sm\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .sm\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .sm\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .sm\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .sm\:offset-9 {
    margin-left: 75%;
  }
  .sm\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .sm\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .sm\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .sm\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .sm\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .sm\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .md\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .md\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .md\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .md\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .md\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .md\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .md\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .md\:offset-3 {
    margin-left: 25%;
  }
  .md\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .md\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .md\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .md\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .md\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .md\:offset-6 {
    margin-left: 50%;
  }
  .md\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .md\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .md\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .md\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .md\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .md\:offset-9 {
    margin-left: 75%;
  }
  .md\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .md\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .md\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .md\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .md\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .md\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 991px) {
  .lg\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .lg\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .lg\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .lg\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .lg\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .lg\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .lg\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .lg\:offset-3 {
    margin-left: 25%;
  }
  .lg\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .lg\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .lg\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .lg\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .lg\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .lg\:offset-6 {
    margin-left: 50%;
  }
  .lg\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .lg\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .lg\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .lg\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .lg\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .lg\:offset-9 {
    margin-left: 75%;
  }
  .lg\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .lg\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .lg\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .lg\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .lg\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .lg\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1280px) {
  .xl\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .xl\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .xl\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .xl\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .xl\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .xl\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .xl\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .xl\:offset-3 {
    margin-left: 25%;
  }
  .xl\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .xl\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .xl\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .xl\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .xl\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .xl\:offset-6 {
    margin-left: 50%;
  }
  .xl\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .xl\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .xl\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .xl\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .xl\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .xl\:offset-9 {
    margin-left: 75%;
  }
  .xl\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .xl\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .xl\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .xl\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .xl\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .xl\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1440px) {
  .xxl\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .xxl\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .xxl\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .xxl\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxl\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .xxl\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxl\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .xxl\:offset-3 {
    margin-left: 25%;
  }
  .xxl\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .xxl\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxl\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .xxl\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxl\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .xxl\:offset-6 {
    margin-left: 50%;
  }
  .xxl\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .xxl\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxl\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .xxl\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxl\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .xxl\:offset-9 {
    margin-left: 75%;
  }
  .xxl\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .xxl\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxl\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .xxl\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxl\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .xxl\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1600px) {
  .xxxl\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .xxxl\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .xxxl\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .xxxl\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxxl\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .xxxl\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxxl\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .xxxl\:offset-3 {
    margin-left: 25%;
  }
  .xxxl\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .xxxl\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxxl\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .xxxl\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxxl\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .xxxl\:offset-6 {
    margin-left: 50%;
  }
  .xxxl\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .xxxl\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxxl\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .xxxl\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxxl\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .xxxl\:offset-9 {
    margin-left: 75%;
  }
  .xxxl\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .xxxl\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxxl\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .xxxl\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxxl\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .xxxl\:offset-12 {
    margin-left: 100%;
  }
}
/* Optional alignment helpers */
.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

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

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

h2,
.h2 {
  font-size: clamp(1.3rem, 1.8vw, 3rem);
  line-height: 1.3;
  font-weight: 600;
}

h3,
.h3 {
  font-size: clamp(1.2rem, 1.4vw, 2.5rem);
  line-height: 1.3;
  font-weight: 600;
}

h4,
.h4 {
  font-size: clamp(1rem, 1.2vw, 1.8rem);
  line-height: 1.5;
  font-weight: 600;
}

.text-xs {
  font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
  line-height: 1.5;
  letter-spacing: calc(0.9rem * -0.03 + 0.6vw * -0.005);
}

.text-sm {
  font-size: clamp(1.1rem, 0.7vw + 0.8rem, 1.3rem);
  line-height: 1.5;
  letter-spacing: calc(1.1rem * -0.03 + 0.7vw * -0.005);
}

.text-md {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
}

.text-lg {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
}

.text-xl {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
}

.text-2xl {
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
  letter-spacing: calc(3rem * -0.03 + 2vw * -0.005);
}

.text-3xl {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
}

.text-4xl {
  font-size: clamp(3.2rem, 5vw + 1rem, 6.4rem);
  line-height: clamp(4.2rem, 5vw + 1rem, 7.2rem);
  letter-spacing: calc(3.2rem * -0.03 + 5vw * -0.005);
}

.text-body {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
}

.text-lg {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
}

.text-xl {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
}

.text-xxl {
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
  letter-spacing: calc(3rem * -0.03 + 2vw * -0.005);
}

.text-xxxl {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
}

.text-sl {
  font-size: clamp(3.2rem, 5vw + 1rem, 6.4rem);
  line-height: clamp(4.2rem, 5vw + 1rem, 7.2rem);
  letter-spacing: calc(3.2rem * -0.03 + 5vw * -0.005);
}

.text-caption {
  font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
  line-height: 1.5;
  letter-spacing: calc(0.9rem * -0.03 + 0.6vw * -0.005);
}

:root {
  --headerH: 12.33rem;
  --footerH: calc(7.1rem + 2.5rem);
  --bandMax: 90rem;
  --vh: 1svh;
  --header: 12.83rem;
  --footer: 11rem;
  --brand-black: #111;
  --brand-white: #f7f7f6;
  --brand-gold: #caa12a;
  --pill-red: #b31b1b;
  --dash: 2px;
  --ink: #0e1b2a;
  --bg: #f7f8fa;
  --panel: #ffffff;
  --dash: #000;
  --progress: #111;
  --a: #a5c9da;
  --b: #fcc3a4;
  --c: #fadc8c;
  --d: #b9d794;
  --e: #c59deb;
  --hl: #ff8a00; /* highlight color */
  --ink: #0e1b2a; /* base text color */
  --card: #ffffff;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  --offset: clamp(0px, 5vh, 75px);
  --quantity: 3;
}
@media only screen and (max-width: 640px) {
  :root {
    --header: 13.859rem;
  }
}

html {
  font-size: 62.5%;
  direction: ltr;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-family: "TikTok Sans", sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  font-size: 1.6rem;
  letter-spacing: -0.01rem;
  background-color: #fff;
  margin: 0;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
}

header {
  padding-block: 2.5rem;
}
header.content-padding {
  padding-right: calc(12.1rem + 5vw);
}
header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header__inner .header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(5rem + 2vw);
}
header .header__inner .header__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25rem + 5vw);
          flex: 0 0 calc(25rem + 5vw);
}
header .logo-wrapper {
  display: grid;
  grid-template-columns: -webkit-max-content 1px auto;
  grid-template-columns: max-content 1px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  width: 100%;
}
header .logo-wrapper .logo .eketa-logo-1 {
  max-width: 7rem;
}
header .logo-wrapper .logo .eketa-logo-2 {
  max-width: 25rem;
}
header .logo-wrapper .logo-line {
  width: 1px;
  height: 4.5rem;
  background-color: #000;
  display: inline-block;
}
header .logo-wrapper .logo img {
  width: 100%;
  height: auto;
}
header .logo-wrapper .logo.logo-eketa img {
  height: 100%;
}
header .primary-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(3rem + 2vw);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
header .primary-nav a {
  color: #000;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
header .primary-nav a:hover {
  color: #1d398d;
}
@media only screen and (max-width: 991px) {
  header.content-padding {
    padding-right: 11.1rem;
  }
  header .header__inner .header__left .logo-wrapper .logo .eketa-logo-1 {
    max-width: 10rem;
  }
  header .logo-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(20rem + 5vw);
            flex: 0 0 calc(20rem + 5vw);
  }
  header .logo-wrapper .logo .logo-line,
  header .logo-wrapper .logo .eketa-logo-2 {
    display: none;
  }
  header .header__social {
    display: none;
  }
  header .header__inner .header__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .primary-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 640px) {
  header .header__inner .header__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  header .primary-nav ul {
    gap: 0.25rem;
  }
  header .primary-nav ul li a {
    font-size: 1.4rem;
  }
  header .header__inner .header__left .logo-wrapper .logo .eketa-logo-1 {
    max-width: 8rem;
  }
  header .logo-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(20rem + 5vw);
            flex: 0 0 calc(20rem + 5vw);
  }
}

footer.site-footer {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
footer.site-footer .footer-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.5rem;
}
footer.site-footer .footer-wrapper .footer-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer.site-footer .footer-wrapper .footer-col.footer-col__1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  font-size: 2.4rem;
}
footer.site-footer .footer-wrapper .footer-col.footer-col__2,
footer.site-footer .footer-wrapper .footer-col.footer-col__3 {
  font-size: 1.4rem;
}
footer.site-footer .footer-wrapper .footer-col.footer-col__3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  text-align: right;
  padding-right: 6rem;
}
footer.site-footer .footer-wrapper .footer-col.footer-col__3 ul li {
  text-align: left;
}
footer.site-footer .copyright-text {
  position: relative;
  display: inline-block;
  padding-left: calc(calc(5rem + 1vw) + 2rem);
}
footer.site-footer .copyright-text::after {
  content: "";
  position: absolute;
  top: 10px;
  width: calc(5rem + 1vw);
  height: 3px;
  background: #000;
  left: 0;
}
footer.site-footer .copyright-text:after {
  top: unset;
  bottom: 7px;
}
footer.site-footer .footer-nav {
  position: relative;
  display: inline-block;
  padding-right: calc(calc(7.5rem + 10vw) + 2rem);
}
footer.site-footer .footer-nav::after {
  content: "";
  position: absolute;
  top: 10px;
  width: calc(7.5rem + 10vw);
  height: 3px;
  background: #000;
  right: 0;
}
footer.site-footer .footer-nav:after {
  top: unset;
  bottom: 7px;
}
@media only screen and (max-width: 1280px) {
  footer.site-footer .footer-nav {
    padding-right: 7.5rem;
  }
  footer.site-footer .footer-nav:after {
    width: 6rem;
  }
  footer.site-footer .footer-wrapper .footer-col.footer-col__3 {
    padding-right: 3.5rem;
  }
}
@media only screen and (max-width: 991px) {
  footer.site-footer {
    padding-right: 0;
  }
  footer.site-footer .footer-nav {
    padding-right: 0;
  }
  footer.site-footer .footer-nav:after {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  footer.site-footer .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
  footer.site-footer .footer-wrapper .footer-col.footer-col__1 {
    font-size: 1.4rem;
  }
  footer.site-footer .dev-copyright,
  footer.site-footer .footer-nav {
    font-size: 1.2rem;
  }
  footer.site-footer .footer-wrapper .footer-col.footer-col__3 .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    color: #727272;
  }
  footer.site-footer .footer-wrapper .footer-col.footer-col__3 .footer-nav:after {
    display: none;
  }
}

main.site-main {
  position: relative;
  min-height: calc(100% - 12.83rem - 11rem - env(safe-area-inset-top, 0));
}

.e_circle {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
}
.e_circle.e_circle__1 {
  border: calc(10rem + 5vw) solid #f8f8f8;
  width: calc(32rem + 25vw);
  height: calc(32rem + 25vw);
  right: 0;
  top: 0;
  -webkit-transform: translate(40%, -40%);
          transform: translate(40%, -40%);
}
.e_circle.e_circle__2 {
  border: calc(10rem + 5vw) solid #f8f8f8;
  width: calc(40rem + 25vw);
  height: calc(40rem + 25vw);
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-15%, 50%);
          transform: translate(-15%, 50%);
}

.ekt-page__home {
  min-height: calc(var(--vh) * 100);
}
.ekt-page__home.has-fixed-footer #main {
  padding-bottom: var(--footer);
}
.ekt-page__home .circles-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ekt-page__home #main {
  display: grid;
  place-content: start;
  min-width: 0;
  min-block-size: calc(var(--vh) * 100 - var(--header) - var(--footer));
  /* άσε το να μεγαλώσει αν χρειαστεί */
  block-size: auto;
  /* εδώ θα κάνει scroll όταν το περιεχόμενο περισσεύει */
  height: auto;
}
@media (min-width: 1440px) {
  .ekt-page__home #main {
    place-content: center;
  }
}
.ekt-page__home .page-content {
  display: grid;
  grid-template-rows: auto 1fr auto; /* title / body / cta */
}
.ekt-page__home section#hero-section {
  padding-block: 0 calc(2.5rem + 1vw);
}
.ekt-page__home section#hero-section .title-wrapper {
  position: relative;
  isolation: isolate;
}
.ekt-page__home section#hero-section .title-wrapper .hero-title {
  font-size: clamp(4rem, 5vw + 3rem, 9.2rem);
  line-height: clamp(6.4rem, 4.5vw + 3rem, 8rem);
  font-weight: 500;
  letter-spacing: calc(-1 * (2px + 0.02vw));
  max-width: 14ch;
}
@media (min-height: 1440px) {
  .ekt-page__home section#hero-section .title-wrapper .hero-title {
    font-size: clamp(3.6rem, 5vw + 4rem, 12.8rem);
    line-height: clamp(6.4rem, 4.5vw + 3rem, 11.8rem);
  }
}
@media (max-width: 768px) {
  .ekt-page__home section#hero-section .title-wrapper .hero-title {
    font-size: 10vw;
    line-height: 1.1;
    letter-spacing: -1px;
  }
}
.ekt-page__home section#hero-section .title-wrapper #heroWiggly {
  left: calc(-1 * (20rem + 5vw));
  width: 28rem;
  height: 28rem;
}
.ekt-page__home section#hero-section .title-wrapper #heroWiggly svg {
  width: 100%;
  height: 100%;
}
.ekt-page__home section#hero-section .cols-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ekt-page__home section#hero-section .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.ekt-page__home section#hero-section .col-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 991px) {
  .ekt-page__home section#hero-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .ekt-page__home section#hero-section .hero-title {
    font-size: clamp(2.8rem, 5rem + 4dvw, 6.4rem);
    line-height: 1.05;
    letter-spacing: clamp(-0.15rem, -0.05vw - 0.01rem, -0.35rem);
  }
  .ekt-page__home section#hero-section .col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .ekt-page__home section#hero-section .col-1 {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .ekt-page__home section#hero-section .hero-title {
    font-size: clamp(2.4rem, 10cqw, 4.2rem);
  }
}
.ekt-page__home section#projects {
  /* Let slides size themselves (like your layout) */
  /* Optional subtle hover */
}
.ekt-page__home section#projects .marquee-swiper {
  width: 100%;
}
.ekt-page__home section#projects .marquee-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.ekt-page__home section#projects .marquee-swiper .swiper-slide {
  width: clamp(28rem, 32vw, 64rem);
  height: calc(20rem + 5vw);
  overflow: hidden;
  border-radius: var(--radius);
}
.ekt-page__home section#projects .marquee-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: scale(1.001);
          transform: scale(1.001); /* avoid hairline gaps on some GPUs */
}
.ekt-page__home section#projects .marquee-swiper .swiper-wrapper {
  gap: var(--gap);
}
@media (hover: hover) {
  .ekt-page__home section#projects .marquee-swiper .swiper-slide img {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .ekt-page__home section#projects .marquee-swiper .swiper-slide:hover img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
.ekt-page__home section#home-videos {
  position: relative;
}
.ekt-page__home section#home-texts {
  padding-top: calc(2.5rem + 1vw);
}
.ekt-page__home section#home-texts .cols-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ekt-page__home section#home-texts .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.ekt-page__home section#home-texts .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(40rem + 5vw);
          flex: 0 0 calc(40rem + 5vw);
}
.ekt-page__home section#home-texts .col-2 > * {
  max-width: 45ch;
  display: block;
}
.ekt-page__home section#home-texts .col-3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.ekt-page__home section#home-texts .ekt-logo {
  position: absolute;
  top: calc(-1 * (3.5rem + 3.5vw));
  left: 4rem;
}
.ekt-page__home section#home-texts .ekt-logo img {
  max-width: 280px;
}
.ekt-page__home section#home-texts .col-2 h5 {
  color: #000000;
  line-height: 1.2;
}
.ekt-page__home section#home-texts .col-2 .sub-1 {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1280px) {
  .ekt-page__home section#home-texts .col-1 .download-program {
    display: none;
  }
  .ekt-page__home section#home-texts .col-3 {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .ekt-page__home section#home-texts .cols-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .ekt-page__home section#home-texts .col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .ekt-page__home section#home-texts .col-1 {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .ekt-page__home section#home-texts .col-2 .text {
    margin-bottom: 1.5rem;
  }
}
.ekt-page__home .download-program {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.ekt-page__home .download-program .icon {
  font-size: 2.4rem;
  margin-right: 0.5rem;
}
.ekt-page__home .download-program .label {
  font-size: 1.4rem;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .ekt-page__home #main {
    place-content: start;
    padding-top: 0;
  }
  .ekt-page__home .e_circle.e_circle__1,
  .ekt-page__home .e_circle.e_circle__2 {
    display: none;
  }
}
.ekt-page__home #home-slider {
  width: 100svw;
}
.ekt-page__home .slider {
  width: 100%;
  height: clamp(12rem, 20rem + 20vw, 42rem);
  overflow: hidden;
}
.ekt-page__home .slider .list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: calc(clamp(28rem, 38vw, 74rem) * var(--quantity));
  position: relative;
}
.ekt-page__home .slider .list .item {
  background-color: #f8f8f8;
  width: clamp(28rem, 38vw, 74rem);
  aspect-ratio: 16/10;
  position: absolute;
  left: 100%;
  -webkit-animation: autoRun 200s linear infinite;
          animation: autoRun 200s linear infinite;
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
  -webkit-animation-delay: calc(200s / var(--quantity) * (var(--position) - 1) - 200s) !important;
          animation-delay: calc(200s / var(--quantity) * (var(--position) - 1) - 200s) !important;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  overflow: hidden;
}
.ekt-page__home .slider .list .item * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.ekt-page__home .slider .list .item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16/9;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ekt-page__home .slider .list .item .card__url {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.ekt-page__home .slider .list .item img {
  width: 100%;
}
@-webkit-keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(clamp(28rem, 38vw, 74rem) * -1);
  }
}
@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(clamp(28rem, 38vw, 74rem) * -1);
  }
}
.ekt-page__home .slider:hover .item {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
  pointer-events: all;
}
.ekt-page__home .slider[reverse=true] .item {
  -webkit-animation: reversePlay 10s linear infinite;
          animation: reversePlay 10s linear infinite;
}
@-webkit-keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}
@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}
@media (max-width: 768px) {
  .ekt-page__home .slider .list .item {
    height: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .ekt-page__home .slider {
    height: 170px;
  }
}

body.error-page {
  height: 100dvh !important;
}
body.error-page #main {
  min-width: 0;
  height: calc(100% - 12.83rem - 11rem - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
}
body.error-page .page-content {
  position: relative;
  height: 100%;
  display: grid;
  place-content: center;
}
body.error-page .text-container > .content-container {
  max-width: 700px;
}
body.error-page .page-content .page-hero {
  padding-bottom: 0;
}
body.error-page .not-found-img {
  padding-bottom: 3.5rem;
}
body.error-page .not-found-container {
  text-align: center;
}
body.error-page .not-found-container h2 {
  padding-bottom: 1rem;
}

.ekt-page .content-inner {
  position: relative;
}
.ekt-page .content-title {
  position: relative;
}
.ekt-page .content-title h3 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
  font-weight: 500;
  letter-spacing: calc(-1 * (0.5px + 0.01vw));
}
.ekt-page .content-title h3:before, .ekt-page .content-title h3:after {
  top: calc(4px + 0.5vw);
}
.ekt-page .content-title h4 {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
  font-weight: 500;
}
.ekt-page .content-title h4:before, .ekt-page .content-title h4:after {
  top: 25px;
}
@media only screen and (max-width: 767px) {
  .ekt-page .content-title h4:before, .ekt-page .content-title h4:after {
    top: 20px;
  }
  .ekt-page .content-title h4:after {
    width: 4rem;
  }
}
.ekt-page .content-title--dashed {
  position: relative;
  display: inline-block;
  padding-left: calc(calc(7.5rem + 10vw) + 2rem);
}
.ekt-page .content-title--dashed::after {
  content: "";
  position: absolute;
  top: 10px;
  width: calc(7.5rem + 10vw);
  height: 3px;
  background: #000;
  left: 0;
}
.ekt-page .content-title--dashed:before {
  content: "";
  position: absolute;
  top: 25px;
  height: 3px;
  left: -100%;
  width: 100%;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .ekt-page .content-title--dashed {
    position: relative;
    display: inline-block;
    padding-left: calc(3rem + 2rem);
  }
  .ekt-page .content-title--dashed::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 3rem;
    height: 3px;
    background: #000;
    left: 0;
  }
}
.ekt-page h5 {
  font-size: clamp(1.4rem, 3vw + 0.5rem, 1.6rem);
  line-height: clamp(2.4rem, 3vw + 0.5rem, 3.2rem);
  color: #727272;
}
.ekt-page .content-text {
  text-wrap: balance;
}

.ekt-page__imerida .sc__intro-text .content-inner {
  max-width: calc(600px + 3.5vw);
  margin-left: auto;
}
.ekt-page__imerida .info-block {
  max-width: 400px;
}
.ekt-page__imerida .info-v {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  font-weight: 600;
}
.ekt-page__imerida .map-link {
  font-size: 2rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.ekt-page__imerida #programma-imerwn #daily-program {
  overflow: hidden;
}
.ekt-page__imerida #programma-imerwn .text-1 {
  max-width: calc(750px + 5vw);
}
.ekt-page__imerida .download-program {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1.2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  background: #fdf9e4;
  padding: 1.2rem 2rem;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ekt-page__imerida .download-program .label {
  max-width: 10ch;
}
.ekt-page__imerida #programma-imerwn #daily-program .tabs__pills {
  border-bottom: 2px solid #000;
}
.ekt-page__imerida #programma-imerwn #daily-program .tabs__pills .pill-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.ekt-page__imerida #programma-imerwn .dp__row {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2.5rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid #d0d0d0;
}
.ekt-page__imerida #programma-imerwn .tabs__panels .tab-inner > .dp__row:last-child {
  border-bottom: 0;
}
.ekt-page__imerida #programma-imerwn .dp__row .dp__title {
  font-weight: 700;
  text-transform: uppercase;
}
.ekt-page__imerida #programma-imerwn .dp__row .dp__title .speaker {
  font-weight: 400;
  color: #727272;
  padding-top: 3px;
}
@media only screen and (max-width: 640px) {
  .ekt-page__imerida #programma-imerwn .dp__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.ekt-page__imerida .prizes-box {
  position: relative;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: calc(5rem + 0.75vw) calc(5rem + 1.5vw);
  overflow: hidden;
  isolation: isolate;
}
.ekt-page__imerida .prizes-box:after {
  content: "";
  position: absolute;
  bottom: -40rem;
  left: -16.6666666667rem;
  background-color: rgb(237.8, 237.8, 237.8);
  width: calc(50rem + 15vw);
  height: calc(50rem + 15vw);
  border-radius: 50rem;
  z-index: -1;
}
.ekt-page__imerida .prizes-box .floating-img {
  position: absolute;
  top: calc(2.5rem + 2vw);
  right: calc(5rem + 1.5vw);
  width: calc(60px + 2vw);
}
.ekt-page__imerida .prizes-box .block-title {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
  font-weight: 500;
  margin-bottom: 3.5rem;
}
.ekt-page__imerida .prizes-box .prizes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ekt-page__imerida .prizes-box .prizes-list .prize-list__item {
  position: relative;
  padding-left: 3.75rem;
  margin-bottom: 2.5rem;
}
.ekt-page__imerida .prizes-box .prizes-list .prize-list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../icons/light.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ekt-page__imerida .prizes-box .prizes-list .prize-title {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  font-weight: 600;
  padding-bottom: 0.35rem;
}
.ekt-page__imerida .prizes-box .prizes-list .prize-description {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
}
.ekt-page__imerida #contact-section .info-v {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-top: 1rem;
}
@media only screen and (max-width: 1280px) {
  .ekt-page__imerida .download-program {
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__imerida .page-hero #heroWiggly {
    position: fixed;
  }
  .ekt-page__imerida .download-program {
    position: relative;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    margin-bottom: 3.5rem;
  }
  .ekt-page__imerida .download-program .label {
    max-width: 100ch;
  }
  .ekt-page__imerida .prizes-box {
    padding: 3.5rem;
  }
}

.ekt-page__eimaiKiEgw,
.ekt-page__vivliothiki {
  min-height: 100dvh;
  max-height: 100dvh;
  overflow-x: auto;
  /* overlay decor sits on top of the band, doesn’t catch events */
  /* place each svg by percentage; rotate via CSS var */
}
.ekt-page__eimaiKiEgw #main,
.ekt-page__vivliothiki #main {
  min-width: 0;
  height: calc(100% - 12.83rem - 11rem - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
}
.ekt-page__eimaiKiEgw #main .page-content,
.ekt-page__vivliothiki #main .page-content {
  position: relative;
  height: 100%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ekt-page__eimaiKiEgw #main .page-content .page-hero,
.ekt-page__vivliothiki #main .page-content .page-hero {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: calc(3.5rem + 5vw);
}
.ekt-page__eimaiKiEgw .horScrollWrapper,
.ekt-page__vivliothiki .horScrollWrapper {
  position: relative;
  height: calc(100svh - 12.83rem - 11rem);
  container-type: size;
  display: grid;
  place-items: center;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
  overflow: hidden;
  /* Ratio box driven by CSS variable --ar (set by JS) */
  /* Fill the ratio box; choose contain (no crop) or cover (crop) */
}
.ekt-page__eimaiKiEgw .horScrollWrapper .h-cards,
.ekt-page__vivliothiki .horScrollWrapper .h-cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.5rem + 5vw, 8.5rem + 2.5vw);
  padding-left: calc(3.5rem + 1vw);
  padding-right: 8.5rem;
  block-size: 100%;
  will-change: transform;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .h-card,
.ekt-page__vivliothiki .horScrollWrapper .h-card {
  --ar: 16 / 9;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  inline-size: min(clamp(28rem, 82cqw, 72rem), 67cqh * var(--ar));
}
.ekt-page__eimaiKiEgw .horScrollWrapper .media,
.ekt-page__vivliothiki .horScrollWrapper .media {
  position: relative;
  inline-size: 100%;
  aspect-ratio: var(--ar, 16/9);
  max-block-size: 90cqh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .media:before,
.ekt-page__vivliothiki .horScrollWrapper .media:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fdf9e4;
  z-index: -1;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .h-cards .h-card:nth-child(even) .media:before,
.ekt-page__vivliothiki .horScrollWrapper .h-cards .h-card:nth-child(even) .media:before {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.ekt-page__eimaiKiEgw .horScrollWrapper .h-cards .h-card:nth-child(odd) .media:before,
.ekt-page__vivliothiki .horScrollWrapper .h-cards .h-card:nth-child(odd) .media:before {
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
.ekt-page__eimaiKiEgw .horScrollWrapper .h-cards > :is(:nth-child(3n+2), :nth-child(3n+2)),
.ekt-page__vivliothiki .horScrollWrapper .h-cards > :is(:nth-child(3n+2), :nth-child(3n+2)) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-top: 3%;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .h-cards > :is(:nth-child(3n+2), :nth-child(3n+2)) .meta,
.ekt-page__vivliothiki .horScrollWrapper .h-cards > :is(:nth-child(3n+2), :nth-child(3n+2)) .meta {
  padding-top: 0;
  padding-bottom: 2rem;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .media > img,
.ekt-page__eimaiKiEgw .horScrollWrapper .media > video,
.ekt-page__vivliothiki .horScrollWrapper .media > img,
.ekt-page__vivliothiki .horScrollWrapper .media > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--fit, contain);
     object-fit: var(--fit, contain);
}
.ekt-page__eimaiKiEgw .horScrollWrapper .meta,
.ekt-page__vivliothiki .horScrollWrapper .meta {
  text-align: right;
  padding-top: 2rem;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .meta .name,
.ekt-page__vivliothiki .horScrollWrapper .meta .name {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  font-weight: 500;
}
.ekt-page__eimaiKiEgw .horScrollWrapper .meta .hash,
.ekt-page__vivliothiki .horScrollWrapper .meta .hash {
  font-weight: 300;
}
.ekt-page__eimaiKiEgw .decor-icons,
.ekt-page__vivliothiki .decor-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.ekt-page__eimaiKiEgw .decor-icons .ico-svg-1,
.ekt-page__vivliothiki .decor-icons .ico-svg-1 {
  width: clamp(5rem, 5rem + 5vw, 8rem);
}
.ekt-page__eimaiKiEgw .decor-icons .ico-svg-2,
.ekt-page__vivliothiki .decor-icons .ico-svg-2 {
  width: 200px;
}
.ekt-page__eimaiKiEgw .decor-icons .ico-svg-3,
.ekt-page__vivliothiki .decor-icons .ico-svg-3 {
  width: 25px;
}
.ekt-page__eimaiKiEgw .ico-svg,
.ekt-page__vivliothiki .ico-svg {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size, 56px);
  height: auto;
  -webkit-transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
          transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  will-change: transform;
  opacity: 0.95;
}
@media only screen and (max-width: 991px) {
  .ekt-page__eimaiKiEgw #main,
  .ekt-page__vivliothiki #main {
    height: calc(100% - 13.859rem - 11.43rem - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    min-height: unset;
  }
  .ekt-page__eimaiKiEgw #heroWiggly,
  .ekt-page__vivliothiki #heroWiggly {
    width: 15rem;
    height: 15rem;
    right: unset;
    left: 0;
  }
  .ekt-page__eimaiKiEgw #heroWiggly svg,
  .ekt-page__vivliothiki #heroWiggly svg {
    width: 15rem;
    height: 15rem;
  }
  .ekt-page__eimaiKiEgw #main .page-content .page-hero,
  .ekt-page__vivliothiki #main .page-content .page-hero {
    left: 5rem;
    padding-left: 0;
  }
  .ekt-page__eimaiKiEgw .horScrollWrapper .h-cards,
  .ekt-page__vivliothiki .horScrollWrapper .h-cards {
    gap: min(1.5rem + 5vw, 6.5rem);
  }
  .ekt-page__eimaiKiEgw .horScrollWrapper .h-cards > :is(:nth-child(3n+2), :nth-child(3n+2)),
  .ekt-page__vivliothiki .horScrollWrapper .h-cards > :is(:nth-child(3n+2), :nth-child(3n+2)) {
    padding-top: 1.5%;
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__eimaiKiEgw #main .page-content .page-hero,
  .ekt-page__vivliothiki #main .page-content .page-hero {
    width: calc(100% - 2.5rem);
    left: 2.5rem;
    padding-top: 1rem;
    padding-left: 0;
  }
  .ekt-page__eimaiKiEgw #main .page-content .page-hero .page-hero__title,
  .ekt-page__vivliothiki #main .page-content .page-hero .page-hero__title {
    max-width: 90%;
  }
  .ekt-page__eimaiKiEgw .horScrollWrapper .h-cards,
  .ekt-page__vivliothiki .horScrollWrapper .h-cards {
    padding-left: 2.5rem;
  }
  .ekt-page__eimaiKiEgw #imerida-cta,
  .ekt-page__vivliothiki #imerida-cta {
    display: none;
  }
}
.ekt-page__eimai-ki-egw #media-section {
  /* Apply offsets using nth-child patterns */
}
.ekt-page__eimai-ki-egw #media-section .media-grid {
  position: relative;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3; /* number of columns */
  -webkit-column-gap: clamp(2rem, 7vw, 10rem);
     -moz-column-gap: clamp(2rem, 7vw, 10rem);
          column-gap: clamp(2rem, 7vw, 10rem);
  padding-inline: clamp(0px, 1px + 15vw, 20rem);
  margin: auto;
  margin-bottom: calc(5rem + 2.5vw);
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card {
  margin-top: var(--offset-top, 0);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: auto;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card .media * {
  width: 100%;
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card.media-card__video .media-card-placeholder {
  width: 100%;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 1.2rem;
  border-radius: 8px;
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n) {
  margin-top: calc(var(--offset) * 3);
  -webkit-transform: rotate(1.5deg);
          transform: rotate(1.5deg);
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n+1) {
  margin-top: var(--offset);
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n+2) {
  margin-top: calc(var(--offset) * 4);
  -webkit-transform: rotate(1.5deg);
          transform: rotate(1.5deg);
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n+3) {
  margin-top: calc(var(--offset) * 1.5);
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}
.ekt-page__eimai-ki-egw #media-section .media-grid .media-card:hover {
  -webkit-transform: scale(1.03) rotate(0deg);
          transform: scale(1.03) rotate(0deg);
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .ekt-page__eimai-ki-egw #media-section .media-grid {
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
    padding-inline: 0;
  }
  .ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n),
  .ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n+1),
  .ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n+2),
  .ekt-page__eimai-ki-egw #media-section .media-grid .media-card:nth-child(4n+3) {
    margin-top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.ekt-page__drasi .page-hero {
  margin-bottom: calc(2.5rem + 1vw);
}
.ekt-page__drasi .page-hero .page-hero__inner {
  width: 100%;
  max-width: 100%;
}
.ekt-page__drasi .page-hero .page-hero__title {
  max-width: 17ch;
}
.ekt-page__drasi .title-top {
  padding-top: calc(2.5rem + 1.5vw);
  padding-bottom: calc(2.5rem + 1.5vw);
}
.ekt-page__drasi .title-top .draseis-label {
  display: inline-block;
  background-color: #fdf9e4;
  padding: 0.35rem 1.5rem;
}
.ekt-page__drasi .info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  row-gap: 2.5rem;
  gap: 2.5rem;
}
.ekt-page__drasi .info-blocks .col-title {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  font-weight: 600;
  color: #000;
}
.ekt-page__drasi .drasi-top .info-blocks {
  place-content: flex-end;
}
.ekt-page__drasi .drasi-top .link {
  font-size: 1.8rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.ekt-page__drasi .info-block .info-v {
  font-size: 1.8rem;
}
.ekt-page__drasi #drasi-heroImage .image-wrapper {
  height: calc(50rem + 20vw);
  max-height: 900px;
}
.ekt-page__drasi #drasi-content .content-title h2 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
  font-size: clamp(2rem, 5vw + 1.5rem, 7rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: calc(-1 * (0.5px + 0.01vw));
  max-width: calc(1200px + 22vw);
}
.ekt-page__drasi #drasi-content .content-title h2:after {
  top: 25px;
}
.ekt-page__drasi #drasi-content .ekt-row {
  padding-left: calc(7.5rem + 10vw + 2.5rem);
}
.ekt-page__drasi #drasi-content p {
  margin-bottom: calc(2.5rem + 1vw);
}
.ekt-page__drasi #drasi-content .content-row .content-col-1 {
  border-right: 1px solid #d0d0d0;
}
@media only screen and (max-width: 1440px) {
  .ekt-page__drasi #drasi-content .ekt-row {
    padding-left: 0;
  }
  .ekt-page__drasi #drasi-content .content-col-2 {
    margin-top: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__drasi #drasi-content .content-title h2 {
    font-size: clamp(2rem, 3vw + 1.5rem, 7rem);
    max-width: 100%;
  }
}
.ekt-page__drasi #imerida-banner {
  padding-left: calc(7.5rem + 10vw + 2.5rem);
  padding-bottom: calc(5rem + 5vw);
}
.ekt-page__drasi .block .block-title {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  color: #000;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.ekt-page__drasi .block {
  margin-bottom: 3.5rem;
}
.ekt-page__drasi .block ul li {
  padding-block: 0.5rem;
}
.ekt-page__drasi #ekthemata {
  margin-bottom: calc(7.5rem + 3.5vw);
}
@media only screen and (max-width: 1440px) {
  .ekt-page__drasi #imerida-banner {
    padding-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .ekt-page__drasi .drasi-top .info-blocks {
    padding-top: 3.5rem;
  }
}

.ekt-page__draseis {
  /* Horizontal scroller band */
  /* The extra-wide stage we scroll across */
  /* SVG sizing */
  /* the horizontal scroller */
  /* make the SVG actually wider than the viewport so there is something to scroll */
  /* optional: nicer trackpads/mice – convert vertical wheel to horizontal */
  /* Keep the SVG stretched to the 200vw x 100vh canvas */
  /* Walker pieces */
  /* Bottom info bar stays fixed to viewport */
  /* Respect reduced motion */
}
.ekt-page__draseis #main {
  min-width: 0;
  height: calc(100% - 12.83rem - 11rem - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
}
.ekt-page__draseis .page-content {
  position: relative;
  height: 100%;
}
.ekt-page__draseis .circles-wrapper {
  display: none;
}
.ekt-page__draseis .draseis-nav {
  /* above the sticky info box */
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.ekt-page__draseis .draseis-nav .draseis-btn {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: calc(40px + 10vw);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  z-index: 999;
}
.ekt-page__draseis .draseis-nav #btnPrev {
  left: 2.5rem;
}
.ekt-page__draseis .draseis-nav #btnNext {
  right: 3.5rem;
}
.ekt-page__draseis .draseis-nav .draseis-btn:active {
  -webkit-transform: translateY(calc(-50% + 1px)) scale(0.98);
          transform: translateY(calc(-50% + 1px)) scale(0.98);
}
.ekt-page__draseis .draseis-nav .draseis-btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 640px) {
  .ekt-page__draseis .draseis-nav .draseis-btn {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .ekt-page__draseis .draseis-nav {
    display: none;
  }
}
.ekt-page__draseis .page-hero {
  position: absolute;
  left: calc((12.1rem + 5vw) / 2);
  top: 0;
}
.ekt-page__draseis .page-content .thess-map {
  position: fixed;
  left: 0;
  bottom: -1rem;
  width: 230vw;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ekt-page__draseis .page-content .thess-map img {
  will-change: transform;
}
.ekt-page__draseis .pin {
  width: 100vw;
  height: 100%;
  position: relative;
}
.ekt-page__draseis #hscroller {
  width: 100vw;
  height: 100%;
  overflow-x: auto; /* key! */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ekt-page__draseis #hscroller:-webkit-scrollbar {
  display: none;
}
.ekt-page__draseis #stage {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
}
.ekt-page__draseis .svg-wrap,
.ekt-page__draseis .svg-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ekt-page__draseis .pin.vh.vw {
  width: 100vw;
}
.ekt-page__draseis #hwrap.vw {
  width: 200vw; /* adjust to taste (e.g., 250vw / 300vw) */
  height: 100%;
}
.ekt-page__draseis .path-future,
.ekt-page__draseis .path-progress {
  shape-rendering: geometricPrecision;
}
.ekt-page__draseis .svg-wrap svg {
  width: 200vw; /* matches your viewBox 2000 wide idea */
}
@media (min-width: 1600px) {
  .ekt-page__draseis .svg-wrap #scene {
    -webkit-transform: translate(calc(-1 * (100px + 3vw)), calc(-1 * (100px + 1vw)));
            transform: translate(calc(-1 * (100px + 3vw)), calc(-1 * (100px + 1vw)));
  }
}
@media (max-width: 1599.9px) {
  .ekt-page__draseis .svg-wrap #scene {
    -webkit-transform: translateX(50px) translateY(calc(-1 * (50px + 5vw)));
            transform: translateX(50px) translateY(calc(-1 * (50px + 5vw)));
  }
}
.ekt-page__draseis #hwrap.vw.wheel-x {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.ekt-page__draseis .svg-wrap {
  position: absolute;
  inset: 0; /* full area */
}
.ekt-page__draseis svg {
  height: 100%;
  width: 100%;
  display: block;
}
.ekt-page__draseis .path-future {
  fill: none;
  stroke: var(--dash);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  opacity: 1;
}
.ekt-page__draseis .path-progress {
  fill: none;
  stroke: var(--progress);
  stroke-width: 2;
}
.ekt-page__draseis .node text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ekt-page__draseis .node circle.main {
  border-radius: 100%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.ekt-page__draseis .node.clickable {
  cursor: pointer;
}
.ekt-page__draseis .node.clickable:hover circle.main {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ekt-page__draseis .active circle.main {
  stroke: #fff;
  stroke-width: 5px;
  outline: 1px solid var(--progress);
  outline-offset: 0px;
}
.ekt-page__draseis #walkerRig {
  will-change: transform;
}
.ekt-page__draseis .seg {
  transform-box: fill-box;
}
.ekt-page__draseis #infobox {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 11rem;
  z-index: 99;
}
.ekt-page__draseis #infobox .infobox-content {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1px 1fr 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  padding: 3.5rem 5rem;
  max-width: calc(100% - (3.5rem + 5vw) * 2);
  margin-inline: auto;
  background: rgba(165, 201, 218, 0.45);
  backdrop-filter: blur(1.5px);
  -webkit-transition: backdrop-filter 0.25s ease, background-color 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: backdrop-filter 0.25s ease, background-color 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: backdrop-filter 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  transition: backdrop-filter 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.25s ease;
}
@media (min-width: 1440px) {
  .ekt-page__draseis #infobox .infobox-content {
    max-width: 1200px;
  }
}
.ekt-page__draseis #infobox #place {
  font-weight: 300;
  font-size: 1.4rem;
}
.ekt-page__draseis #infobox #title {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
}
.ekt-page__draseis #infobox #desc {
  font-size: clamp(1.1rem, 0.7vw + 0.8rem, 1.3rem);
  line-height: 1.5;
  letter-spacing: calc(1.1rem * -0.03 + 0.7vw * -0.005);
  max-width: 80ch;
  color: #17334a;
}
.ekt-page__draseis #infobox #when {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
  font-weight: 300;
  white-space: nowrap;
}
.ekt-page__draseis #infobox #url {
  font-size: min(0.25rem + 5vw, 5.4rem);
  vertical-align: middle;
}
@media (prefers-reduced-motion: reduce) {
  .ekt-page__draseis .node.clickable:hover circle.main {
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__draseis .page-hero {
    left: 3.5rem;
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .ekt-page__draseis #infobox {
    bottom: 12.5rem;
  }
  .ekt-page__draseis #infobox .infobox-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: calc(100% - 3.5rem - 2.5rem);
    margin-inline: unset;
    margin-left: 1.5rem;
    padding: 2rem;
  }
  .ekt-page__draseis #infobox .infobox-content #place {
    font-size: 1.2rem;
  }
  .ekt-page__draseis #infobox .infobox-content #title {
    font-size: 2rem;
    font-weight: 600;
  }
  .ekt-page__draseis #infobox .infobox-content #when {
    font-size: 1.5rem;
  }
  .ekt-page__draseis #infobox .infobox-content #desc {
    display: none;
  }
  .ekt-page__draseis #infobox .infobox-content #url {
    position: absolute;
    font-size: 1.4rem;
    right: 2.5rem;
    bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__draseis {
    /* Labels: slightly bigger and tighter line-height for readability */
    /* Bigger dots */
  }
  .ekt-page__draseis .svg-wrap #scene {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scale(1.28) translateX(0) translateY(calc(-1 * (24px + 3vw)));
            transform: scale(1.28) translateX(0) translateY(calc(-1 * (24px + 3vw)));
  }
  .ekt-page__draseis .node text {
    font-size: 16px;
    line-height: 1.1;
  }
  .ekt-page__draseis .node circle.main {
    r: 24 !important;
  }
}
.ekt-page__draseis #draseis-mobile {
  display: none;
  /* CARD */
  /* Different colored stacks (optional) */
  /* HEADER */
  /* BODY (starts closed) */
}
.ekt-page__draseis #draseis-mobile .wallet {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ekt-page__draseis #draseis-mobile .wallet-card {
  background: #e7efff;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
.ekt-page__draseis #draseis-mobile .wallet-card:nth-child(1) {
  background: rgba(165, 201, 218, 0.3764705882);
  border-left: 3px solid #a5c9da;
}
.ekt-page__draseis #draseis-mobile .wallet-card:nth-child(2) {
  background: rgba(252, 195, 164, 0.4392156863);
  border-left: 3px solid #fcc3a4;
}
.ekt-page__draseis #draseis-mobile .wallet-card:nth-child(3) {
  background: rgba(250, 220, 140, 0.3764705882);
  border-left: 3px solid #fadc8c;
}
.ekt-page__draseis #draseis-mobile .wallet-card:nth-child(4) {
  background: rgba(185, 215, 148, 0.3764705882);
  border-left: 3px solid #b9d794;
}
.ekt-page__draseis #draseis-mobile .wallet-card:nth-child(5) {
  background: rgba(197, 157, 235, 0.3137254902);
  border-left: 3px solid #c59deb;
}
.ekt-page__draseis #draseis-mobile .wallet-header {
  padding: 2rem 2.5rem;
}
.ekt-page__draseis #draseis-mobile .wallet-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.ekt-page__draseis #draseis-mobile .wallet-header p {
  margin: 4px 0 0;
  color: #444;
  font-size: 14px;
}
.ekt-page__draseis #draseis-mobile .wallet-body {
  max-height: 0;
  opacity: 0;
  padding: 0 2.5rem;
  overflow: hidden;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
}
.ekt-page__draseis #draseis-mobile .wallet-body .w-date {
  padding-top: 2.5rem;
}
.ekt-page__draseis #draseis-mobile .wallet-body .w-date,
.ekt-page__draseis #draseis-mobile .wallet-body .w-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.ekt-page__draseis #draseis-mobile .wallet-body .w-date img,
.ekt-page__draseis #draseis-mobile .wallet-body .w-location img {
  width: 20px;
  margin-top: -5px;
}
.ekt-page__draseis #draseis-mobile .wallet-body .w-descr {
  margin: 15px 0;
  font-size: 14px;
  color: #3f3f3f;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ekt-page__draseis #draseis-mobile .w-action {
  font-size: 2.8rem;
  margin-left: auto;
  text-align: right;
}
.ekt-page__draseis #draseis-mobile .wallet-card.active .wallet-body {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  padding: 0 2.5rem 2.5rem;
}
@media only screen and (max-width: 991px) {
  .ekt-page__draseis #main.site-main {
    height: unset;
    min-height: unset;
  }
  .ekt-page__draseis #draseis-desktop {
    display: none;
  }
  .ekt-page__draseis #draseis-mobile {
    display: block;
  }
  .ekt-page__draseis .page-hero {
    position: relative;
    left: 0;
    padding-left: 3.5rem;
    padding-top: 2.5rem;
  }
  .ekt-page__draseis .page-hero .page-hero__inner {
    max-width: 400px;
  }
}

.ekt-page__xronologio .xronologio-section {
  position: relative;
}
.ekt-page__xronologio #xronologio-items {
  max-width: 1080px;
  padding-block: calc(5rem + 2vw);
}
.ekt-page__xronologio #heroWiggly {
  left: 25%;
}
.ekt-page__xronologio #xronologio-items .xronologio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: opacity 0.28s ease, -webkit-box-shadow 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, -webkit-box-shadow 0.28s ease, -webkit-transform 0.28s ease;
  transition: box-shadow 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
  transition: box-shadow 0.28s ease, transform 0.28s ease, opacity 0.28s ease, -webkit-box-shadow 0.28s ease, -webkit-transform 0.28s ease;
  opacity: 0.3;
  padding-bottom: calc(5rem + 2.5vw);
  padding-left: calc(3.5rem + 2vw + 2.5rem);
}
.ekt-page__xronologio #xronologio-items .xronologio-item .textAnim {
  color: var(--ink);
  -webkit-transition: color 0.28s linear;
  transition: color 0.28s linear;
}
.ekt-page__xronologio #xronologio-items .xronologio-item.is-active {
  -webkit-transform: translateX(0) scale(1.02);
          transform: translateX(0) scale(1.02);
  opacity: 1;
}
.ekt-page__xronologio #xronologio-items .xronologio-item.is-active .textAnim {
  color: #000000;
}
.ekt-page__xronologio #xronologio-items .xronologio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: calc(100% + 3.5rem + 2vw);
  height: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: linear-gradient(#000000, #000000);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.ekt-page__xronologio #xronologio-items .xronologio-item.is-active::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: linear-gradient(#000000, #000000);
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content {
  padding-left: 3.5rem;
  padding-top: calc(3.5rem + 1.5vw);
  max-width: calc(600px + 5vw);
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__year {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25rem;
          flex: 0 0 25rem;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__year span {
  display: inline-block;
  font-size: clamp(3.6rem, 5vw + 3rem, 6.8rem);
  line-height: 1;
  letter-spacing: -1px;
  margin-top: -1.5rem;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content {
  margin-left: -15rem;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .item__title {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .item__text {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
  color: #000000;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .item__text:has(+ h4) {
  margin-bottom: 2.5rem;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .item-imgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 15vw, 250px), 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .xronologio-item__mobileImg {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .xronologio-item__mobileImg {
    display: block;
  }
  .ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content .item__text {
    padding-top: calc(1rem + 0.5vw);
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__xronologio #xronologio-items .xronologio-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: calc(3.5rem + 2vw);
    padding-right: calc(3.5rem + 2vw);
    gap: 1.5rem;
  }
  .ekt-page__xronologio #xronologio-items .xronologio-item::before {
    display: none;
  }
  .ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__year {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
  }
  .ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__year::before {
    content: "";
    position: absolute;
    top: 0;
    left: -500%;
    width: calc(500% - 2.5rem);
    height: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
    background: linear-gradient(#000000, #000000);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  }
  .ekt-page__xronologio #xronologio-items .xronologio-item .xronologio-item__content {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
    max-width: 100%;
  }
}
.ekt-page__xronologio .stopper {
  height: 150px;
}
.ekt-page__xronologio .sticky-wrap {
  position: sticky;
  max-height: 70vh;
  z-index: 99;
}
.ekt-page__xronologio #xronologio-img {
  position: absolute;
  display: block;
  right: calc((12.1rem + 5vw) / 2);
  margin-left: auto;
  height: calc(350px + 10vw);
  width: calc(100dvw - 1080px - 10rem);
  max-width: 550px;
  z-index: 99;
}
@media (min-width: 1440px) {
  .ekt-page__xronologio #xronologio-img {
    min-width: 400px !important;
  }
}
@media (max-width: 1439px) {
  .ekt-page__xronologio #xronologio-img {
    height: 300px;
    min-width: 300px;
  }
}
.ekt-page__xronologio #imageStack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ekt-page__xronologio #imageStack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.35s ease, transform 0.6s ease;
  transition: opacity 0.35s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.ekt-page__xronologio #imageStack img.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ekt-page__xronologio #imerida-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1440px) {
  .ekt-page__xronologio #xronologio-items {
    max-width: 800px;
  }
}
@media (max-width: 1280px) {
  .ekt-page__xronologio .sticky-wrap {
    display: none;
  }
}

.ekt-page__xorigoi .page-hero {
  margin-bottom: calc(2.5rem + 1vw);
}
.ekt-page__xorigoi .section-xorigoi {
  padding-block: calc(3.5rem + 1vw);
}
.ekt-page__xorigoi .logos-grid {
  display: grid;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: calc(5rem + 2.5vw);
  list-style: none;
  place-content: center;
  padding: 0;
  margin: 0;
  padding-top: calc(3.5rem + 2vw);
  padding-bottom: calc(3.5rem + 2vw);
}
.ekt-page__xorigoi .logos-grid.logos-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(25rem, 45rem));
}
.ekt-page__xorigoi .logos-grid.logos-grid--small {
  grid-template-columns: repeat(auto-fit, minmax(23rem, 35rem));
  row-gap: 2.5rem;
  max-width: 1280px;
}
.ekt-page__xorigoi .logos-grid .logo-item {
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.ekt-page__xorigoi .logos-grid .logo-item .logo-card .logo-figure {
  margin: 0;
  display: grid;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.ekt-page__xorigoi .logos-grid .logo-item .logo-card .logo-figure .logo-img {
  height: calc(220px + 5vw);
  padding: 3.5rem;
  text-align: center;
}
.ekt-page__xorigoi .logos-grid.logos-grid--small .logo-item .logo-card .logo-figure .logo-img {
  height: calc(150px + 5vw);
  padding: 2rem;
}
.ekt-page__xorigoi .logos-grid .logo-item .logo-card .logo-figure img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: filter 0.3s ease, opacity 0.3s ease;
  transition: filter 0.3s ease, opacity 0.3s ease, -webkit-filter 0.3s ease;
}
.ekt-page__xorigoi .logos-grid .logo-item .logo-card .logo-figure figcaption {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #727272;
  display: none;
}
.ekt-page__xorigoi #sponsor-banner {
  position: relative;
  background-color: #222;
  padding: calc(5rem + 1vw) calc(5rem + 1vw);
  margin-block: calc(5rem + 2.5vw);
}
.ekt-page__xorigoi #sponsor-banner .bcl-top h4 {
  color: #fff;
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.ekt-page__xorigoi #sponsor-banner .bcl-bottom {
  max-width: 450px;
  margin-left: auto;
  margin-right: calc(15rem + 3vw);
  padding-top: 2.5rem;
}
.ekt-page__xorigoi #sponsor-banner .bcl-bottom .text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
  text-transform: uppercase;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 0;
}
.ekt-page__xorigoi #sponsor-banner #sb-cta {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: min(0.25rem + 5vw, 5.4rem);
  color: #ffffff;
  background-color: #a60b16;
  padding: 3.5rem;
  border-top: 3rem solid #ffffff;
  border-left: 3rem solid #ffffff;
}
.ekt-page__xorigoi #sponsor-banner .floating-img {
  position: absolute;
  right: 30%;
  top: -5rem;
}
@media only screen and (max-width: 767px) {
  .ekt-page__xorigoi #sponsor-banner .bcl-bottom {
    padding-top: 0;
    margin-right: 6rem;
  }
  .ekt-page__xorigoi #sponsor-banner .floating-img {
    top: -2rem;
    right: 10%;
    max-width: 7rem;
  }
  .ekt-page__xorigoi #sponsor-banner #sb-cta {
    padding: 1.5rem;
    font-size: 2.8rem;
    border-top-width: 1.5rem;
    border-left-width: 1.5rem;
  }
}
@media only screen and (max-width: 1280px) {
  .ekt-page__xorigoi .logos-grid.logos-grid--large {
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .ekt-page__xorigoi .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .ekt-page__xorigoi .logos-grid.logos-grid--small {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 3.5rem;
  }
  .ekt-page__xorigoi .logos-grid .logo-item .logo-card .logo-figure .logo-img {
    padding: 2rem;
  }
}

.ekt-page__diagonismoi .sc__intro-text p {
  max-width: calc(500px + 10vw);
}
.ekt-page__diagonismoi .sc__intro-text a {
  color: #a60b16;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ekt-page__diagonismoi #diagonismoi-tabs {
  padding-block: calc(5rem + 2.5vw);
}
.ekt-page__diagonismoi #diagonismoi-tabs .tabs__pills {
  border-bottom: 2px solid #000;
}
.ekt-page__diagonismoi #diagonismoi-tabs .tabs__pills .pill-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.ekt-page__diagonismoi ol {
  list-style-type: decimal;
  padding-left: 2.5rem;
}
.ekt-page__diagonismoi ol li {
  margin-bottom: 0.75rem;
}
.ekt-page__diagonismoi .diagonismos-wrapper {
  padding-block: calc(2.5rem + 1vw);
}
.ekt-page__diagonismoi .diagonismos__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: calc(2.5rem + 2vw);
}
.ekt-page__diagonismoi .diagonismos__header .diagonismos__title {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.ekt-page__diagonismoi .diagonismos__header .diagonismos__subject {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
  font-weight: 600;
  max-width: calc(600px + 10vw);
}
.ekt-page__diagonismoi .diagonismos__header .diagonismos__participate {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  gap: 1rem;
  margin-top: 1.5rem;
  background-color: #fdf9e4;
  border-radius: 1.1rem;
  padding: 1rem 1.5rem 1rem 1rem;
  max-width: 550px;
}
.ekt-page__diagonismoi .diagonismos__header .diagonismos__participate .icon {
  width: 3rem;
}
.ekt-page__diagonismoi .diagonismos__header .diagonismos__participate .icon.icon-multiple {
  width: 6rem;
}
.ekt-page__diagonismoi .diagonismos__header .diagonismos__participate .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.ekt-page__diagonismoi #gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(330px + 4vw), 1fr));
  gap: 2.5rem;
}
.ekt-page__diagonismoi #gallery-grid .d-card {
  position: relative;
  inline-size: 100%;
  aspect-ratio: var(--ar, 1.4/1);
  overflow: hidden;
}
.ekt-page__diagonismoi #gallery-grid .d-card .media > img,
.ekt-page__diagonismoi #gallery-grid .d-card .media > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--fit, cover);
     object-fit: var(--fit, cover);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.ekt-page__diagonismoi #gallery-grid .d-card:hover .media > img {
  -webkit-transform: scale(1.1) translateY(10px);
          transform: scale(1.1) translateY(10px);
}
.ekt-page__diagonismoi .diagonismoi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-block: calc(5rem + 2.5vw);
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card {
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
  isolation: isolate;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(45deg, #f8f8f8 25%, #d5b320 25%, #d5b320 50%, #f8f8f8 50%, #f8f8f8 75%, #d5b320 75%);
  background-size: 15px 15px;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card.d-card-2:before {
  background: linear-gradient(-45deg, #f8f8f8 25%, #a60b16 25%, #a60b16 50%, #f8f8f8 50%, #f8f8f8 75%, #a60b16 75%);
  background-size: 15px 15px;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content {
  padding: calc(2.5rem + 1vw) calc(2.5rem + 1vw) calc(3.5rem + 1.5vw) calc(2.5rem + 1vw);
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content .d-card__class {
  position: relative;
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
  font-weight: 300;
  margin-bottom: 1rem;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content .d-card__class:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -60px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 10px solid #d5b320;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card.d-card-2 .d-card__content .d-card__class:before {
  border-color: #a60b16;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content .d-card__title {
  position: relative;
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
  color: #000;
  margin-bottom: 1.5rem;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content .d-card__desc {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
  color: #000;
  margin-top: 2.5rem;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content .d-card__desc p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.ekt-page__diagonismoi .diagonismoi-cards .d-card .d-card__content .d-card__desc .l {
  display: inline-block;
  font-weight: 600;
  background-color: rgb(235.25, 235.25, 235.25);
  padding: 3px 14px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1440px) {
  .ekt-page__diagonismoi #gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media only screen and (max-width: 1280px) {
  .ekt-page__diagonismoi #gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}
@media only screen and (max-width: 640px) {
  .ekt-page__diagonismoi #gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.ekt-page__diagonismos .page-hero .page-hero__inner {
  max-width: calc(900px + 5vw);
}
.ekt-page__diagonismos .page-hero .page-hero__inner .page-hero__title {
  font-size: clamp(4rem, 5vw + 2rem, 6.8rem);
  line-height: clamp(4rem, 5vw + 2rem, 8rem);
}
.ekt-page__diagonismos #gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(330px + 4vw), 1fr));
  gap: 2.5rem;
  max-width: 1600px;
  margin-inline: auto;
}
.ekt-page__diagonismos #gallery-grid .d-card {
  position: relative;
  inline-size: 100%;
  aspect-ratio: var(--ar, 1.4/1);
  overflow: hidden;
}
.ekt-page__diagonismos #gallery-grid .d-card .media > img,
.ekt-page__diagonismos #gallery-grid .d-card .media > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--fit, cover);
     object-fit: var(--fit, cover);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.ekt-page__diagonismos #gallery-grid .d-card:hover .media > img {
  -webkit-transform: scale(1.1) translateY(10px);
          transform: scale(1.1) translateY(10px);
}

.ekt-page__sulloges {
  /* Hint aspect ratio for videos until metadata loads (prevents layout shift) */
}
.ekt-page__sulloges .macy-gallery {
  position: relative;
  padding-bottom: calc(5rem + 2.5vw);
}
.ekt-page__sulloges .card {
  overflow: hidden;
  background: #f8f8f8;
}
.ekt-page__sulloges .card > img,
.ekt-page__sulloges .card > video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.ekt-page__sulloges .media {
  aspect-ratio: 16/9;
}

.ekt-page__epikoinonia #section-intro {
  max-width: calc(600px + 3.5vw);
  margin-left: auto;
}
.ekt-page__epikoinonia .contact-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-block: calc(5rem + 2.5vw);
}
.ekt-page__epikoinonia #form-section {
  position: relative;
}
.ekt-page__epikoinonia #form-section .floating-img-2 {
  position: absolute;
  top: -5rem;
  left: 10%;
  width: clamp(50px, 20vw, 100px);
  z-index: -1;
}
.ekt-page__epikoinonia #form-section .floating-img-1 {
  position: absolute;
  top: -5rem;
  right: 10%;
  width: clamp(50px, 20vw, 100px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .ekt-page__epikoinonia #form-section .floating-img-2,
  .ekt-page__epikoinonia #form-section .floating-img-1 {
    display: none;
  }
}
.ekt-page__epikoinonia #email-section {
  position: relative;
  text-align: right;
}
.ekt-page__epikoinonia #email-section .email {
  display: inline-block;
  font-size: min(0.25rem + 5vw, 5.4rem);
  font-weight: 300;
  line-height: 1;
  color: #000000;
  position: relative;
  z-index: 1;
}
.ekt-page__epikoinonia #email-section .email:before {
  content: "";
  position: absolute;
  bottom: calc(5px + 0.15vw);
  left: -500%;
  width: calc(500% - 2.5rem);
  height: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: linear-gradient(#000000, #000000);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.ekt-page__epikoinonia #faq-section {
  padding-top: calc(2.5rem + 2vw);
}
.ekt-page__epikoinonia #faq-section .faq-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
.ekt-page__epikoinonia #faq-section .faq-container .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25rem;
          flex: 0 0 25rem;
  padding-right: 2.5rem;
}
.ekt-page__epikoinonia #faq-section .faq-container .faq-questions {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 800px;
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .ekt-page__epikoinonia #faq-section .faq-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ekt-page__epikoinonia #faq-section .faq-container .faq-questions {
    max-width: 100%;
    margin-left: 0;
  }
  .ekt-page__epikoinonia #faq-section .faq-container .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.ekt-page__epikoinonia #social-section {
  margin-top: calc(5rem + 2vw);
  text-align: center;
}
.ekt-page__epikoinonia #social-section .social-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ekt-page__epikoinonia #social-section .social-links li a {
  font-size: min(0.25rem + 5vw, 3.6rem);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.ekt-page__epikoinonia #social-section .social-links li a .icon-youtube {
  font-size: min(0.25rem + 5vw, 4.6rem);
}
.ekt-page__epikoinonia #social-section .social-links li a:hover {
  color: #000000;
}
@media only screen and (max-width: 640px) {
  .ekt-page__epikoinonia .contact-form {
    padding-top: 0;
  }
}

body.legal-page #main.site-main {
  padding-block: 3.5rem calc(5rem + 1.5vw);
}
body.legal-page .page-content {
  max-width: calc(800px + 10vw);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

#imerida-cta {
  position: fixed;
  left: 0;
  bottom: calc(13.5rem + 1.5vw);
  font-weight: 600;
  background-color: #d5b320;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  z-index: 99;
}
#imerida-cta .t {
  vertical-align: top;
}
#imerida-cta .icon {
  font-size: min(0.25rem + 5vw, 4.2rem);
  line-height: 1;
  padding-left: calc(1.5rem + 2.5vw);
}
#imerida-cta .icon:before {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  #imerida-cta {
    bottom: 11rem;
    padding-block: 1rem;
  }
}

.djacc .djacc__panel {
  height: calc(100dvh - 110px);
  border-radius: 15px;
}
.djacc .djacc__reset,
.djacc .djacc__close {
  text-align: center;
}

body {
  --sb-track-color: #fff;
  --sb-thumb-color: #111;
  --sb-size: 3px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
strong {
  font-weight: 600;
}

.ekt-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.ekt-row > .col,
.ekt-row > .col-auto,
.ekt-row > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (max-width: 767px) {
  .ekt-row {
    row-gap: calc(2.5rem + 1.5vw);
  }
}
.row--g-xs {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.row--g-xs > .col,
.row--g-xs > .col-auto,
.row--g-xs > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.row--g-sm {
  margin-left: -0.775rem;
  margin-right: -0.775rem;
  margin-top: -0.775rem;
  margin-bottom: -0.775rem;
}

.row--g-sm > .col,
.row--g-sm > .col-auto,
.row--g-sm > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.775rem;
  padding-right: 0.775rem;
}

.row--g-md {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.row--g-md > .col,
.row--g-md > .col-auto,
.row--g-md > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.row--g-lg {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.row--g-lg > .col,
.row--g-lg > .col-auto,
.row--g-lg > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.row--g-xl {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.row--g-xl > .col,
.row--g-xl > .col-auto,
.row--g-xl > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.row--g-xxl {
  margin-left: -3.75rem;
  margin-right: -3.75rem;
  margin-top: -3.75rem;
  margin-bottom: -3.75rem;
}

.row--g-xxl > .col,
.row--g-xxl > .col-auto,
.row--g-xxl > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.row--g-xxxl {
  margin-left: -5rem;
  margin-right: -5rem;
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.row--g-xxxl > .col,
.row--g-xxxl > .col-auto,
.row--g-xxxl > [class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5rem;
  padding-right: 5rem;
}

@media (min-width: 640px) {
  .sm\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .sm\:row--g-xs > .col,
  .sm\:row--g-xs > .col-auto,
  .sm\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .sm\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .sm\:row--g-sm > .col,
  .sm\:row--g-sm > .col-auto,
  .sm\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .sm\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .sm\:row--g-md > .col,
  .sm\:row--g-md > .col-auto,
  .sm\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sm\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .sm\:row--g-lg > .col,
  .sm\:row--g-lg > .col-auto,
  .sm\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .sm\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .sm\:row--g-xl > .col,
  .sm\:row--g-xl > .col-auto,
  .sm\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .sm\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .sm\:row--g-xxl > .col,
  .sm\:row--g-xxl > .col-auto,
  .sm\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .sm\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .sm\:row--g-xxxl > .col,
  .sm\:row--g-xxxl > .col-auto,
  .sm\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 768px) {
  .md\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .md\:row--g-xs > .col,
  .md\:row--g-xs > .col-auto,
  .md\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .md\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .md\:row--g-sm > .col,
  .md\:row--g-sm > .col-auto,
  .md\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .md\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .md\:row--g-md > .col,
  .md\:row--g-md > .col-auto,
  .md\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .md\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .md\:row--g-lg > .col,
  .md\:row--g-lg > .col-auto,
  .md\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .md\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .md\:row--g-xl > .col,
  .md\:row--g-xl > .col-auto,
  .md\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .md\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .md\:row--g-xxl > .col,
  .md\:row--g-xxl > .col-auto,
  .md\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .md\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .md\:row--g-xxxl > .col,
  .md\:row--g-xxxl > .col-auto,
  .md\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 991px) {
  .lg\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .lg\:row--g-xs > .col,
  .lg\:row--g-xs > .col-auto,
  .lg\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .lg\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .lg\:row--g-sm > .col,
  .lg\:row--g-sm > .col-auto,
  .lg\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .lg\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .lg\:row--g-md > .col,
  .lg\:row--g-md > .col-auto,
  .lg\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .lg\:row--g-lg > .col,
  .lg\:row--g-lg > .col-auto,
  .lg\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .lg\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .lg\:row--g-xl > .col,
  .lg\:row--g-xl > .col-auto,
  .lg\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .lg\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .lg\:row--g-xxl > .col,
  .lg\:row--g-xxl > .col-auto,
  .lg\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .lg\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .lg\:row--g-xxxl > .col,
  .lg\:row--g-xxxl > .col-auto,
  .lg\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .xl\:row--g-xs > .col,
  .xl\:row--g-xs > .col-auto,
  .xl\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xl\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .xl\:row--g-sm > .col,
  .xl\:row--g-sm > .col-auto,
  .xl\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .xl\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .xl\:row--g-md > .col,
  .xl\:row--g-md > .col-auto,
  .xl\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xl\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .xl\:row--g-lg > .col,
  .xl\:row--g-lg > .col-auto,
  .xl\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .xl\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .xl\:row--g-xl > .col,
  .xl\:row--g-xl > .col-auto,
  .xl\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xl\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .xl\:row--g-xxl > .col,
  .xl\:row--g-xxl > .col-auto,
  .xl\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xl\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .xl\:row--g-xxxl > .col,
  .xl\:row--g-xxxl > .col-auto,
  .xl\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1440px) {
  .xxl\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .xxl\:row--g-xs > .col,
  .xxl\:row--g-xs > .col-auto,
  .xxl\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xxl\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .xxl\:row--g-sm > .col,
  .xxl\:row--g-sm > .col-auto,
  .xxl\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .xxl\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .xxl\:row--g-md > .col,
  .xxl\:row--g-md > .col-auto,
  .xxl\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xxl\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .xxl\:row--g-lg > .col,
  .xxl\:row--g-lg > .col-auto,
  .xxl\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .xxl\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .xxl\:row--g-xl > .col,
  .xxl\:row--g-xl > .col-auto,
  .xxl\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xxl\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .xxl\:row--g-xxl > .col,
  .xxl\:row--g-xxl > .col-auto,
  .xxl\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xxl\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .xxl\:row--g-xxxl > .col,
  .xxl\:row--g-xxxl > .col-auto,
  .xxl\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1600px) {
  .xxxl\:row--g-xs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }
  .xxxl\:row--g-xs > .col,
  .xxxl\:row--g-xs > .col-auto,
  .xxxl\:row--g-xs > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .xxxl\:row--g-sm {
    margin-left: -0.775rem;
    margin-right: -0.775rem;
    margin-top: -0.775rem;
    margin-bottom: -0.775rem;
  }
  .xxxl\:row--g-sm > .col,
  .xxxl\:row--g-sm > .col-auto,
  .xxxl\:row--g-sm > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0.775rem;
    padding-right: 0.775rem;
  }
  .xxxl\:row--g-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
  .xxxl\:row--g-md > .col,
  .xxxl\:row--g-md > .col-auto,
  .xxxl\:row--g-md > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .xxxl\:row--g-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }
  .xxxl\:row--g-lg > .col,
  .xxxl\:row--g-lg > .col-auto,
  .xxxl\:row--g-lg > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .xxxl\:row--g-xl {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .xxxl\:row--g-xl > .col,
  .xxxl\:row--g-xl > .col-auto,
  .xxxl\:row--g-xl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xxxl\:row--g-xxl {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
    margin-top: -3.75rem;
    margin-bottom: -3.75rem;
  }
  .xxxl\:row--g-xxl > .col,
  .xxxl\:row--g-xxl > .col-auto,
  .xxxl\:row--g-xxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .xxxl\:row--g-xxxl {
    margin-left: -5rem;
    margin-right: -5rem;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .xxxl\:row--g-xxxl > .col,
  .xxxl\:row--g-xxxl > .col-auto,
  .xxxl\:row--g-xxxl > [class*=col-] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.offset-3 {
  margin-left: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.offset-6 {
  margin-left: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.offset-9 {
  margin-left: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-12 {
  margin-left: 100%;
}

@media (min-width: 640px) {
  .sm\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .sm\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .sm\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .sm\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .sm\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .sm\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .sm\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .sm\:offset-3 {
    margin-left: 25%;
  }
  .sm\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .sm\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .sm\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .sm\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .sm\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .sm\:offset-6 {
    margin-left: 50%;
  }
  .sm\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .sm\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .sm\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .sm\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .sm\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .sm\:offset-9 {
    margin-left: 75%;
  }
  .sm\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .sm\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .sm\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .sm\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .sm\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .sm\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .md\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .md\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .md\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .md\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .md\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .md\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .md\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .md\:offset-3 {
    margin-left: 25%;
  }
  .md\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .md\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .md\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .md\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .md\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .md\:offset-6 {
    margin-left: 50%;
  }
  .md\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .md\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .md\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .md\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .md\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .md\:offset-9 {
    margin-left: 75%;
  }
  .md\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .md\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .md\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .md\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .md\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .md\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 991px) {
  .lg\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .lg\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .lg\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .lg\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .lg\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .lg\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .lg\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .lg\:offset-3 {
    margin-left: 25%;
  }
  .lg\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .lg\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .lg\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .lg\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .lg\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .lg\:offset-6 {
    margin-left: 50%;
  }
  .lg\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .lg\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .lg\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .lg\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .lg\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .lg\:offset-9 {
    margin-left: 75%;
  }
  .lg\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .lg\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .lg\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .lg\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .lg\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .lg\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1280px) {
  .xl\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .xl\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .xl\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .xl\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .xl\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .xl\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .xl\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .xl\:offset-3 {
    margin-left: 25%;
  }
  .xl\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .xl\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .xl\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .xl\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .xl\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .xl\:offset-6 {
    margin-left: 50%;
  }
  .xl\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .xl\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .xl\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .xl\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .xl\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .xl\:offset-9 {
    margin-left: 75%;
  }
  .xl\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .xl\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .xl\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .xl\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .xl\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .xl\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1440px) {
  .xxl\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .xxl\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .xxl\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .xxl\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxl\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .xxl\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxl\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .xxl\:offset-3 {
    margin-left: 25%;
  }
  .xxl\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .xxl\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxl\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .xxl\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxl\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .xxl\:offset-6 {
    margin-left: 50%;
  }
  .xxl\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .xxl\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxl\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .xxl\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxl\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .xxl\:offset-9 {
    margin-left: 75%;
  }
  .xxl\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .xxl\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxl\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .xxl\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxl\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .xxl\:offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1600px) {
  .xxxl\:col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
  }
  .xxxl\:col-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .xxxl\:col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .xxxl\:offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxxl\:col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .xxxl\:offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxxl\:col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .xxxl\:offset-3 {
    margin-left: 25%;
  }
  .xxxl\:col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .xxxl\:offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxxl\:col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .xxxl\:offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxxl\:col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .xxxl\:offset-6 {
    margin-left: 50%;
  }
  .xxxl\:col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .xxxl\:offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxxl\:col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .xxxl\:offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxxl\:col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .xxxl\:offset-9 {
    margin-left: 75%;
  }
  .xxxl\:col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .xxxl\:offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxxl\:col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .xxxl\:offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxxl\:col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .xxxl\:offset-12 {
    margin-left: 100%;
  }
}
/* Optional alignment helpers */
.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

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

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

h2,
.h2 {
  font-size: clamp(1.3rem, 1.8vw, 3rem);
  line-height: 1.3;
  font-weight: 600;
}

h3,
.h3 {
  font-size: clamp(1.2rem, 1.4vw, 2.5rem);
  line-height: 1.3;
  font-weight: 600;
}

h4,
.h4 {
  font-size: clamp(1rem, 1.2vw, 1.8rem);
  line-height: 1.5;
  font-weight: 600;
}

.text-xs {
  font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
  line-height: 1.5;
  letter-spacing: calc(0.9rem * -0.03 + 0.6vw * -0.005);
}

.text-sm {
  font-size: clamp(1.1rem, 0.7vw + 0.8rem, 1.3rem);
  line-height: 1.5;
  letter-spacing: calc(1.1rem * -0.03 + 0.7vw * -0.005);
}

.text-md {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
}

.text-lg {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
}

.text-xl {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
}

.text-2xl {
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
  letter-spacing: calc(3rem * -0.03 + 2vw * -0.005);
}

.text-3xl {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
}

.text-4xl {
  font-size: clamp(3.2rem, 5vw + 1rem, 6.4rem);
  line-height: clamp(4.2rem, 5vw + 1rem, 7.2rem);
  letter-spacing: calc(3.2rem * -0.03 + 5vw * -0.005);
}

.text-body {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
}

.text-lg {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
}

.text-xl {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
}

.text-xxl {
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
  letter-spacing: calc(3rem * -0.03 + 2vw * -0.005);
}

.text-xxxl {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.8rem);
  line-height: clamp(3.2rem, 4vw + 1rem, 5.8rem);
  letter-spacing: calc(2.4rem * -0.03 + 5vw * -0.005);
}

.text-sl {
  font-size: clamp(3.2rem, 5vw + 1rem, 6.4rem);
  line-height: clamp(4.2rem, 5vw + 1rem, 7.2rem);
  letter-spacing: calc(3.2rem * -0.03 + 5vw * -0.005);
}

.text-caption {
  font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
  line-height: 1.5;
  letter-spacing: calc(0.9rem * -0.03 + 0.6vw * -0.005);
}

.content-padding {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
@media only screen and (max-width: 1280px) {
  .content-padding {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .content-padding {
    padding-left: 2.5rem;
    padding-right: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .content-padding {
    padding-left: 1.5rem;
    padding-right: 4.5rem;
  }
}

.site-container {
  max-width: calc(100% - (3.5rem + 5vw) * 2);
  margin-inline: auto;
}
.content-container {
  max-width: calc(100% - (12.1rem + 5vw));
  margin-inline: auto;
}
.content-container.--centered {
  display: grid;
  place-items: center;
}
@media only screen and (max-width: 991px) {
  .content-container {
    max-width: calc(100% - 10rem);
  }
}
@media only screen and (max-width: 767px) {
  .content-container {
    max-width: 100%;
    padding-left: 2.5rem;
    padding-right: 4.5rem;
  }
}

.content-container--noRightGap {
  max-width: calc(100% - (12.1rem + 5vw) / 2);
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .content-container--noRightGap {
    max-width: calc(100% - 5rem);
  }
}
@media only screen and (max-width: 767px) {
  .content-container--noRightGap {
    max-width: 100%;
    padding-left: 2.5rem;
    padding-right: 4.5rem;
  }
}

.padLeftGap {
  padding-left: calc(9.5rem + 10vw);
}
@media only screen and (max-width: 991px) {
  .padLeftGap.padLeftGap {
    padding-left: 0;
  }
}

.mrLeftGap {
  margin-left: calc(9.5rem + 10vw);
}
@media only screen and (max-width: 991px) {
  .mrLeftGap.mrLeftGap {
    margin-left: 0;
  }
}

.text-container {
  max-width: 900px;
}
.text-container._lg {
  max-width: 1280px;
}
.text-container._gapLeft {
  margin-left: calc(9.5rem + 10vw);
}
.text-container.--centered {
  margin-inline: auto;
}
.text-container hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2.5rem 0;
}
.text-container a {
  color: #a60b16;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.text-container ol {
  list-style: inside decimal;
  margin-left: 0;
  padding-left: 2.5rem;
}
.text-container ol li {
  margin-bottom: 1rem;
}
.text-container ul {
  list-style: inside disc;
  margin-left: 0;
  padding-left: 2.5rem;
}
.text-container ul li {
  margin-bottom: 1rem;
}
.text-container h1 + p,
.text-container h1 + img {
  margin-top: calc(1.5rem + 1vw);
}
.text-container h2 + p,
.text-container h2 + img {
  margin-top: calc(1.5rem + 1vw);
}
.text-container h3 + p,
.text-container h3 + img {
  margin-top: calc(1.5rem + 1vw);
}
.text-container h4 + p,
.text-container h4 + img {
  margin-top: calc(1.5rem + 1vw);
}
.text-container h5 + p,
.text-container h5 + img {
  margin-top: calc(1.5rem + 1vw);
}
.text-container h6 + p,
.text-container h6 + img {
  margin-top: calc(1.5rem + 1vw);
}
.text-container > * + * {
  margin-top: 3.5rem;
}
.text-container > h1 + p,
.text-container > h2 + p,
.text-container > h3 + p,
.text-container > h4 + p {
  margin-top: 2.5rem;
}
.text-container > p + p {
  margin-top: 2.75rem;
}
.text-container > h2 + h3,
.text-container > h3 + h4 {
  margin-top: 2.5rem;
}
.text-container p {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
}
@media only screen and (max-width: 991px) {
  .text-container._gapLeft {
    margin-left: 0;
  }
}

.page-hero {
  padding-top: calc(2.5rem + 2vw);
  padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
.page-hero .page-hero__inner {
  position: relative;
  max-width: 600px;
}
.page-hero .page-hero__title {
  position: relative;
  font-size: clamp(2.25rem, 7.187vw + 0.813rem, 8rem);
  line-height: clamp(2.7rem, 6.625vw + 1.375rem, 8rem);
  font-weight: 500;
  letter-spacing: calc(-1 * (2px + 0.02vw));
  isolation: isolate;
}
.page-hero .page-hero__title .highlighted {
  white-space: nowrap;
  margin-left: 5px;
}

#heroWiggly {
  position: absolute;
  right: calc(-1 * min(15rem + 10vw, 25rem) / 2.3);
  bottom: calc(-1 * min(15rem + 10vw, 25rem) / 1.75);
  width: min(15rem + 10vw, 25rem);
  height: min(15rem + 10vw, 25rem);
  pointer-events: none;
  opacity: 0.9;
  z-index: -1;
}
#heroWiggly.--left {
  left: -5%;
}
#heroWiggly svg {
  width: 20rem;
  height: 20rem;
  display: block;
  transform-box: fill-box;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
#heroWiggly svg path {
  stroke: rgb(182.5, 182.5, 182.5);
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
}

.pady-lg {
  padding-top: calc(2.5rem + 2vw);
  padding-bottom: calc(2.5rem + 2vw);
}
@media only screen and (max-width: 767px) {
  .pady-lg {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.padt-lg {
  padding-top: calc(2.5rem + 2vw);
}
@media only screen and (max-width: 767px) {
  .padt-lg {
    padding-top: 3.5rem;
  }
}

.padb-lg {
  padding-bottom: calc(2.5rem + 2vw);
}
@media only screen and (max-width: 767px) {
  .padb-lg {
    padding-bottom: 3.5rem;
  }
}

.pady-md {
  padding-top: calc(2.5rem + 1vw);
  padding-bottom: calc(2.5rem + 1vw);
}

.padt-md {
  padding-top: 2.5rem;
}

.padb-md {
  padding-bottom: 2.5rem;
}

.highlighted {
  position: relative;
  display: inline-block;
  color: #ffffff;
  margin-right: 7.5px;
}
.highlighted:before {
  content: "";
  position: absolute;
  top: 10%;
  left: -0.5rem;
  width: calc(100% + 1.25rem);
  height: 80%;
  background-color: #a60b16;
  z-index: -1;
}
.highlighted.--gold {
  color: rgb(146.4918367347, 123.1081632653, 22.0081632653);
}
.highlighted.--gold:before {
  background-color: #fdf9e4;
}
@media only screen and (max-width: 991px) {
  .highlighted:before {
    top: 15%;
    height: 70%;
  }
}

/* Larger fluid text scale */
.text-xs {
  font-size: clamp(0.9rem, 0.6vw + 0.7rem, 1.1rem);
  line-height: 1.5;
}

.text-sm {
  font-size: clamp(1.1rem, 0.7vw + 0.8rem, 1.3rem);
  line-height: 1.5;
}

.text-md {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.55;
}

.text-lg {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.4;
}

.text-xl {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
}

.text-2xl {
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
}

.text-bold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

/* Optional line-height utilities */
.lh-tighter {
  line-height: 1;
}

.lh-tight {
  line-height: 1.2;
}

.lh-normal {
  line-height: 1.5;
}

.lh-loose {
  line-height: 1.8;
}

.indent-0 {
  text-indent: 0;
}

/* about one character */
/* good default */
.image-wrapper {
  position: relative;
}
.image-wrapper.--full {
  width: 100%;
  max-width: 100%;
}
.image-wrapper.--full img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 1.5rem;
}

.mt-md {
  margin-top: 2.5rem;
}

.mt-lg {
  margin-top: 3.5rem;
}

.mt-xl {
  margin-top: calc(5rem + 2vw);
}

.mt-2xl {
  margin-top: calc(7.5rem + 2vw);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.mb-sm {
  margin-bottom: 1.5rem;
}

.mb-md {
  margin-bottom: 2.5rem;
}

.mb-lg {
  margin-bottom: 3.5rem;
}

.mb-xl {
  margin-bottom: calc(5rem + 2vw);
}

.mb-2xl {
  margin-bottom: calc(7.5rem + 2vw);
}

.ml-0 {
  margin-left: 0;
}

.ml-xs {
  margin-left: 0.5rem;
}

.ml-sm {
  margin-left: 1.5rem;
}

.ml-md {
  margin-left: 2.5rem;
}

.ml-lg {
  margin-left: 3.5rem;
}

.ml-xl {
  margin-left: calc(5rem + 2vw);
}

.ml-2xl {
  margin-left: calc(7.5rem + 2vw);
}

.mr-0 {
  margin-right: 0;
}

.mr-xs {
  margin-right: 0.5rem;
}

.mr-sm {
  margin-right: 1.5rem;
}

.mr-md {
  margin-right: 2.5rem;
}

.mr-lg {
  margin-right: 3.5rem;
}

.mr-xl {
  margin-right: calc(5rem + 2vw);
}

.mr-2xl {
  margin-right: calc(7.5rem + 2vw);
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-xs {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-sm {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-md {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-lg {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-xl {
  margin-top: calc(5rem + 2vw);
  margin-bottom: calc(5rem + 2vw);
}

.my-2xl {
  margin-top: calc(7.5rem + 2vw);
  margin-bottom: calc(7.5rem + 2vw);
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-xs {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-sm {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-md {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-lg {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.mx-xl {
  margin-left: calc(5rem + 2vw);
  margin-right: calc(5rem + 2vw);
}

.mx-2xl {
  margin-left: calc(7.5rem + 2vw);
  margin-right: calc(7.5rem + 2vw);
}

.pt-0 {
  padding-top: 0;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pt-sm {
  padding-top: 1.5rem;
}

.pt-md {
  padding-top: 2.5rem;
}

.pt-lg {
  padding-top: 3.5rem;
}

.pt-xl {
  padding-top: calc(5rem + 2vw);
}

.pt-2xl {
  padding-top: calc(7.5rem + 2vw);
}

.pb-0 {
  padding-bottom: 0;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.pb-sm {
  padding-bottom: 1.5rem;
}

.pb-md {
  padding-bottom: 2.5rem;
}

.pb-lg {
  padding-bottom: 3.5rem;
}

.pb-xl {
  padding-bottom: calc(5rem + 2vw);
}

.pb-2xl {
  padding-bottom: calc(7.5rem + 2vw);
}

.pl-0 {
  padding-left: 0;
}

.pl-xs {
  padding-left: 0.5rem;
}

.pl-sm {
  padding-left: 1.5rem;
}

.pl-md {
  padding-left: 2.5rem;
}

.pl-lg {
  padding-left: 3.5rem;
}

.pl-xl {
  padding-left: calc(5rem + 2vw);
}

.pl-2xl {
  padding-left: calc(7.5rem + 2vw);
}

.pr-0 {
  padding-right: 0;
}

.pr-xs {
  padding-right: 0.5rem;
}

.pr-sm {
  padding-right: 1.5rem;
}

.pr-md {
  padding-right: 2.5rem;
}

.pr-lg {
  padding-right: 3.5rem;
}

.pr-xl {
  padding-right: calc(5rem + 2vw);
}

.pr-2xl {
  padding-right: calc(7.5rem + 2vw);
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-xs {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-sm {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-md {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-lg {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-xl {
  padding-top: calc(5rem + 2vw);
  padding-bottom: calc(5rem + 2vw);
}

.py-2xl {
  padding-top: calc(7.5rem + 2vw);
  padding-bottom: calc(7.5rem + 2vw);
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-xs {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-sm {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-md {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-lg {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-xl {
  padding-left: calc(5rem + 2vw);
  padding-right: calc(5rem + 2vw);
}

.px-2xl {
  padding-left: calc(7.5rem + 2vw);
  padding-right: calc(7.5rem + 2vw);
}

.e_link {
  position: relative;
  text-decoration: none;
  color: #a60b16;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.e_link:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -1.85rem;
  bottom: 0.5rem;
  width: 1.5rem;
  height: 2px;
  background: #000;
  margin-right: 0.5em;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}
.e_link:hover {
  color: #a60b16;
}
.e_link:hover:before {
  -webkit-animation: animated-dash 0.3s forwards;
          animation: animated-dash 0.3s forwards;
  background: #a60b16;
}
.e_link:not(:hover):before {
  -webkit-animation: none;
          animation: none;
}

.label__dashed {
  position: relative;
  display: inline-block;
  color: #000000;
  padding-left: 1.75rem;
}
.label__dashed:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 1.5rem;
  height: 2px;
  background: #000;
}

@-webkit-keyframes animated-dash {
  0% {
    width: 0;
  }
  100% {
    width: 1.5rem;
  }
}

@keyframes animated-dash {
  0% {
    width: 0;
  }
  100% {
    width: 1.5rem;
  }
}
.v-rail {
  width: 36px;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  right: 2.5rem;
  inset-block: 0;
  z-index: 10;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .v-rail {
    right: 1rem;
    width: 24px;
  }
}

/* Pause on hover/focus */
.v-rail-track {
  -webkit-animation: vr-scroll 45s linear infinite;
          animation: vr-scroll 45s linear infinite;
  will-change: transform;
}

.v-rail-group {
  /* real vertical writing */
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.28);
  font-size: 2.4rem;
  font-weight: 100;
  text-transform: uppercase;
  /* add consistent spacing between tokens */
  word-spacing: 1rem;
  /* keep line compact so bullets feel connected */
  white-space: nowrap;
  /* center text within the rail horizontally */
  height: auto;
  display: inline-block;
  padding-inline: 6px; /* side padding inside the rail */
}
@media only screen and (max-width: 991px) {
  .v-rail-group {
    font-size: 1.8rem;
  }
}

/* Two stacked copies are ~200% total height; move by -50% to loop perfectly */
@-webkit-keyframes vr-scroll {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes vr-scroll {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .v-rail-track {
    -webkit-animation: none;
            animation: none;
  }
}
.flyover-menu {
  position: fixed;
  top: 3px;
  right: 4rem;
  z-index: 99999;
}
.flyover-menu #flyover-menu-toggle {
  background-color: #a60b16;
  padding: 0.65rem 3.75rem 0.65rem 1.75rem;
  -webkit-transform: translateY(100%) rotate(-90deg);
          transform: translateY(100%) rotate(-90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.flyover-menu #flyover-menu-toggle .menu-label {
  color: #ffffff;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 500;
}
.flyover-menu #flyover-menu-toggle .icon {
  color: #ffffff;
}
.flyover-menu #flyover-menu-toggle[aria-expanded=true] {
  -webkit-transform: translateY(157%) rotate(-90deg);
          transform: translateY(157%) rotate(-90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media only screen and (max-width: 991px) {
  .flyover-menu {
    right: 4rem;
  }
  .flyover-menu #flyover-menu-toggle {
    padding: 0.5rem 5rem 0.5rem 0.85rem;
    -webkit-transform: translateY(calc(100% - 1px)) rotate(-90deg);
            transform: translateY(calc(100% - 1px)) rotate(-90deg);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  .flyover-menu #flyover-menu-toggle .menu-label {
    display: none;
  }
  .flyover-menu #flyover-menu-toggle .icon {
    font-size: 2rem;
  }
}

.infinite-slider {
  width: 100vw;
  white-space: nowrap;
  overflow: hidden;
}
.infinite-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: marquee 50s linear infinite;
          animation: marquee 50s linear infinite;
}
.infinite-slider:hover .slider-track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.infinite-slider .slide-group {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
.infinite-slider .card {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(28rem, 38vw, 50rem);
  height: clamp(12rem, 10rem + 10vw, 38rem);
  background: #000;
  overflow: hidden;
}
.infinite-slider .card.card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16/9;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  display: block;
}
.infinite-slider .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media only screen and (max-width: 991px) {
  .infinite-slider .slide-group {
    gap: 1.5rem;
  }
  .infinite-slider .card {
    width: clamp(40rem, 55vw, 72rem);
    height: clamp(15rem, 10rem + 20vw, 45rem);
    aspect-ratio: 16/9;
  }
  .infinite-slider .card.card__video iframe {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}
@media only screen and (max-width: 640px) {
  .infinite-slider .card {
    width: clamp(28rem, 80vw, 60rem);
    height: clamp(15rem, 10rem + 20vw, 38rem);
  }
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* Motion safety */
.ekt-tabs .tabs__pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin; /* Firefox */
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x proximity;
      scroll-snap-type: x proximity;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
}
.ekt-tabs .tabs__pills::-webkit-scrollbar {
  height: 8px;
}
.ekt-tabs .tabs__pills::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.ekt-tabs .pill-btn {
  opacity: 0.35;
  padding: 2rem 3.5rem;
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
  letter-spacing: calc(3rem * -0.03 + 2vw * -0.005);
  font-weight: 600;
  color: 1.8rem;
  white-space: nowrap;
  letter-spacing: -0.5px;
  scroll-snap-align: start;
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}
.ekt-tabs .pill-btn:first-child {
  padding-left: 4rem;
}
.ekt-tabs .pill-btn:last-child {
  padding-right: 4rem;
}
.ekt-tabs .pill-btn:hover {
  cursor: pointer;
  opacity: 1;
}
.ekt-tabs .pill-btn.active {
  position: relative;
  opacity: 1;
}
.ekt-tabs .pill-btn:not(:last-child) {
  border-right: 2px solid #000;
}
.ekt-tabs .tabs__navigation {
  position: relative;
}
.ekt-tabs .tabs__navigation .tabs__arrow {
  position: absolute;
  border: 0;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  top: 0.75rem;
}
.ekt-tabs .tabs__navigation .tabs__arrow.tabs__arrow--left {
  left: -1rem;
}
.ekt-tabs .tabs__navigation .tabs__arrow.tabs__arrow--right {
  right: -1rem;
}
.ekt-tabs .tabs__navigation .tabs__arrow:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.ekt-tabs .tabs {
  width: 100%;
  padding: 2.5rem;
}
.ekt-tabs .tabs__panels {
  width: 100%;
  padding: 20px 0;
}
.ekt-tabs .tabs__panels .tab-inner {
  width: 100%;
}
.ekt-tabs .tabs__panels > div {
  width: 100%;
  display: none;
  gap: 20px;
}
.ekt-tabs .tabs__panels > div.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 978px) {
  .ekt-tabs .tabs__panels > div.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .ekt-tabs .tabs__navigation .tabs__arrow[hidden] {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .ekt-tabs .pill-btn {
    font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
    line-height: 1.3;
    letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
    padding: 1rem 2.5rem;
  }
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
          animation: gzoomIn 0.5s ease;
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
#imerida-banner > a {
  width: 100%;
  display: block;
}
#imerida-banner.--centered {
  display: grid;
  place-items: center;
}
#imerida-banner.--centered > a {
  display: grid;
  place-items: center;
}
#imerida-banner .banner-content {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 30rem;
  max-width: 1280px;
}
#imerida-banner .banner-content .banner-content__left {
  position: relative;
  background-color: #efefef;
  padding: 5rem;
  background-color: #efefef;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  corner-bottom-right-shape: bevel;
  corner-top-right-shape: bevel;
  isolation: isolate;
  overflow: hidden;
}
#imerida-banner .banner-content .banner-content__left .circle {
  display: block;
  position: absolute;
  border: calc(10rem + 1vw) solid #ddd;
  width: calc(32rem + 15vw);
  height: calc(32rem + 15vw);
  right: calc(-1 * (16rem + 5vw));
  top: calc(-1 * (10rem + 1vw));
  border-radius: 100%;
  z-index: -1;
}
#imerida-banner .banner-content .banner-content__left:after {
  content: "";
  position: absolute;
  right: 0px;
  inset-block: 0;
  height: 100%;
  width: 2px;
  border-right: 2px dashed #ffffff;
}
#imerida-banner .banner-content .banner-content__right {
  position: relative;
  background-color: #efefef;
  background-color: #efefef;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  corner-bottom-left-shape: bevel;
  corner-top-left-shape: bevel;
  padding: 5rem;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  isolation: isolate;
}
#imerida-banner .banner-content .banner-content__right .icon {
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
  font-size: min(0.25rem + 5vw, 4.2rem);
}
#imerida-banner .banner-content .banner-content__right:after {
  content: "";
  position: absolute;
  left: 0px;
  inset-block: 0;
  height: 100%;
  width: 2px;
  border-left: 2px dashed #ffffff;
}
#imerida-banner .banner-content:hover .banner-content__right {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
#imerida-banner .banner-content .banner-content__left .bcl-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
#imerida-banner .banner-content .banner-content__left .bcl-top .eketa-logo {
  width: 8rem;
  height: auto;
  margin-right: 2rem;
}
#imerida-banner .banner-content .banner-content__left .bcl-top h4 {
  font-size: clamp(3rem, 2vw + 1.5rem, 4rem);
  line-height: 1.2;
  letter-spacing: calc(3rem * -0.03 + 2vw * -0.005);
  font-weight: 500;
  max-width: 24ch;
}
#imerida-banner .banner-content .banner-content__left .bcl-bottom {
  max-width: 600px;
  margin-left: auto;
  padding-top: 2.5rem;
}
#imerida-banner .banner-content .banner-content__left .bcl-bottom .datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: 0.75rem;
}
#imerida-banner .banner-content .banner-content__left .bcl-bottom .datetime .line {
  display: inline-block;
  width: 7.5rem;
  height: 1px;
  background-color: #000000;
}
@media only screen and (max-width: 1280px) {
  #imerida-banner .banner-content {
    grid-template-columns: 1fr 20rem;
  }
  #imerida-banner .banner-content .banner-content__left .circle {
    top: calc(-1 * (16rem + 5vw));
    left: calc(-1 * (16rem + 5vw));
    right: unset;
  }
}
@media only screen and (max-width: 767px) {
  #imerida-banner .banner-content {
    grid-template-columns: 1fr;
  }
  #imerida-banner .banner-content .banner-content__left {
    border-top-right-radius: unset;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    corner-bottom-left-shape: bevel;
    corner-top-right-shape: bevel;
  }
  #imerida-banner .banner-content .banner-content__left:after {
    inset-block: unset;
    inset-inline: 0;
    width: calc(100% - 60px);
    margin-inline: auto;
    height: 2px;
    bottom: 0;
    border-top: 2px dashed #ffffff;
  }
  #imerida-banner .banner-content .banner-content__right {
    border-bottom-left-radius: unset;
    border-top-right-radius: 30px;
    corner-top-right-shape: bevel;
  }
  #imerida-banner .banner-content .banner-content__right:after {
    inset-block: unset;
    inset-inline: 0;
    width: calc(100% - 60px);
    margin-inline: auto;
    height: 2px;
    top: 0;
    border-top: 2px dashed #ffffff;
  }
  #imerida-banner .banner-content:hover .banner-content__right {
    -webkit-transform: none;
            transform: none;
  }
  #imerida-banner .banner-content .banner-content__left .bcl-top .eketa-logo {
    display: none;
  }
  #imerida-banner .banner-content .banner-content__left .bcl-bottom .datetime .line {
    display: inline-block;
    width: calc(1rem + 1vw);
    height: 1px;
    background-color: #000000;
  }
}
@media only screen and (max-width: 480px) {
  #imerida-banner .banner-content .banner-content__left,
  #imerida-banner .banner-content .banner-content__right {
    padding: 3.5rem;
  }
  #imerida-banner .banner-content .banner-content__left .bcl-bottom .datetime {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.1rem;
  }
  #imerida-banner .banner-content .banner-content__left .bcl-bottom .datetime span {
    display: none;
  }
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 5.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem calc(3.5rem + 1vw);
  -webkit-transition: background 0.25s ease, color 0.25s ease, -webkit-transform 0.15s ease;
  transition: background 0.25s ease, color 0.25s ease, -webkit-transform 0.15s ease;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--primary {
  background: #a60b16;
  color: #fff;
}
.btn--primary:active {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.btn--outline {
  background: transparent;
}
.btn--outline:hover {
  color: #fff;
}

.faq-questions .faq-item {
  border-top: 1px solid #000000;
  overflow: hidden;
}
.faq-questions .faq-question {
  position: relative;
  width: 100%;
  padding: 3.5rem 0;
  text-align: left;
  font-size: clamp(1.6rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.5;
  letter-spacing: calc(1.6rem * -0.03 + 1.2vw * -0.005);
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-questions .faq-question:hover {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}
.faq-questions .faq-question .faq-title {
  display: inline-block;
  font-weight: 500;
  color: #000000;
  width: 100%;
  max-width: 90%;
}
.faq-questions .faq-question .icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.8rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-questions .faq-question:hover .icon {
  -webkit-transform: translateX(-7px) translateY(-50%);
          transform: translateX(-7px) translateY(-50%);
}
.faq-questions .faq-question .icon::before {
  content: "+"; /* default state */
  display: inline-block;
  font-weight: 700;
  line-height: 1;
}
.faq-questions .faq-question.active .icon::before {
  content: "–"; /* when expanded (en dash looks nicer) */
}
.faq-questions .faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background-color: #fff;
}
.faq-questions .faq-answer p {
  padding-bottom: 2.5rem;
  line-height: 1.5;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.social-links a .icon {
  font-size: 2rem;
}
.social-links a .icon.icon-youtube {
  font-size: 2.3rem;
}

.exhibition-content .exhibition-group {
  max-width: 1280px;
}
.exhibition-content .exhibition-group + * {
  margin-top: 5rem;
}
.exhibition-content .exhibition-group .eg-title {
  font-size: clamp(2.5rem, 1.8vw + 1.3rem, 3rem);
  line-height: 1.3;
  letter-spacing: calc(2.5rem * -0.03 + 1.8vw * -0.005);
}
.exhibition-content .exhibition-group .link-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.exhibition-content .exhibition-group .link-title .icon {
  font-size: 2.8rem;
}
.exhibition-content .exhibition-group .exhibition-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3.5rem;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  background-color: #f8f8f8;
  padding: 4rem 5rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin-top: 5rem;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item:hover {
  -webkit-box-shadow: rgba(50, 50, 93, 0.05) 0px 20px 40px -5px, rgba(0, 0, 0, 0.1) 0px 10px 20px -10px;
          box-shadow: rgba(50, 50, 93, 0.05) 0px 20px 40px -5px, rgba(0, 0, 0, 0.1) 0px 10px 20px -10px;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-title {
  font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.3;
  letter-spacing: calc(2rem * -0.03 + 1.4vw * -0.005);
  font-weight: 500;
  max-width: calc(100% - clamp(300px, 20vw, 350px));
  margin-bottom: 2.5rem;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-description {
  text-wrap: pretty;
  color: #727272;
  max-width: calc(100% - clamp(300px, 20vw, 350px));
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item.--noImg .e-description {
  max-width: 800px;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-description + .e-description {
  margin-top: 1.5rem;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .item_img {
  position: absolute;
  right: 5rem;
  top: -3.5rem;
  max-width: 300px;
  height: 100%;
  height: 250px;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .item_img .media > img,
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .item_img .media > video {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 40px 80px -10px, rgba(0, 0, 0, 0.3) 0px 15px 40px -15px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 40px 80px -10px, rgba(0, 0, 0, 0.3) 0px 15px 40px -15px;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .item_top {
  min-height: 150px;
  padding-right: 2.5rem;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item.--noImg {
  margin-top: 0;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item.--noImg .item_top {
  min-height: unset;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .item-imgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 120px);
  gap: 2rem;
  margin-top: 2.5rem;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-requirements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid #e0e0e0;
}
.exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-requirements .e-requirements__list .e-requirements__item {
  display: inline-block;
  font-weight: 500;
  background-color: white;
  padding: 5px 16px;
  border-radius: 25px;
}
@media only screen and (max-width: 1280px) {
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item {
    padding: 3.5rem 4rem;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-title {
    max-width: 100%;
    text-align: center;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-description {
    max-width: 100%;
    text-align: center;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .item_top {
    padding-right: 0;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .item_img {
    position: relative;
    right: unset;
    margin-inline: auto;
    top: unset;
    height: unset;
    max-width: calc(200px + 20vw);
    max-height: unset;
    margin-top: -6.5rem;
    margin-bottom: 2rem;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-requirements {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.5rem;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .item-imgs-grid {
    padding-bottom: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item {
    padding: 3rem 3rem;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-title {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .exhibition-content .exhibition-group .exhibition-list .exhibition-item .e-description {
    font-size: 1.4rem;
    line-height: 1.55;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  -webkit-transition: clip-path 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: clip-path 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.overlay.is-open {
  pointer-events: auto;
}

.overlay--light {
  color: var(--brand-black);
  background: transparent;
}

.overlay__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 800px at 80% -20%, rgba(202, 161, 42, 0.14), transparent 60%), var(--brand-white);
}

.overlay__bg .wm-25 {
  position: absolute;
  right: 6vw;
  bottom: 6vh;
  width: min(38vw, 520px);
  color: var(--brand-gold);
}

.overlay__bg .rings {
  position: absolute;
  left: -12vw;
  top: -10vh;
  width: min(70vw, 900px);
  color: var(--brand-black);
}

/* content */
.overlay__inner {
  position: relative;
  max-width: min(1200px, 90vw);
  margin: clamp(72px, 8vh, 120px) auto;
  display: grid;
  gap: clamp(24px, 3vh, 48px);
}

.overlay__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(15px, 1.8vh, 30px);
}

.overlay__nav a {
  display: inline-block;
  text-decoration: none;
  color: currentColor;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(32px, 6.4vw, 72px);
  border-bottom: 1px dashed transparent;
}

.overlay__nav a:hover {
  border-bottom-color: currentColor;
}

.overlay__nav a[data-split] .line {
  display: inline-block;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}

.overlay__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 48px);
}

.overlay__meta .kicker {
  font-size: 1.4rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.overlay__meta a {
  color: var(--brand-black);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}

.overlay__meta a:hover {
  border-bottom-color: currentColor;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .overlay {
    -webkit-transition: none;
    transition: none;
  }
}
[data-anim] {
  opacity: 0;
  -webkit-transform: translateY(26px);
          transform: translateY(26px);
}

.clip-line {
  display: block; /* one line per block */
  clip-path: inset(0 100% 0 0); /* hidden from the right */
  will-change: clip-path;
}

html:not(.st-ready) [data-st-fade],
html:not(.st-ready) [data-st-slide-right],
html:not(.st-ready) [data-st-slide-left],
html:not(.st-ready) [data-st-divider],
html:not(.st-ready) [data-st-clip],
html:not(.st-ready) [data-st-parallax],
html:not(.st-ready) [data-st-batch] .card,
html:not(.st-ready) [data-st-pop] {
  visibility: hidden;
}

/* hide native checkbox */
/* base checkbox styling */
.form-check-input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

/* checked state */
.form-check-input:checked {
  background-color: #000;
}

/* white tick */
.form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* style the label text */
.control-label label,
.form-check-inline label {
  cursor: pointer;
  font-size: 15px;
}

.form-group {
  margin-bottom: 2.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.form-group input[type=text],
.form-group input[type=tel],
.form-group input[type=email] {
  width: 100%;
  height: 5.8rem;
  border: 2px solid #000000;
  padding: 0.5rem 1.5rem;
}
.form-group .label-control-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 7px;
  cursor: pointer;
}
.form-group.checkbox-group label {
  font-weight: 500;
}
.form-group textarea {
  min-height: 12.5rem;
  width: 100%;
  resize: vertical;
  border: 2px solid #000000;
  padding: 1.5rem 1.5rem;
}

/* Base styling */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 0.5rem 1.5rem;
  height: 5.8rem;
  border: 2px solid #000;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  position: relative;
  background-image: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Add custom arrow */
.form-select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Hover & focus */
.form-select:hover {
  border-color: #000;
}

.form-select:focus {
  outline: none;
  border-color: #000;
}

/* Disabled */
.form-select:disabled {
  background-color: #f0f0f0;
  color: #888;
  cursor: not-allowed;
}

form small {
  display: block;
  font-size: 1.4rem;
  color: #727272;
  margin-top: 0.75rem;
}
form .control-group.upload-file .controls {
  background-color: #f8f8f8;
  padding: 25px;
}
form .control-group.upload-file .controls #jform_painting-desc {
  margin-top: 1rem;
}
form button[type=submit] {
  gap: 1rem;
  margin-top: 3.5rem;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}/*# sourceMappingURL=app.css.map */