.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}

[data-bs-theme=dark] .btn-close {
  filter: var(--bs-btn-close-white-filter);
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.\!relative {
  position: relative !important;
}
.order-last {
  order: 9999 !important;
}
.col-span-2 {
  grid-column: span 2 / span 2 !important;
}
.col-span-3 {
  grid-column: span 3 / span 3 !important;
}
.m-0 {
  margin: 0px !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.\!mt-12 {
  margin-top: 3rem !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-12 {
  margin-bottom: 3rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-5 {
  margin-bottom: 1.25rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mb-\[40px\] {
  margin-bottom: 40px !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 0.75rem !important;
}
.mr-4 {
  margin-right: 1rem !important;
}
.mt-3 {
  margin-top: 0.75rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mt-8 {
  margin-top: 2rem !important;
}
.block {
  display: block !important;
}
.flex {
  display: flex !important;
}
.grid {
  display: grid !important;
}
.hidden {
  display: none !important;
}
.\!h-\[416px\] {
  height: 416px !important;
}
.h-6 {
  height: 1.5rem !important;
}
.h-\[178\.74px\] {
  height: 178.74px !important;
}
.h-\[1px\] {
  height: 1px !important;
}
.h-\[250px\] {
  height: 250px !important;
}
.h-\[4px\] {
  height: 4px !important;
}
.h-\[81px\] {
  height: 81px !important;
}
.h-full {
  height: 100% !important;
}
.\!w-\[416px\] {
  width: 416px !important;
}
.w-12 {
  width: 3rem !important;
}
.w-6 {
  width: 1.5rem !important;
}
.w-8 {
  width: 2rem !important;
}
.w-\[100px\] {
  width: 100px !important;
}
.w-\[186px\] {
  width: 186px !important;
}
.w-\[24px\] {
  width: 24px !important;
}
.w-full {
  width: 100% !important;
}
.max-w-\[1280px\] {
  max-width: 1280px !important;
}
.max-w-\[1445px\] {
  max-width: 1445px !important;
}
.max-w-\[868px\] {
  max-width: 868px !important;
}
.flex-grow {
  flex-grow: 1 !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-col {
  flex-direction: column !important;
}
.justify-center {
  justify-content: center !important;
}
.gap-12 {
  gap: 3rem !important;
}
.gap-16 {
  gap: 4rem !important;
}
.gap-3 {
  gap: 0.75rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-5 {
  gap: 1.25rem !important;
}
.gap-6 {
  gap: 1.5rem !important;
}
.gap-8 {
  gap: 2rem !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-md {
  border-radius: 0.375rem !important;
}
.rounded-tl-\[1000px\] {
  border-top-left-radius: 1000px !important;
}
.rounded-tr-\[1000px\] {
  border-top-right-radius: 1000px !important;
}
.border {
  border-width: 1px !important;
}
.bg-black {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
}
.bg-earlville-gold {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(194 182 96 / var(--tw-bg-opacity)) !important;
}
.bg-earlville-navy {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity)) !important;
}
.bg-fawkner-blue {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(67 144 178 / var(--tw-bg-opacity)) !important;
}
.bg-neutral-gray-50 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity)) !important;
}
.bg-settlement-city-grey {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(247 246 246 / var(--tw-bg-opacity)) !important;
}
.bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}
.bg-cover {
  background-size: cover !important;
}
.bg-center {
  background-position: center !important;
}
.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.p-0 {
  padding: 0px !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-2\.5 {
  padding: 0.625rem !important;
}
.p-8 {
  padding: 2rem !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}
.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pt-16 {
  padding-top: 4rem !important;
}
.text-center {
  text-align: center !important;
}
.font-dm-sans {
  font-family: DM-Sans, sans-serif !important;
}
.font-houschka-pro {
  font-family: Houschka-Pro, sans-serif !important;
}
.font-roboto {
  font-family: Roboto, sans-serif !important;
}
.\!text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}
.text-\[26px\] {
  font-size: 26px !important;
}
.text-\[32px\] {
  font-size: 32px !important;
}
.text-\[40px\] {
  font-size: 40px !important;
}
.text-\[42px\] {
  font-size: 42px !important;
}
.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.leading-5 {
  line-height: 1.25rem !important;
}
.leading-6 {
  line-height: 1.5rem !important;
}
.leading-7 {
  line-height: 1.75rem !important;
}
.leading-9 {
  line-height: 2.25rem !important;
}
.leading-\[19\.2px\] {
  line-height: 19.2px !important;
}
.leading-\[21px\] {
  line-height: 21px !important;
}
.leading-\[26px\] {
  line-height: 26px !important;
}
.leading-\[39\.6px\] {
  line-height: 39.6px !important;
}
.leading-\[41\.6px\] {
  line-height: 41.6px !important;
}
.leading-\[43\.2px\] {
  line-height: 43.2px !important;
}
.leading-\[48px\] {
  line-height: 48px !important;
}
.tracking-\[0\.64px\] {
  letter-spacing: 0.64px !important;
}
.text-army-green {
  --tw-text-opacity: 1 !important;
  color: rgb(96 103 56 / var(--tw-text-opacity)) !important;
}
.text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}
.text-brown {
  --tw-text-opacity: 1 !important;
  color: rgb(165 131 138 / var(--tw-text-opacity)) !important;
}
.text-earlville-navy {
  --tw-text-opacity: 1 !important;
  color: rgb(51 51 51 / var(--tw-text-opacity)) !important;
}
.text-fawkner-blue {
  --tw-text-opacity: 1 !important;
  color: rgb(67 144 178 / var(--tw-text-opacity)) !important;
}
.text-fawkner-blue-2 {
  --tw-text-opacity: 1 !important;
  color: rgb(0 85 141 / var(--tw-text-opacity)) !important;
}
.text-forest-green {
  --tw-text-opacity: 1 !important;
  color: rgb(142 171 142 / var(--tw-text-opacity)) !important;
}
.text-greys-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(99 99 99 / var(--tw-text-opacity)) !important;
}
.text-greys-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(43 49 54 / var(--tw-text-opacity)) !important;
}
.text-light-blue {
  --tw-text-opacity: 1 !important;
  color: rgb(131 175 186 / var(--tw-text-opacity)) !important;
}
.text-neutral-gray-50 {
  --tw-text-opacity: 1 !important;
  color: rgb(248 250 252 / var(--tw-text-opacity)) !important;
}
.text-neutral-gray-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(100 116 139 / var(--tw-text-opacity)) !important;
}
.text-orange {
  --tw-text-opacity: 1 !important;
  color: rgb(245 139 109 / var(--tw-text-opacity)) !important;
}
.text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.underline {
  text-decoration-line: underline !important;
}
.gform_title {
  margin-bottom: 1rem;
  font-family: Houschka-Pro, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  line-height: 43.2px;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .gform_title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1920px) {
  .gform_title {
    margin-bottom: 1.5rem;
  }
}

