.lots-scope {
  margin: 0;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
.lots-scope *,
.lots-scope *::before,
.lots-scope *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lots-scope main {
  display: block;
}
.lots-scope h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.lots-scope hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
.lots-scope pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
.lots-scope abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
.lots-scope b,
.lots-scope strong {
  font-weight: bolder;
}
.lots-scope code,
.lots-scope kbd,
.lots-scope samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
.lots-scope small {
  font-size: 80%;
}
.lots-scope sub,
.lots-scope sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.lots-scope sub {
  bottom: -0.25em;
}
.lots-scope sup {
  top: -0.5em;
}
.lots-scope img {
  border-style: none;
}
.lots-scope button,
.lots-scope input,
.lots-scope optgroup,
.lots-scope select,
.lots-scope textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
.lots-scope button,
.lots-scope input {
  /* 1 */
  overflow: visible;
}
.lots-scope button,
.lots-scope select {
  /* 1 */
  text-transform: none;
}
.lots-scope button,
.lots-scope [type=button],
.lots-scope [type=reset],
.lots-scope [type=submit] {
  -webkit-appearance: button;
}
.lots-scope button::-moz-focus-inner,
.lots-scope [type=button]::-moz-focus-inner,
.lots-scope [type=reset]::-moz-focus-inner,
.lots-scope [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.lots-scope button:-moz-focusring,
.lots-scope [type=button]:-moz-focusring,
.lots-scope [type=reset]:-moz-focusring,
.lots-scope [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.lots-scope fieldset {
  padding: 0.35em 0.75em 0.625em;
}
.lots-scope legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
.lots-scope progress {
  vertical-align: baseline;
}
.lots-scope textarea {
  overflow: auto;
}
.lots-scope [type=checkbox],
.lots-scope [type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
.lots-scope [type=number]::-webkit-inner-spin-button,
.lots-scope [type=number]::-webkit-outer-spin-button {
  height: auto;
}
.lots-scope [type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
.lots-scope [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.lots-scope ::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
.lots-scope details {
  display: block;
}
.lots-scope summary {
  display: list-item;
}
.lots-scope template {
  display: none;
}
.lots-scope [hidden] {
  display: none;
}

.lots-scope {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--font-family, inherit) !important;
}
.lots-scope * {
  font-family: inherit;
}
.lots-scope h1,
.lots-scope h2,
.lots-scope h3,
.lots-scope h4,
.lots-scope h5,
.lots-scope h6,
.lots-scope p {
  margin: 0;
}

.lots-btn {
  --fore-color: #000;
  --back-color: #fff;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  border: solid 1px var(--fore-color);
  color: var(--fore-color);
  width: fit-content;
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  /* Responsive adjustments for mobile screens */
  /* Further adjustments for very small screens */
}
.lots-btn__line {
  display: block;
  height: 1px;
  width: 24px;
  background: var(--back-color);
  margin-left: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.lots-btn__line::after {
  content: " ";
  height: 8px;
  width: 8px;
  border: solid 1px var(--back-color);
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
}
.lots-btn:hover .lots-btn__line {
  transform: translateX(6px);
  width: 30px;
}
.lots-btn--lg .lots-btn__line {
  height: 2px;
}
.lots-btn--lg .lots-btn__line::after {
  border-width: 2px;
}
.lots-btn--xs .lots-btn__line, .lots-btn--sm .lots-btn__line {
  width: 16px;
  height: 1px;
}
.lots-btn--xs .lots-btn__line::after, .lots-btn--sm .lots-btn__line::after {
  border-width: 1px;
  height: 6px;
  width: 6px;
  margin-top: -3px;
}
.lots-btn--xs:hover .lots-btn__line, .lots-btn--sm:hover .lots-btn__line {
  transform: translateX(3px);
  width: 19px;
}
.lots-btn:hover {
  color: var(--back-color);
  background: var(--fore-color);
}
.lots-btn:active {
  opacity: 0.9;
  transform: translateY(1px);
}
.lots-btn--primary {
  background: var(--fore-color);
  color: var(--back-color);
}
.lots-btn--secondary {
  background-color: transparent;
  border-color: transparent;
  background: rgba(0, 0, 0, 0.1);
}
.lots-btn--secondary:hover {
  color: var(--fore-color);
  background: rgba(0, 0, 0, 0.2);
}
.lots-btn--tertiary {
  border-color: transparent;
  background-color: transparent;
}
.lots-btn--rounded {
  border-radius: 120px;
}
.lots-btn--lg {
  padding: 16px 28px;
  font-size: 22px;
}
.lots-btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}
.lots-btn--xs {
  padding: 8px 10px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .lots-btn, .lots-btn--md {
    padding: 12px 18px;
    font-size: 15px;
  }
  .lots-btn--lg {
    padding: 14px 24px;
    font-size: 20px;
  }
  .lots-btn--sm {
    padding: 8px 14px;
    font-size: 13px;
  }
  .lots-btn--xs {
    padding: 6px 8px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .lots-btn, .lots-btn--md {
    padding: 10px 16px;
    font-size: 14px;
  }
  .lots-btn--lg {
    padding: 12px 20px;
    font-size: 18px;
  }
  .lots-btn--sm {
    padding: 6px 12px;
    font-size: 12px;
  }
  .lots-btn--xs {
    padding: 4px 6px;
    font-size: 10px;
  }
}

.lots-block-stack,
.lots-inline-stack {
  display: flex;
  flex-direction: row;
  gap: var(--gap, 8px);
}

.lots-inline-stack {
  align-items: center;
}

.lots-block-stack {
  flex-direction: column;
}

.lots-visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.lots-max-w-screen-none, .lots-max-w-none {
  max-width: none;
}
.lots-max-w-xs {
  max-width: 320px;
}
.lots-max-w-sm {
  max-width: 384px;
}
.lots-max-w-md {
  max-width: 448px;
}
.lots-max-w-lg {
  max-width: 512px;
}
.lots-max-w-xl {
  max-width: 576px;
}
.lots-max-w-2xl {
  max-width: 672px;
}
.lots-max-w-3xl {
  max-width: 768px;
}
.lots-max-w-4xl {
  max-width: 896px;
}
.lots-max-w-5xl {
  max-width: 1024px;
}
.lots-max-w-6xl {
  max-width: 1152px;
}
.lots-max-w-7xl {
  max-width: 1280px;
}
.lots-max-w-screen-xs {
  max-width: 448px;
}
.lots-max-w-screen-sm {
  max-width: 640px;
}
.lots-max-w-screen-md {
  max-width: 768px;
}
.lots-max-w-screen-lg {
  max-width: 1024px;
}
.lots-max-w-screen-xl {
  max-width: 1280px;
}
.lots-max-w-screen-2xl {
  max-width: 1536px;
}

.lots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lots-ml-auto {
  margin-left: auto;
}
.lots-mt-auto {
  margin-left: auto;
}

.lots-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.lots-container__padding {
  padding: var(--padding-y, var(--padding, 24px)) var(--padding-x, var(--padding, 24px));
}

.lots-scope {
  --lots-text-h0-font-size: 98px;
  --lots-text-h1-font-size: 64px;
  --lots-text-h2-font-size: 44px;
  --lots-text-h3-font-size: 32px;
  --lots-text-h4-font-size: 24px;
  --lots-text-h5-font-size: 18px;
  --lots-text-h6-font-size: 14px;
  --lots-text-custom-1-font-size: 44px;
  --lots-text-custom-2-font-size: 34px;
  --lots-text-custom-3-font-size: 24px;
  --lots-text-p-font-size: 16px;
  --lots-text-p-large-font-size: 22px;
  --lots-text-p-small-font-size: 12px;
}
.lots-scope h0,
.lots-scope .lots-h0 {
  font-weight: var(--lots-text-h0-font-weight, 600);
}
.lots-scope h0, .lots-scope h0.lots-richtext *,
.lots-scope .lots-h0,
.lots-scope .lots-h0.lots-richtext * {
  font-size: var(--lots-text-h0-font-size);
  line-height: var(--lots-text-h0-line-height, 1em);
}
.lots-scope h1,
.lots-scope .lots-h1 {
  font-weight: var(--lots-text-h1-font-weight, 600);
}
.lots-scope h1, .lots-scope h1.lots-richtext *,
.lots-scope .lots-h1,
.lots-scope .lots-h1.lots-richtext * {
  font-size: var(--lots-text-h1-font-size);
  line-height: var(--lots-text-h1-line-height, 1.15em);
}
.lots-scope h2,
.lots-scope .lots-h2 {
  font-weight: var(--lots-text-h2-font-weight, 600);
}
.lots-scope h2, .lots-scope h2.lots-richtext *,
.lots-scope .lots-h2,
.lots-scope .lots-h2.lots-richtext * {
  font-size: var(--lots-text-h2-font-size);
  line-height: var(--lots-text-h2-line-height, 1.15em);
}
.lots-scope h3,
.lots-scope .lots-h3 {
  font-weight: var(--lots-text-h3-font-weight, 600);
}
.lots-scope h3, .lots-scope h3.lots-richtext *,
.lots-scope .lots-h3,
.lots-scope .lots-h3.lots-richtext * {
  font-size: var(--lots-text-h3-font-size);
  line-height: var(--lots-text-h3-line-height, 1.15em);
}
.lots-scope h4,
.lots-scope .lots-h4 {
  font-weight: var(--lots-text-h4-font-weight, 600);
}
.lots-scope h4, .lots-scope h4.lots-richtext *,
.lots-scope .lots-h4,
.lots-scope .lots-h4.lots-richtext * {
  font-size: var(--lots-text-h4-font-size);
  line-height: var(--lots-text-h4-line-height, 1.15em);
}
.lots-scope h5,
.lots-scope .lots-h5 {
  font-weight: var(--lots-text-h5-font-weight, 600);
}
.lots-scope h5, .lots-scope h5.lots-richtext *,
.lots-scope .lots-h5,
.lots-scope .lots-h5.lots-richtext * {
  font-size: var(--lots-text-h5-font-size);
  line-height: var(--lots-text-h5-line-height, 1.15em);
}
.lots-scope h6,
.lots-scope .lots-h6 {
  font-weight: var(--lots-text-h6-font-weight, 600);
}
.lots-scope h6, .lots-scope h6.lots-richtext *,
.lots-scope .lots-h6,
.lots-scope .lots-h6.lots-richtext * {
  font-size: var(--lots-text-h6-font-size);
  line-height: var(--lots-text-h6-line-height, 1.15em);
}
.lots-scope .lots-text-custom-1 {
  font-weight: var(--lots-text-custom-1-font-weight, 400);
}
.lots-scope .lots-text-custom-1, .lots-scope .lots-text-custom-1.lots-richtext * {
  font-size: var(--lots-text-custom-1-font-size);
  line-height: var(--lots-text-custom-1-line-height, 1.6em);
}
.lots-scope .lots-text-custom-2 {
  font-weight: var(--lots-text-custom-2-font-weight, 400);
}
.lots-scope .lots-text-custom-2, .lots-scope .lots-text-custom-2.lots-richtext * {
  font-size: var(--lots-text-custom-2-font-size);
  line-height: var(--lots-text-custom-2-line-height, 1.6em);
}
.lots-scope .lots-text-custom-3 {
  font-weight: var(--lots-text-custom-3-font-weight, 400);
}
.lots-scope .lots-text-custom-3, .lots-scope .lots-text-custom-3.lots-richtext * {
  font-size: var(--lots-text-custom-3-font-size);
  line-height: var(--lots-text-custom-3-line-height, 1.6em);
}
.lots-scope p,
.lots-scope li,
.lots-scope .lots-p {
  font-weight: var(--lots-text-p-font-weight, 400);
}
.lots-scope p, .lots-scope p.lots-richtext *,
.lots-scope li,
.lots-scope li.lots-richtext *,
.lots-scope .lots-p,
.lots-scope .lots-p.lots-richtext * {
  font-size: var(--lots-text-p-font-size);
  line-height: var(--lots-text-p-line-height, 1.6em);
}
.lots-scope .lots-p-large {
  font-weight: var(--lots-text-p-large-font-weight, 400);
}
.lots-scope .lots-p-large, .lots-scope .lots-p-large.lots-richtext * {
  font-size: var(--lots-text-p-large-font-size);
  line-height: var(--lots-text-p-large-line-height, 1.6em);
}
.lots-scope .lots-p-small {
  font-weight: var(--lots-text-p-small-font-weight, 400);
}
.lots-scope .lots-p-small, .lots-scope .lots-p-small.lots-richtext * {
  font-size: var(--lots-text-p-small-font-size);
  line-height: var(--lots-text-p-small-line-height, 1.6em);
}
.lots-scope img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .lots-scope {
    --lots-text-h0-font-size: 64px;
    --lots-text-h1-font-size: 48px;
    --lots-text-h2-font-size: 32px;
    --lots-text-h3-font-size: 24px;
    --lots-text-h4-font-size: 20px;
    --lots-text-h5-font-size: 16px;
    --lots-text-h6-font-size: 14px;
    --lots-text-custom-1-font-size: 32px;
    --lots-text-custom-2-font-size: 28px;
    --lots-text-custom-3-font-size: 20px;
    --lots-text-p-font-size: 14px;
    --lots-text-p-large-font-size: 18px;
    --lots-text-p-small-font-size: 12px;
  }
}

.lots-section-info {
  position: absolute;
  font-size: 11px;
  white-space: nowrap;
  width: fit-content;
  gap: 4px;
  align-items: center;
  background: #404040;
  border-radius: 0 4px 4px 0;
  padding: 2px;
  padding-left: 4px;
  top: 8px;
  left: 0px;
  display: none;
}
.lots-section-info span {
  color: #ccc;
  user-select: none;
}
.lots-section-info pre {
  border: solid 1px #000;
  background: #fff;
  margin: 0;
  border-radius: 4px;
  padding: 2px;
}

.lots-section {
  position: relative;
}

.lots-bg {
  --object-fit: cover;
  position: absolute;
  inset: 0;
  font-size: 0;
  z-index: -1;
  display: flex;
}
.lots-bg__wrapper {
  position: relative;
  z-index: 5;
}
.lots-bg__media {
  width: 100%;
  height: 100%;
  display: flex;
}
.lots-bg__media img,
.lots-bg__media svg,
.lots-bg__media video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 0;
  min-width: 0;
  object-fit: var(--object-fit, cover);
}

.lots-spacing__wrapper {
  overflow: auto;
  height: auto;
  display: block;
}
.lots-spacing__wrapper--design-mode {
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #f9cc9f 2px, #f9cc9f 6px);
  background-color: rgba(255, 255, 255, 0.5);
}

.lots-alignable {
  width: fit-content;
  height: fit-content;
  margin: 0;
}
.lots-alignable--x-start {
  margin-right: auto;
}
.lots-alignable--x-center {
  margin-left: auto;
  margin-right: auto;
}
.lots-alignable--x-end {
  margin-left: auto;
}
.lots-alignable--y-start {
  margin-bottom: auto;
}
.lots-alignable--y-center {
  margin-top: auto;
  margin-bottom: auto;
}
.lots-alignable--y-end {
  margin-top: auto;
}

.lots-text-align--center {
  text-align: center;
}
.lots-text-align--left {
  text-align: left;
}
.lots-text-align--right {
  text-align: right;
}

.lots-container {
  display: grid;
}

.lots-height--fullheight {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
}

.lots-empty-section {
  border-top: solid 10px hsl(210, 1%, 94%);
  border-bottom: solid 10px hsl(210, 1%, 94%);
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, hsl(210, 1%, 94%) 8px, hsl(210, 1%, 94%) 18px);
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
}
.lots-empty-section h1 {
  margin: auto;
  width: fit-content;
  height: fit-content;
  line-height: 1em;
  padding: 8px 20px;
  color: hsl(210, 1%, 84%);
}
