*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
  width: 100%;
  font: 16px/1.4 var(--ff-principal);
  font-optical-sizing: auto;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  scroll-behavior: auto;
}

/* .lenis {
    height: auto;
    overflow: visible;
} */
@media (max-width: 768px) {
    html, body {
        overflow: auto;
    }
}

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

[tabindex="-1"]:focus {
  outline: none !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
}

a {
  -webkit-text-decoration-skip: objects;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  outline: 0;
  color: inherit;
}
a:active, a:visited {
  color: inherit;
}

b,
strong {
  font-weight: bolder;
}

ol,
ul,
dl {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
}

caption {
  padding: 0.75rem 0;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  outline: none;
}

fieldset {
  min-width: 0;
  padding: 0.5rem;
  margin: 0;
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

[type=date],
[type=time],
[type=datetime-local],
[type=month] {
  -webkit-appearance: listbox;
}

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

[hidden] {
  display: none !important;
}

button,
a,
[type=submit] {
  cursor: pointer;
}

button:focus,
a:focus,
[type=submit]:focus {
  outline-offset: 3px;
}

::-moz-selection {
  color: var(--selection-color, #fff);
  background-color: var(--selection-bg, #000);
}

::selection {
  color: var(--selection-color, #fff);
  background-color: var(--selection-bg, #000);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-bg, slategrey);
  outline: 1px solid slategrey;
}


.wrapper {
  width: 100%;
}

.main {
  width: 100%;
}
.main :where(p, span, li, a) {
  font-family: var(--ff-texts);
}

.xs {
  font-size: 0.625rem;
}

.sm {
  font-size: 0.75rem;
}

.md {
  font-size: 0.875rem;
}

.lg {
  font-size: 1.125rem;
}

.xl {
  font-size: 1.25rem;
}

.flex {
  display: flex;
}

.w-full {
  width: 100%;
}

.w-1 {
  width: calc(1 / 12 * 100%);
}

.w-2 {
  width: calc(2 / 12 * 100%);
}

.w-3 {
  width: calc(3 / 12 * 100%);
}

.w-4 {
  width: calc(4 / 12 * 100%);
}

.w-5 {
  width: calc(5 / 12 * 100%);
}

.w-6 {
  width: calc(6 / 12 * 100%);
}

.w-7 {
  width: calc(7 / 12 * 100%);
}

.w-8 {
  width: calc(8 / 12 * 100%);
}

.w-9 {
  width: calc(9 / 12 * 100%);
}

.w-10 {
  width: calc(10 / 12 * 100%);
}

.w-11 {
  width: calc(11 / 12 * 100%);
}

@media (min-width: 480px) {
  .sm\:flex {
    display: flex;
  }
  .sm\:w-full {
    width: 100%;
  }
  .sm\:w-1 {
    width: calc(1 / 12 * 100%);
  }
  .sm\:w-2 {
    width: calc(2 / 12 * 100%);
  }
  .sm\:w-3 {
    width: calc(3 / 12 * 100%);
  }
  .sm\:w-4 {
    width: calc(4 / 12 * 100%);
  }
  .sm\:w-5 {
    width: calc(5 / 12 * 100%);
  }
  .sm\:w-6 {
    width: calc(6 / 12 * 100%);
  }
  .sm\:w-7 {
    width: calc(7 / 12 * 100%);
  }
  .sm\:w-8 {
    width: calc(8 / 12 * 100%);
  }
  .sm\:w-9 {
    width: calc(9 / 12 * 100%);
  }
  .sm\:w-10 {
    width: calc(10 / 12 * 100%);
  }
  .sm\:w-11 {
    width: calc(11 / 12 * 100%);
  }
}
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:w-1 {
    width: calc(1 / 12 * 100%);
  }
  .md\:w-2 {
    width: calc(2 / 12 * 100%);
  }
  .md\:w-3 {
    width: calc(3 / 12 * 100%);
  }
  .md\:w-4 {
    width: calc(4 / 12 * 100%);
  }
  .md\:w-5 {
    width: calc(5 / 12 * 100%);
  }
  .md\:w-6 {
    width: calc(6 / 12 * 100%);
  }
  .md\:w-7 {
    width: calc(7 / 12 * 100%);
  }
  .md\:w-8 {
    width: calc(8 / 12 * 100%);
  }
  .md\:w-9 {
    width: calc(9 / 12 * 100%);
  }
  .md\:w-10 {
    width: calc(10 / 12 * 100%);
  }
  .md\:w-11 {
    width: calc(11 / 12 * 100%);
  }
}
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:w-1 {
    width: calc(1 / 12 * 100%);
  }
  .lg\:w-2 {
    width: calc(2 / 12 * 100%);
  }
  .lg\:w-3 {
    width: calc(3 / 12 * 100%);
  }
  .lg\:w-4 {
    width: calc(4 / 12 * 100%);
  }
  .lg\:w-5 {
    width: calc(5 / 12 * 100%);
  }
  .lg\:w-6 {
    width: calc(6 / 12 * 100%);
  }
  .lg\:w-7 {
    width: calc(7 / 12 * 100%);
  }
  .lg\:w-8 {
    width: calc(8 / 12 * 100%);
  }
  .lg\:w-9 {
    width: calc(9 / 12 * 100%);
  }
  .lg\:w-10 {
    width: calc(10 / 12 * 100%);
  }
  .lg\:w-11 {
    width: calc(11 / 12 * 100%);
  }
}
@media (min-width: 1200px) {
  .xl\:flex {
    display: flex;
  }
  .xl\:w-full {
    width: 100%;
  }
  .xl\:w-1 {
    width: calc(1 / 12 * 100%);
  }
  .xl\:w-2 {
    width: calc(2 / 12 * 100%);
  }
  .xl\:w-3 {
    width: calc(3 / 12 * 100%);
  }
  .xl\:w-4 {
    width: calc(4 / 12 * 100%);
  }
  .xl\:w-5 {
    width: calc(5 / 12 * 100%);
  }
  .xl\:w-6 {
    width: calc(6 / 12 * 100%);
  }
  .xl\:w-7 {
    width: calc(7 / 12 * 100%);
  }
  .xl\:w-8 {
    width: calc(8 / 12 * 100%);
  }
  .xl\:w-9 {
    width: calc(9 / 12 * 100%);
  }
  .xl\:w-10 {
    width: calc(10 / 12 * 100%);
  }
  .xl\:w-11 {
    width: calc(11 / 12 * 100%);
  }
}
.footer-invitation {
  width: 100%;
  padding: 10px;
  color: var(--color-light, #fff);
  background-color: var(--color-dark, #000);
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--ff-texts, sans-serif);
  font-weight: 200;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .container {
    max-width: 460px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.center {
  margin: 0 auto;
}