.gform_label, .gfield_label, .gform_confirmation_message {
  font-family: DM-Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.ginput_container.ginput_container_text input, .ginput_container.ginput_container_email input, .ginput_container.ginput_container_textarea textarea {
  border-width: 1px !important;
  border-style: solid !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(100 116 139 / var(--tw-border-opacity)) !important;
  padding: 0.75rem !important;
  font-family: DM-Sans, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}

.body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_textarea textarea::-moz-placeholder {
  font-family: DM-Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity));
}

.body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_textarea textarea::placeholder {
  font-family: DM-Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity));
}

.gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox label {
  font-family: DM-Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.gform_button.button {
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 2px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  font-family: Houschka-Pro, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 1336px) {
  .gform_button.button {
    width: auto;
  }
}

.gform_footer.top_label button span {
  transition: all 0.3s ease;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  height: 1px !important;
  width: 24px !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}

.gform_button.button:hover {
  background-color: transparent;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.gform_button.button:hover span {
  transform: scaleX(0.7);
  --tw-border-opacity: 1 !important;
  border-color: rgb(51 51 51 / var(--tw-border-opacity)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity)) !important;
}

.gform_wrapper.gravity-theme .gfield-choice-input {
  top: auto !important;
}

#gform_confirmation_message_2 {
  font-family: DM-Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

@media (min-width: 1336px) {
  #gform_confirmation_message_2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.form-modal .modal-content {
  border-radius: 0;
  background: transparent;
  border: unset;
}
.form-modal .btn-close {
  margin-left: auto;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white' %3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  background-size: 20px;
  background-repeat: no-repeat;
  opacity: 1;
}
.form-modal .btn-close:hover {
  opacity: 0.75;
}

.contact-form-checkbox .gfield_checkbox input[type=checkbox]:checked + label, .contact-form-checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label {
  margin-left: 19px;
  font-weight: 400;
  font-size: 15px;
}

/*Custom subscribe box for .contact-form-checkbox class*/
.contact-form-checkbox [type=checkbox]:not(:checked), [type=checkbox]:checked {
  position: absolute !important;
  left: -9999px;
}

.contact-form-checkbox [type=checkbox]:not(:checked) + label, [type=checkbox]:checked + label {
  position: relative !important;
  padding-left: 1em !important;
  cursor: pointer !important;
}

.contact-form-checkbox [type=checkbox]:not(:checked) + label:before, [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: -17px;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2px;
}

.contact-form-checkbox [type=checkbox]:not(:checked) + label:after, [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 4px;
  left: -15px;
  font-size: 1.3em;
  line-height: 0.8;
  background-color: #132048;
  transition: all 0.2s;
}

/* checked mark aspect changes */
.contact-form-checkbox [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.contact-form-checkbox [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled checkbox */
.contact-form-checkbox [type=checkbox]:disabled:not(:checked) + label:before,
[type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

.contact-form-checkbox [type=checkbox]:disabled:checked + label:after {
  color: #999;
}

.contact-form-checkbox [type=checkbox]:disabled + label {
  color: #aaa;
}

:root {
  --settlement-city-blue: #333333;
  --mirrabooka-grey: #6d6e71;
  --white: #fff;
  --black: #000000;
}

h3:has(.acf-custom-block), h4:has(.acf-custom-block), h5:has(.acf-custom-block), #Discover h3, #Discover h4 {
  color: var(--black) !important;
}

html:has(.acf-custom-block) {
  scroll-behavior: smooth;
}

.rey-mainNavigation.rey-mainNavigation--desktop {
  padding-bottom: 2px;
}

.rey-siteContainer:has(.acf-custom-block) {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

@media (min-width: 1920px) {
  .rey-siteContainer:has(.acf-custom-block) {
    padding: 0px !important;
  }
}

.acf-custom-block {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

@media (min-width: 768px) {
  .acf-custom-block {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (min-width: 1336px) {
  .acf-custom-block {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }
}

@media (min-width: 1920px) {
  .acf-custom-block {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.full-width-banner-block {
  height: calc(100vh - 75.88px);
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .full-width-banner-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1336px) {
  .full-width-banner-block {
    height: calc(100vh - 87.44px);
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

@media (min-width: 1440px) {
  .full-width-banner-block {
    height: calc(100vh - 87.91px);
  }
}

@media (min-width: 1920px) {
  .full-width-banner-block {
    height: calc(100vh - 87.84px);
  }
}

.full-width-banner-block {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.gallery {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 400px) {
  .gallery {
    min-height: 400px;
  }
}
.three-image-banner-col {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.three-image-banner-image {
  padding-right: 0.5rem;
  padding-bottom: 1rem;
}

.three-image-banner-image:last-of-type {
  padding-bottom: 0rem;
}

.six-image-banner-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-self: flex-end;
  justify-self: flex-end;
  justify-content: flex-end;
}

.six-image-banner-col:nth-child(2) {
  align-self: flex-start;
  justify-self: flex-start;
}

.six-image-banner-image {
  padding: 0.5rem;
  overflow: hidden;
}

.six-image-banner-col .six-image-banner-image:nth-of-type(1) {
  flex-shrink: 4;
  padding-top: 0rem;
}

.six-image-banner-col .six-image-banner-image:nth-of-type(2) {
  flex-shrink: 2;
}

.six-image-banner-col .six-image-banner-image:nth-of-type(3) {
  flex-shrink: 3;
  padding-bottom: 0rem;
}

.six-image-banner-col:nth-of-type(2) .six-image-banner-image:nth-of-type(1) {
  flex-shrink: 2;
}

.bannerblock {
  max-height: 670px;
}

@media (max-width: 1335px) {
  .bannerblock {
    max-height: none;
  }
}
.box-shadow {
  box-shadow: 10px 5px 5px darkgray;
}

.acf-custom-block .swiper {
  overflow: visible !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black;
  opacity: 1;
}

span.swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 22px) !important;
  }
}
.swiper-button-next {
  background: url("../assets/icons/arrow-right.svg") no-repeat 50% !important;
}

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

.swiper-button-prev {
  background: url("../assets/icons/arrow-left.svg") no-repeat 50% !important;
}

@media only screen and (min-width: 1024px) {
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -30px) !important;
  }
  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -35px) !important;
  }
}
@media only screen and (min-width: 1336px) {
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -42px) !important;
  }
  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -41px) !important;
  }
}
@media only screen and (min-width: 1440px) {
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -42px) !important;
  }
  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -24px) !important;
  }
}
@media only screen and (min-width: 1920px) {
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -42px) !important;
  }
  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 6px) !important;
  }
}
@media only screen and (min-width: 2560px) {
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -43px) !important;
  }
  .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -1px) !important;
  }
}
.swiper-button-prev, .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 41%) !important;
  width: calc(var(--swiper-navigation-size) / 29 * 27) !important;
  border-radius: 50px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid #C2B660;
}

