/* site/landing/wwwroot/src/main.less */
:root {
  --app-color-base: #fefefe;
  --app-color-brand: #018e8a;
  --app-color-brand-foreground: #fefefe;
  --foreground-color: #446129;
  --app-color-other: #000407;
  --app-color-1: #000407;
  --app-color-2: #120c5a;
  --app-color-3: #630001;
  --app-color-4: #fe0100;
  --app-color-4: #105001;
  --padding-body-x: 10rem;
  --padding-body-y: 2rem;
  --font-size-base: 1rem;
  --font-size-change: 0.125rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-xl-hero {
  font-size: clamp(3rem, 13vw, 8rem);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
body {
  font-family:
    simply_serifbook,
    Arial,
    sans-serif,
    Heebo;
  letter-spacing: 2px;
  min-width: 320px;
}
@font-face {
  font-family: "simply_serifbook";
  src: url(brand/simplyserif-book-webfont.woff2) format("woff2"), url(brand/simplyserif-book-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
.text-mark-1 {
  color: var(--app-color-brand);
}
.font-semibold {
  font-weight: 600;
}
.nice-font {
  font-family: "Grey Qo", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.brand-font {
  font-family: simply_serifbook, serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
h1 {
  font-size: 1.5rem;
}
h2 {
  font-size: 1.25rem;
}
h3 {
  font-size: 1.125rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.875rem;
}
h6 {
  font-size: 0.75rem;
}
body {
  margin: 0;
}
.divider-vertical {
  width: max-content;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.divider {
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 100%;
  border-top: 2px solid red;
  vertical-align: top;
  margin: 0px -80px 0px 0px;
}
body {
  background-color: var(--app-color-base);
  color: var(--app-color-other);
}
@keyframes top-scroll {
  0% {
    background-position: 50% 0;
  }
  40% {
    background-position: 100% 0;
  }
  80% {
    background-position: 20% 0;
  }
  100% {
    background-position: 50% 0;
  }
}
.underline {
  text-decoration: underline;
}
.logo-plain-text {
  background-color: var(--app-color-brand);
  -webkit-mask: url(brand/logo_plain_text.svg) no-repeat center;
  mask: url(brand/logo_plain_text.svg) no-repeat center;
  mask-size: contain;
}
.logo-circle-text {
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(brand/logo_circle_text.svg);
}
.landing section[data-part=top] {
  background-image: url(brand/top-image.jpg);
  background-repeat: no-repeat;
  will-change:
    background-position-y,
    background-size,
    background-repeat;
  background-position: 50% 0;
  animation: top-scroll 60s ease-out infinite;
  min-height: max(495px, 100vh);
  background-size: auto max(800px, 100vh);
}
header.landing section[data-part=header-title] {
  color: white;
  opacity: 85%;
}
section[data-part=top] {
  display: flex;
  flex-direction: column;
  min-height: 80px;
}
section[data-part=top] section[data-part=quick-contact] {
  font-size: 0.875rem;
  display: flex;
  justify-content: flex-end;
  padding: 5px;
  gap: 1.5rem;
}
section[data-part=top] section[data-part=quick-contact] a {
  text-decoration: underline;
}
section[data-part=top] section[data-part=header-nav] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding-body-y) var(--padding-body-x);
  white-space: nowrap;
}
section[data-part=top] section[data-part=header-nav] .logo {
  height: min(100px, 20vw);
  width: min(100px, 20vw);
  box-sizing: content-box;
}
section[data-part=top] section[data-part=header-nav] nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1.5rem;
}
section[data-part=top] section[data-part=header-nav] nav a {
  text-decoration: underline;
}
section[data-part=top] section[data-part=header-nav].top-bar {
  padding: 0 var(--padding-body-x);
}
section[data-part=top] section[data-part=header-nav].stick-top {
  padding: 0 var(--padding-body-x);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: calc(var(--padding-body-y) * 0.5) var(--padding-body-x);
  z-index: 10;
  margin: 1rem 2rem;
  background-color: white;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
section[data-part=top] section[data-part=header-nav].stick-top .logo {
  height: 40px;
  background-color: var(--app-color-brand);
  -webkit-mask: url(brand/logo_plain_text.svg) no-repeat center;
  mask: url(brand/logo_plain_text.svg) no-repeat center;
  mask-size: contain;
}
section[data-part=top] section[data-part=header-title] {
  flex-grow: 1;
  position: relative;
  top: -2rem;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(3rem, 13vw, 8rem);
}
section[data-part=top] section[data-part=header-title] h1 {
  font-size: 100%;
}
section[data-part=top] section[data-part=header-title] h2 {
  font-size: 60%;
}
section[data-part=top] section[data-part=header-title] h3 {
  font-size: 90%;
}
header:not(.landing) section[data-part=top] section[data-part=header-nav]:not(.stick-top) .logo {
  height: 80px;
}
.main {
  margin: 4rem 0px;
  padding: var(--padding-body-y) var(--padding-body-x);
  transition: all 300ms ease-in-out 0ms;
}
@keyframes opac {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    animation-play-state: paused;
  }
}
@keyframes slideshow {
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.text-justify {
  text-align: justify;
  text-wrap: pretty;
}
[x-vstack] {
  display: grid;
  gap: 5rem;
}
[x-quick-filters] {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 800px) {
  [x-quick-filters] {
    flex-direction: column;
  }
}
[x-card-small] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}
[x-card] {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
  padding: 1.5rem;
}
.button {
  border: 1px solid var(--app-color-4);
  display: inline;
  text-wrap: nowrap;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
}
.button:not(.active):hover {
  background-color: var(--app-color-brand);
  color: var(--app-color-brand-foreground);
  border-color: var(--app-color-brand);
  opacity: 0.5;
}
.button:not(.active):active {
  opacity: 0.7;
}
.button.active {
  background-color: var(--app-color-brand);
  color: var(--app-color-brand-foreground);
  border-color: var(--app-color-brand);
}
.hero-slideshow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 1rem;
}
.hero-slideshow [x-hero-slideshow] {
  grid-row: 1;
}
@media (max-width: 800px) {
  .hero-slideshow {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }
  .hero-slideshow [x-hero-slideshow] {
    grid-row: 2;
  }
}
.hero-slideshow .title {
  font-size: 3rem;
}
.hero-slideshow .text {
  padding: 1rem;
  font-size: 1rem;
  line-height: 2rem;
}
footer {
  gap: 1rem 2.5rem;
  padding: var(--padding-body-y) var(--padding-body-x);
  min-height: 80px;
  background-color: var(--app-color-other);
  color: var(--app-color-base);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
footer .logo {
  width: 150px;
  height: 150px;
}
footer ul {
  list-style-type: none;
  padding: 0;
}
footer ul li {
  line-height: 1.5rem;
}
footer .footer-line {
  flex-basis: max-content;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer .footer-line section.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-line section.right {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 500px) {
  section[data-part=quick-contact] {
    flex-direction: column;
    align-items: flex-end;
  }
  section[data-part=header-nav] nav > :not(:first-child) {
    display: none;
  }
}
@media (max-width: 700px) {
  footer {
    text-align: center;
  }
  footer .footer-line {
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 1rem;
  }
}
a {
  text-decoration: underline;
  color: inherit;
}
.w-25 {
  width: 25%;
}
.w-50 {
  width: 50%;
}
.w-full {
  width: 100%;
}
.line {
  display: inline;
  align-items: center;
  white-space: nowrap;
  padding: 0.25rem;
}
.line.icon-text {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 1000px) {
  :root {
    --padding-body-x: 3rem;
  }
}
@media (max-width: 800px) {
  :root {
    --padding-body-x: 0.5rem;
    --padding-body-y: 1.5rem;
  }
}
@media (max-width: 800px) {
  section[data-part=top] {
    animation-duration: 120s;
  }
}
.f-twoColumn {
  display: flex;
  flex-direction: row;
}
@media (max-width: 800px) {
  .f-twoColumn {
    flex-direction: column;
  }
}
.uk-animation-slide-right {
  animation-name: uk-fade, uk-slide-right;
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100);
  }
}
@keyframes uk-hide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.listOfferItem {
  display: grid;
  gap: 2rem;
  position: relative;
  margin-top: 2rem;
  padding: 40px;
  border-radius: 1rem;
  grid-template-columns: 0.5fr 1fr;
}
@media (max-width: 800px) {
  .listOfferItem {
    grid-template-rows: 400px auto;
    grid-template-columns: unset;
  }
}
.listOfferItem .offer-images {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.listOfferItem .offer-images img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}
.listOfferItem .offerShortDescription {
  font-size: 100%;
}
.listOfferItem .offerShortDescription a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}
.listOfferItem .offerPublicAddress {
  font-size: 70%;
}
.listOfferItem dl.horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.listOfferItem dl.horizontal dd {
  display: inline-flex;
  align-items: center;
  text-wrap: nowrap;
  flex-wrap: nowrap;
  margin: unset;
  margin-right: 0.5rem;
}
.listOfferItem dl.horizontal dd:not(:last-child)::after {
  margin-left: 0.5rem;
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: currentColor;
}
hr {
  overflow: visible;
  text-align: inherit;
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
.offer-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.offer-page address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
}
.offer-page .offer-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .offer-page .offer-header {
    grid-template-rows: 400px auto;
    grid-template-columns: unset;
  }
  .offer-page .offer-header .brief {
    order: 1;
  }
}
.offer-page .offer-header .brief {
  text-align: right !important;
  text-wrap: balance;
}
.offer-page .offer-header .offer-photos {
  --image-size: 400px;
  position: relative;
  padding: 0 1rem;
  min-height: var(--image-size);
  max-height: var(--image-size);
}
.offer-page .offer-header .offer-photos > div {
  position: relative;
}
.offer-page .offer-header .offer-photos img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover !important;
}
.mb-s {
  margin-bottom: 10px !important;
}
.mb {
  margin-bottom: 20px !important;
}
.mb-m {
  margin-bottom: 40px !important;
}
.mb-l {
  margin-bottom: 40px !important;
}
.text-right {
  text-align: right !important;
}
.text-foo {
  font-size: 1.5rem;
  line-height: 1.5;
}
.contact-page {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}
@media (max-width: 800px) {
  .contact-page {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}
.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
input {
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  font: inherit;
  overflow: visible;
  -webkit-appearance: none;
  max-width: 100%;
  width: 100%;
  border: 0 none;
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  transition: 0.2s ease-in-out;
  transition-property:
    color,
    background-color,
    border;
  border-radius: 0.5rem;
  height: 40px;
  vertical-align: middle;
  display: inline-block;
}
textarea {
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  font: inherit;
  overflow: auto;
  -webkit-appearance: none;
  max-width: 100%;
  width: 100%;
  border: 0 none;
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  transition: 0.2s ease-in-out;
  transition-property:
    color,
    background-color,
    border;
  border-radius: 0.5rem;
  padding-top: 6px;
  padding-bottom: 6px;
  vertical-align: top;
}
textarea {
  min-height: 6rem;
}
.short-listing {
  display: flex;
  flex-direction: column;
}
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}
[data-zoom-backdrop] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 900;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
[data-zoom-backdrop=active] {
  opacity: 1;
  pointer-events: auto;
}
[data-zoom-image] {
  position: relative;
  z-index: 800;
  transform: none;
  transition: transform 250ms ease;
  cursor: zoom-in;
}
[data-zoom-image=active],
[data-zoom-full] {
  z-index: 1000;
  cursor: zoom-out;
  object-fit: contain !important;
}
[data-zoom-full] {
  top: 0;
  left: 0;
  position: fixed;
  transition: transform ease;
  transform: scale(1) !important;
}

/* site/landing/wwwroot/src/components/vjAutoSlider/vjAutoSlider.less */
[x-slideshow] {
  -webkit-tap-highlight-color: transparent;
}
[x-slideshow] > [x-slideshow-items] {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  -webkit-touch-callout: none;
  touch-action: pan-y;
  aspect-ratio: 16 / 9;
}
[x-slideshow] > [x-slideshow-items] > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: none;
  opacity: 0;
  z-index: 0;
}
[x-slideshow] > [x-slideshow-items] > * img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
[x-slideshow] > [x-slideshow-items] > *.active {
  display: block;
  z-index: 10;
  animation: x-slideshow-show 1.5s forwards;
}
[x-slideshow] > [x-slideshow-items] > *.prev {
  z-index: 5;
  animation: x-slideshow-hide 3s forwards;
}
[x-slideshow] > [x-slideshow-items] > *.hide {
  display: block;
  opacity: 0;
}
@keyframes x-slideshow-show {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes x-slideshow-hide {
  0% {
    opacity: 1;
  }
  99% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(150vw);
  }
}
