/* Colours */
/* Fonts */
/* Layout */
/* Spacing */
/* Other */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans/GeneralSans-Variable.woff2") format("woff2"), url("../fonts/general-sans/GeneralSans-Variable.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 200 700;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans/GeneralSans-VariableItalic.woff2") format("woff2"), url("../fonts/general-sans/GeneralSans-VariableItalic.woff") format("woff");
  font-display: swap;
  font-style: italic;
  font-weight: 200 700;
}
@font-face {
  font-family: "Teodor";
  src: url("../fonts/teodor/Teodor-Light.otf") format("opentype"), url("../fonts/teodor/Teodor-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Teodor";
  src: url("../fonts/teodor/Teodor-Medium.otf") format("opentype"), url("../fonts/teodor/Teodor-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Teodor", Georgia, serif;
  font-weight: 200;
  color: #002216;
}

h1 {
  font-size: 62px;
  margin: 32px 0px 44px 0px;
  width: 90%;
}

p {
  font-family: "General Sans", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: #002216;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-start {
  align-content: flex-start;
}

.align-center {
  align-content: center;
}

.align-end {
  align-content: flex-end;
}

.align-between {
  align-content: space-between;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.flex-1 {
  flex: 1 1 0;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.gap-0 {
  gap: 0;
}

.gap-xs {
  gap: 8px;
}

.gap-sm {
  gap: 16px;
}

.gap-md {
  gap: 24px;
}

.gap-lg {
  gap: 32px;
}

.gap-xl {
  gap: 50px;
}

.row-gap-sm {
  row-gap: 16px;
}

.row-gap-md {
  row-gap: 24px;
}

.row-gap-lg {
  row-gap: 32px;
}

.column-gap-sm {
  column-gap: 16px;
}

.column-gap-md {
  column-gap: 24px;
}

.column-gap-lg {
  column-gap: 32px;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33.3333%;
}

.w-50 {
  width: 50%;
}

.w-66 {
  width: 66.6667%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

.vw-100 {
  width: 100vw;
}

.vh-100 {
  height: 100vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.txt-sm {
  font-size: 18px;
}

.txt-md {
  font-size: 22px;
}

.txt-lg {
  font-size: 42px;
}

.txt-xl {
  font-size: 62px;
}

.txt-primary {
  color: #00623A;
}

.txt-secondary {
  color: #E5E4C9;
}

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

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

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

.mb-xs {
  margin-bottom: 8px;
}

.mt-xs {
  margin-top: 8px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mt-sm {
  margin-top: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mt-md {
  margin-top: 24px;
}

.mb-lg {
  margin-bottom: 32px;
}

.mt-lg {
  margin-top: 32px;
}

.mb-xl {
  margin-bottom: 50px;
}

.mt-xl {
  margin-top: 50px;
}

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

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

.font-display {
  font-family: "Teodor", Georgia, serif;
}

.font-body {
  font-family: "General Sans", system-ui, -apple-system, sans-serif;
}

.br {
  border-radius: 4px;
}

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

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

.m-0 {
  margin: 0px;
}

.bg-primary {
  background-color: #00623A;
}

.bg-secondary {
  background-color: #E5E4C9;
}

.bg-dark {
  background-color: #002216;
}

.bg-light {
  background-color: #F7F7F1;
}

.bg-white {
  background-color: #ffffff;
}

.text-center {
  text-align: center;
}

.col-2 {
  column-count: 2;
}

.list-reset {
  list-style: none;
  padding: 0px;
}

body {
  min-height: 100vh;
  background: #E5E4C9;
  color: #002216;
  font-family: "General Sans", system-ui, -apple-system, sans-serif;
  font-weight: 300;
}

code {
  border-radius: 4px;
  background: rgba(0, 34, 22, 0.08);
  padding: 0.1em 0.3em;
}

.site-fallback {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 3rem;
  text-align: center;
}
.site-fallback h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
}
.site-fallback p {
  max-width: 42rem;
  margin: 0;
  color: #667085;
  font-size: 1.125rem;
}

.screen {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1920px;
  height: 1080px;
  padding: 50px;
}

.gallery img {
  aspect-ratio: 902/613;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
}
.gallery .main-image {
  aspect-ratio: 902/613;
  object-fit: cover;
}
.gallery .secondary-image {
  aspect-ratio: 443/352;
  object-fit: cover;
}

.screen-content {
  padding: 50px;
  background: #F7F7F1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.property__eyebrow {
  margin: 0px;
}

.status-tag {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #00623A;
  color: #F7F7F1;
  width: 205px;
  height: 75px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  letter-spacing: 0.1em;
}
.status-tag--let, .status-tag--sold {
  background-color: #e01f20;
}

.info-panel {
  height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price {
  text-align: center;
  font-weight: 200;
}

.map {
  position: relative;
  width: 100%;
  height: 308px;
  overflow: hidden;
  border-radius: 4px;
  background: #eef1ed;
}

.map__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map__marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 32px;
  transform: translate(-50%, -100%);
}

.map--unavailable {
  background: linear-gradient(135deg, rgba(0, 98, 58, 0.12), transparent), #eef1ed;
}

.office-properties {
  position: relative;
  width: 100%;
  height: 100%;
}

.office-property {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 1200ms ease, visibility 0ms linear 1200ms;
  visibility: hidden;
}

.office-property.is-active {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0ms;
  visibility: visible;
  z-index: 2;
}

.screen-debug {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(0, 34, 22, 0.88);
  color: #fff;
  font-family: "General Sans", system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.screen-debug span,
.screen-debug strong {
  color: inherit;
}

.screen-debug strong {
  font-size: 18px;
  font-weight: 600;
}

/*# sourceMappingURL=main.css.map */