#mapCanvas {
  height: 700px;
}

.info_content {
  padding: 0.75rem;
}
.info_content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.info_content p {
  margin-bottom: 0px;
}

#mapCanvas button.gm-ui-hover-effect {
  top: 0px !important;
  right: 0px !important;
}

#mapCanvas button.gm-ui-hover-effect:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.video-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1000/520;
  width: 100%;
  background-color: #252525;
}
.video-thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.video-thumbnail svg {
  position: absolute;
  margin: auto;
}
.video-thumbnail:hover img, .video-thumbnail:hover svg {
  opacity: 0.8;
  cursor: pointer;
}

.video-modal .modal-content {
  border-radius: 0;
  background: transparent;
  border: unset;
}
.video-modal .btn-close {
  margin-left: auto;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white' %3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  background-size: 20px;
  background-repeat: no-repeat;
  opacity: 1;
}
.video-modal .btn-close:hover {
  opacity: 0.75;
}
.video-modal iframe {
  width: 100%;
}
@media (min-width: 768px) {
  .video-modal iframe {
    height: 600px;
  }
}
@media (min-width: 2560px) {
  .video-modal iframe {
    height: 650px;
  }
}

.video-content iframe {
  width: 1410px;
  height: 794px;
  max-width: 100%;
  max-height: 82vh;
}

@media (max-width: 1000px) {
  .video-content iframe {
    max-height: 40vh;
  }
}
@media (max-width: 680px) {
  .video-content iframe {
    max-height: 26vh;
  }
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-DemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Houschka Pro";
  src: url("../src/fonts/Houschka-ProHouschkaPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-DemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../src/fonts/DMSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-Bold.ttf") format("ttf");
  font-weight: bold;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-BoldItalic.ttf") format("ttf");
  font-weight: 700;
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-ThinItalic.ttf") format("ttf");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-LightItalic.ttf") format("ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-Thin.ttf") format("ttf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-MediumItalic.ttf") format("ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../src/fonts/Roboto-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
.banner-primary-button,
.video-player-btn {
  transition: all 0.3s ease;
  background-color: var(--settlement-city-blue);
  border-color: var(--settlement-city-blue);
}
.banner-primary-button span,
.video-player-btn span {
  background-color: var(--white);
}

.banner-primary-button {
  border-radius: 0.125rem;
  border-width: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .banner-primary-button {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1336px) {
  .banner-primary-button {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.banner-primary-button {
  color: var(--white);
}

.video-player-btn {
  display: block;
  border-radius: 0.125rem;
  border-width: 2px;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .video-player-btn {
    display: inline-block;
  }
}

.banner-secondary-button {
  transition: all 0.3s ease;
  border-width: 1px;
  border-style: solid;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .banner-secondary-button {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1336px) {
  .banner-secondary-button {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.banner-secondary-button {
  border-color: #000000;
}

.banner-secondary-button:hover {
  opacity: 0.8;
}

.banner-primary-button:hover,
.video-player-btn:hover {
  background-color: transparent;
  border-color: var(--settlement-city-blue);
  border-width: 2px;
}
.banner-primary-button:hover button,
.video-player-btn:hover button {
  color: var(--settlement-city-blue) !important;
}
.banner-primary-button:hover span,
.video-player-btn:hover span {
  background-color: var(--settlement-city-blue) !important;
  transform: scaleX(0.7);
}

.outline-button {
  transition: all 0.3s ease;
  background-color: transparent;
  border-color: var(--white);
}
.outline-button span {
  background-color: var(--white);
}

.outline-button {
  border-radius: 0.125rem;
  border-width: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .outline-button {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1336px) {
  .outline-button {
    padding-left: 48px;
    padding-right: 48px;
  }
}

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

.outline-button:hover {
  background-color: var(--white);
  border-color: var(--white);
  border-width: 2px;
}
.outline-button:hover button {
  color: var(--black) !important;
}
.outline-button:hover span {
  transition: all 0.3s ease;
  background-color: var(--black) !important;
  transform: scaleX(0.7);
}

.full-width-banner-button:hover {
  background-color: transparent;
  transition: background-color 0.3s ease;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.full-width-banner-button:hover button {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.full-width-banner-button:hover span {
  transform: scaleX(0.7);
  transition: transform 0.3s ease;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}

.secondary-button:hover {
  opacity: 0.6;
}
.secondary-button:hover span {
  transform: scaleX(0.7);
  transition: transform 0.3s ease;
}

.secondary-button {
  transition: all 0.3s ease;
  border-width: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .secondary-button {
    padding-left: 32px;
    padding-right: 32px;
  }
}

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

.full-width-banner-button {
  transition: all 0.3s ease;
  border-radius: 2px;
  border-width: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .full-width-banner-button {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.full-width-banner-button {
  background-color: var(--settlement-city-blue);
  border-color: var(--settlement-city-blue);
}

.full-width-banner-secondary-button {
  transition: all 0.3s ease;
  border-radius: 4px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .full-width-banner-secondary-button {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.banner-primary-button span,
.values-button span,
.secondary-button span,
.video-player-btn span,
.full-width-banner-button span {
  transition: all 0.3s ease;
}

.full-width-banner-secondary-button:hover {
  border-width: 1px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  background: var(--mirrabooka-grey);
}

.casual-mall-leasing-button {
  transition: all 0.3s ease;
  border-width: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .casual-mall-leasing-button {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.casual-mall-leasing-button {
  color: var(--settlement-city-blue);
  border-color: var(--black);
}

.casual-mall-leasing-button:hover {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.casual-mall-leasing-button:hover::first-line {
  border-width: 1px;
}

.casual-mall-leasing-button:hover {
  background: var(--mirrabooka-grey);
  border-color: var(--mirrabooka-grey);
}
.casual-mall-leasing-button:hover button {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.gform_button.button {
  background-color: var(--settlement-city-blue) !important;
  border-color: var(--settlement-city-blue) !important;
}

.gform_button.button:hover {
  background-color: transparent !important;
  color: var(--settlement-city-blue) !important;
}
.gform_button.button:hover span {
  background-color: var(--settlement-city-blue) !important;
  transform: scaleX(0.7);
}
@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1 !important;
  }
  .md\:col-span-5 {
    grid-column: span 5 / span 5 !important;
  }
  .md\:col-span-7 {
    grid-column: span 7 / span 7 !important;
  }
  .md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md\:mb-0 {
    margin-bottom: 0px !important;
  }
  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .md\:mb-\[48px\] {
    margin-bottom: 48px !important;
  }
  .md\:inline-block {
    display: inline-block !important;
  }
  .md\:h-auto {
    height: auto !important;
  }
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md\:px-\[2\.75rem\] {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }
  .md\:pl-16 {
    padding-left: 4rem !important;
  }
  .md\:pr-0 {
    padding-right: 0px !important;
  }
  .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .md\:text-\[40px\] {
    font-size: 40px !important;
  }
  .md\:leading-\[40px\] {
    line-height: 40px !important;
  }
  .md\:leading-\[52\.8px\] {
    line-height: 52.8px !important;
  }
  .md\:leading-\[52px\] {
    line-height: 52px !important;
  }
  .md\:leading-\[57\.6px\] {
    line-height: 57.6px !important;
  }
  .md\:leading-\[67\.2px\] {
    line-height: 67.2px !important;
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
  .lg\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (min-width: 1336px) {
  .xl\:order-first {
    order: -9999 !important;
  }
  .xl\:col-span-3 {
    grid-column: span 3 / span 3 !important;
  }
  .xl\:col-span-4 {
    grid-column: span 4 / span 4 !important;
  }
  .xl\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xl\:my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0px !important;
  }
  .xl\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .xl\:mb-\[40px\] {
    margin-bottom: 40px !important;
  }
  .xl\:mb-\[50px\] {
    margin-bottom: 50px !important;
  }
  .xl\:mb-\[60px\] {
    margin-bottom: 60px !important;
  }
  .xl\:mr-4 {
    margin-right: 1rem !important;
  }
  .xl\:mt-0 {
    margin-top: 0px !important;
  }
  .xl\:h-5 {
    height: 1.25rem !important;
  }
  .xl\:h-6 {
    height: 1.5rem !important;
  }
  .xl\:h-\[250px\] {
    height: 250px !important;
  }
  .xl\:h-\[calc\(100vh-87\.84px\)\] {
    height: calc(100vh - 87.84px) !important;
  }
  .xl\:w-7 {
    width: 1.75rem !important;
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .xl\:flex-row {
    flex-direction: row !important;
  }
  .xl\:gap-12 {
    gap: 3rem !important;
  }
  .xl\:gap-20 {
    gap: 5rem !important;
  }
  .xl\:gap-4 {
    gap: 1rem !important;
  }
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
  .xl\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .xl\:px-\[111px\] {
    padding-left: 111px !important;
    padding-right: 111px !important;
  }
  .xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xl\:py-\[100px\] {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .xl\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .xl\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .xl\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .xl\:text-\[28px\] {
    font-size: 28px !important;
  }
  .xl\:text-\[32px\] {
    font-size: 32px !important;
  }
  .xl\:text-\[36px\] {
    font-size: 36px !important;
  }
  .xl\:text-\[40px\] {
    font-size: 40px !important;
  }
  .xl\:text-\[52px\] {
    font-size: 52px !important;
  }
  .xl\:text-\[56px\] {
    font-size: 56px !important;
  }
  .xl\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .xl\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .xl\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .xl\:leading-5 {
    line-height: 1.25rem !important;
  }
  .xl\:leading-6 {
    line-height: 1.5rem !important;
  }
  .xl\:leading-7 {
    line-height: 1.75rem !important;
  }
  .xl\:leading-\[27px\] {
    line-height: 27px !important;
  }
  .xl\:leading-\[31\.2px\] {
    line-height: 31.2px !important;
  }
  .xl\:leading-\[38\.4px\] {
    line-height: 38.4px !important;
  }
  .xl\:leading-\[38px\] {
    line-height: 38px !important;
  }
  .xl\:leading-\[48px\] {
    line-height: 48px !important;
  }
  .xl\:leading-\[52px\] {
    line-height: 52px !important;
  }
  .xl\:leading-\[57\.6px\] {
    line-height: 57.6px !important;
  }
  .xl\:tracking-\[0\.64px\] {
    letter-spacing: 0.64px !important;
  }
  .xl\:text-greys-600 {
    --tw-text-opacity: 1 !important;
    color: rgb(99 99 99 / var(--tw-text-opacity)) !important;
  }
}
@media (min-width: 1920px) {
  .\33xl\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .\33xl\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .\33xl\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .\33xl\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
}
@media (min-width: 2560px) {
  .\34xl\:h-\[85vh\] {
    height: 85vh !important;
  }
}