@font-face {
  font-family: "Branch";
  src: url("./fonts/Branch.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald Bold";
  src: url("./fonts/Oswald-Bold.ttf");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist Bold";
  src: url("./fonts/Urbanist-Bold.woff2") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist Medium";
  src: url("./fonts/Urbanist-Medium.woff2") format("woff");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist Regular";
  src: url("./fonts/Urbanist-Regular.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist SemiBold";
  src: url("./fonts/Urbanist-SemiBold.woff2") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.bg-brand-green {
  background-color: #6d9384 !important;
}

.bg-brand-blue {
  background-color: #364258 !important;
}

#lottie {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}

:root {
  --scale-factor: 1;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "Urbanist Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

h1 {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(16px, 5vw, 200px);
}

b {
  font-family: "Urbanist Bold", sans-serif;
  font-weight: 600;
  font-style: normal;
}

p {
  font-size: calc(1vw + 0.8rem);
  text-align: left;
  line-height: 1.5em;
  color: #4d4d4d;
}

.next-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 0.3;
}
.next-button #arrow-svg {
  height: 50px;
  width: 50px;
}
.next-button:hover {
  opacity: 1;
}
.next-button:hover .st0 {
  fill: #6d9384;
  transition: fill 0.3s ease;
}
.next-button.back-button {
  left: 0;
  right: auto;
  transform: translate(50%, -50%) rotate(180deg);
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
}
.loading .logo {
  width: 200px;
  margin-bottom: 40px;
}
.loading .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
.loading p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #000;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .loading .logo {
    width: 400px;
  }
}

.layout {
  padding-top: 51px;
  max-width: 100vw;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .layout {
    padding-top: 74px;
  }
}

@media screen and (min-width: 1024px) and (min-height: 500px) {
  .horizontal-scroll-container {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: auto;
    width: 1200vw;
    height: 100vh;
  }
  .horizontal-scroll-container section {
    height: 100vh;
  }
}

.show-web {
  display: none !important;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .show-web {
    display: block !important;
  }
}

.show-mob {
  display: block !important;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .show-mob {
    display: none !important;
  }
}

.register-button {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.register-button svg {
  width: 100%;
}
.register-button svg:hover {
  cursor: pointer;
}
.register-button svg:hover .cls-1 {
  fill: #6d9384;
  transition: fill 0.3s ease;
}

.rotate-device {
  z-index: 9999;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
  max-width: 100vw;
}
.rotate-device .rotate-device-image {
  height: 200px;
}
.rotate-device p {
  font-size: 1.5rem;
}

.navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
}
.navigation .navigation-bar {
  position: relative;
  z-index: 999;
  background-color: #e6e6e6;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  max-height: 51px;
}
.navigation .navigation-bar .logo {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation .navigation-bar .logo img {
  height: 30px;
}
.navigation .navigation-bar .links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navigation .navigation-bar .links .tel {
  padding: 0 30px;
  font-size: 30px;
  color: #6d6e70;
  text-decoration: none;
}
.navigation .navigation-bar .links .tel:hover {
  color: #6d9384;
}
.navigation .navigation-bar .links .socials {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding-right: 30px;
}
.navigation .navigation-bar .links .socials img {
  height: 30px;
}
.navigation .navigation-bar .links .socials img .facebook_img__cls-1,
.navigation .navigation-bar .links .socials img .instagram_img__cls-1 {
  fill: #6d6e70 !important;
}
.navigation .navigation-bar .links .register {
  background-color: #364258;
  color: #f9f9f1;
  font-size: 18px;
  padding: 0.5em 1em;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.navigation .navigation-bar .links .register:hover {
  background-color: #6d9384;
}
.navigation .navigation-bar .links .menu-toggler {
  background-color: #e6e6e6;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 53px;
}
.navigation .navigation-bar .links .menu-toggler span {
  display: block;
  height: 2px;
  background: black;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.navigation .navigation-bar .links .menu-toggler.open .line-1 {
  transform: rotate(45deg) translate(5px, 5px);
}
.navigation .navigation-bar .links .menu-toggler.open .line-2 {
  opacity: 0;
}
.navigation .navigation-bar .links .menu-toggler.open .line-3 {
  transform: rotate(-45deg) translate(5px, -5px);
}
.navigation .navigation-menu {
  background-color: #364258;
  height: 100vh;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  display: none;
  position: fixed;
  z-index: 888;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}
.navigation .navigation-menu.show {
  display: block;
  transform: translateY(0);
}
.navigation .navigation-menu .navigation-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.navigation .navigation-menu .navigation-wrapper .menu-flower {
  width: calc(800px * var(--scale-factor));
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  background-position-y: top;
  margin-right: calc(40px * var(--scale-factor));
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links a,
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links button,
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .navlinks-btn {
  color: #f9f9f1;
  text-decoration: none;
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(16px, 11vw, 25px);
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  text-align: center;
  display: block;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links a:hover,
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links button:hover,
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .navlinks-btn:hover {
  color: #6d9384;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul {
  padding: 0;
  list-style: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li a {
  font-size: clamp(18px, 11vw, 25px) !important;
  text-transform: uppercase;
  font-family: "Urbanist Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li img {
  display: none;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav:hover .subnav-main-link {
  color: #6d9384;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav:hover ul {
  height: auto;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .cos-logo {
  margin-top: 30px;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .cos-logo img {
  height: 40px;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.navigation .navigation-menu .navigation-wrapper .navlink-wrapper .socials img {
  height: 30px;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .navigation .navigation-bar {
    max-height: 74px;
    padding-left: 30px;
  }
  .navigation .navigation-bar .logo {
    padding: 20px 0;
  }
  .navigation .navigation-bar .logo img {
    height: 50px;
  }
  .navigation .navigation-bar .links .register {
    font-size: 1.5rem;
    padding: 0.5em 1.5em;
  }
  .navigation .navigation-bar .links .socials {
    display: flex;
  }
  .navigation .navigation-menu .navigation-wrapper {
    padding-top: 74px;
    justify-content: flex-start;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper {
    border-left: 1px solid #6d9384;
    align-items: flex-start;
    margin-left: calc(40px * var(--scale-factor));
    padding-left: calc(40px * var(--scale-factor));
    justify-content: flex-start;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links {
    align-items: flex-start;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links a {
    font-size: calc(50px * var(--scale-factor));
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav .navlinks-btn {
    text-align: left;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul {
    padding: 0;
    list-style: none;
    height: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.5s ease-in-out;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px 0;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li a {
    font-size: clamp(14px, 11vw, 20px) !important;
    text-transform: uppercase;
    font-family: "Urbanist Regular", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li img {
    opacity: 0;
    height: 20px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block !important;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav ul li:hover img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav:hover .subnav-main-link {
    color: #6d9384;
  }
  .navigation .navigation-menu .navigation-wrapper .navlink-wrapper .nav-links .sub-nav:hover ul {
    height: auto;
  }
}

.welcome-section {
  padding-top: var(--nav-height);
}
.welcome-section .hero-image {
  padding: 30px 0;
  background-color: #f9f9f1;
  position: relative;
}
.welcome-section .hero-image .t-logo {
  position: absolute;
  max-width: 150px;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.welcome-section .hero-image .m-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.welcome-section .hero-text {
  padding: 2rem 10%;
  text-align: center;
  color: #364258;
}
.welcome-section .hero-text h2 {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12vw;
  margin: 0;
  font-weight: 400;
  line-height: 1em;
}
.welcome-section .hero-text h1 {
  margin: 0;
  font-size: 18vw;
  font-weight: 400;
  line-height: 0.9em;
}
.welcome-section .hero-text p {
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}
.welcome-section .hero-text h4 {
  font-size: 5vw;
  line-height: 1em;
  margin: 2rem 0;
}
.welcome-section .hero-text .cos-logo img {
  height: 10vw;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .welcome-section {
    max-height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding-top: 0;
  }
  .welcome-section .hero-image {
    height: 100vh;
    min-width: 50vw;
    max-width: 50vw;
    width: calc(60vw * var(--scale-factor));
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbf9f0;
    padding-top: var(--nav-height);
  }
  .welcome-section .hero-image .t-logo {
    width: calc(300px * var(--scale-factor));
    max-width: calc(300px * var(--scale-factor));
  }
  .welcome-section .hero-image .hero-img {
    min-width: calc(60vw * var(--scale-factor));
    max-width: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
    height: 100vh;
  }
  .welcome-section .hero-text {
    max-width: 50vw;
    padding: calc(2rem * var(--scale-factor)) calc(9rem * var(--scale-factor));
  }
  .welcome-section .hero-text h2 {
    font-size: calc(80px * var(--scale-factor));
    text-align: left;
  }
  .welcome-section .hero-text h1 {
    font-size: calc(120px * var(--scale-factor));
    text-align: left;
  }
  .welcome-section .hero-text p {
    font-size: calc(28px * var(--scale-factor));
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .welcome-section .hero-text h4 {
    font-size: calc(30px * var(--scale-factor));
    text-align: left;
  }
  .welcome-section .hero-text h4 span {
    color: #6d9384;
  }
  .welcome-section .hero-text .scroll-discover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(40px * var(--scale-factor)) 0;
  }
  .welcome-section .hero-text .scroll-discover .scroll-to-explore {
    height: calc(170px * var(--scale-factor));
    width: calc(170px * var(--scale-factor));
    min-height: calc(170px * var(--scale-factor));
    min-width: calc(170px * var(--scale-factor));
    background-color: #364258;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
  }
  .welcome-section .hero-text .scroll-discover .scroll-to-explore img {
    width: 100%;
    height: auto;
    max-width: calc(140px * var(--scale-factor));
  }
  .welcome-section .hero-text .scroll-discover .scroll-to-explore:hover {
    background-color: #6d9384;
    transition: all 0.3s ease;
  }
  .welcome-section .hero-text .cos-logo {
    text-align: left;
  }
  .welcome-section .hero-text .cos-logo img {
    height: calc(70px * var(--scale-factor));
  }
}

.family-section {
  background-color: #6d9384;
  padding-bottom: 3rem;
}
.family-section .family-hero .banner {
  position: relative;
}
.family-section .family-hero .banner h1 {
  position: absolute;
  color: #6d9384;
  font-weight: 400;
  font-size: 30vw;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin: 0;
  line-height: 1em;
  transform: translate(-50%, -50%);
}
.family-section .family-hero .banner .banner-img {
  width: 100%;
}
.family-section .family-hero .middle-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.family-section .family-hero .middle-image .m-image {
  max-width: 60vw;
  margin: -40vw auto 0 auto;
  z-index: 3;
}
.family-section .family-hero .middle-image .m-video {
  width: 100%;
  height: auto;
  max-width: 60vw;
  margin: -40vw auto 0 auto;
  z-index: 3;
  border-top-left-radius: 45%;
  border-top-right-radius: 45%;
}
.family-section .family-hero .middle-image .logo {
  text-align: center;
  margin-top: -16vw;
  z-index: 4;
  position: relative;
}
.family-section .family-hero .middle-image .logo img {
  height: 38vw;
}
.family-section .family-hero .text {
  text-align: center;
  color: #fff;
  padding: 0 10%;
}
.family-section .family-hero .text h1 {
  font-size: 11.5vw;
  font-weight: 400;
  line-height: 1em;
}
.family-section .family-hero .text p {
  text-align: center;
  color: #fff;
  line-height: 1.5em;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .family-section {
    max-height: 100vh;
    height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    padding-top: var(--nav-height);
  }
  .family-section .family-hero .banner {
    max-height: calc(450px * var(--scale-factor));
    height: calc(450px * var(--scale-factor));
  }
  .family-section .family-hero .banner h1 {
    font-size: calc(500px * var(--scale-factor));
  }
  .family-section .family-hero .banner .banner-img {
    height: calc(450px * var(--scale-factor));
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .family-section .family-hero .middle-image .m-video {
    width: calc(500px * var(--scale-factor));
    margin: calc(-270px * var(--scale-factor)) auto 0 auto;
  }
  .family-section .family-hero .middle-image .fallback-image {
    position: relative;
    z-index: 2;
    width: calc(500px * var(--scale-factor));
    margin: calc(-270px * var(--scale-factor)) auto 0 auto;
  }
  .family-section .family-hero .middle-image .logo {
    margin-top: -6rem;
  }
  .family-section .family-hero .middle-image .logo img {
    height: calc(200px * var(--scale-factor));
  }
  .family-section .family-hero .text {
    margin-top: calc(-450px * var(--scale-factor));
    display: grid;
    grid-template-columns: auto calc(500px * var(--scale-factor)) auto;
    padding: 0;
    z-index: 10;
  }
  .family-section .family-hero .text h1 {
    font-size: calc(90px * var(--scale-factor));
    text-align: right;
    z-index: 10;
    position: relative;
    max-width: calc(700px * var(--scale-factor));
    justify-self: end;
    padding-right: 50px;
  }
  .family-section .family-hero .text h1 span {
    margin-right: -12%;
  }
  .family-section .family-hero .text p {
    grid-column: 3;
    text-align: left;
    padding-right: calc(100px * var(--scale-factor));
    padding-left: calc(20px * var(--scale-factor));
    font-size: calc(22px * var(--scale-factor));
    max-width: calc(700px * var(--scale-factor));
  }
}

.towns-and-singles-section .top-banner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  padding: 0 20px;
}
.towns-and-singles-section .top-banner .flower {
  max-width: 80vw;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.towns-and-singles-section .top-banner .tns_logo {
  max-width: 70vw;
  width: 100%;
}
.towns-and-singles-section .homes {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.towns-and-singles-section .homes .f-townhomes h1 {
  color: #6d9384;
  font-size: calc(6vw + 1rem);
  line-height: 0.9em;
  max-width: 60vw;
}
.towns-and-singles-section .homes .f-townhomes .f-townhomes-img {
  width: 100%;
}
.towns-and-singles-section .homes .t-townhomes .heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.towns-and-singles-section .homes .t-townhomes .heading .size {
  color: #364258;
  font-size: calc(12vw + 1rem);
  line-height: 0.9em;
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.towns-and-singles-section .homes .t-townhomes .heading h1 {
  margin: 0;
  font-size: calc(3vw + 1.2rem);
  line-height: 0.9em;
  color: #4d4d4d;
  max-width: 40vw;
}
.towns-and-singles-section .homes .t-townhomes img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.towns-and-singles-section .homes .t-townhomes .t-townhomes-img {
  width: 100%;
}
.towns-and-singles-section .homes .clickto {
  cursor: pointer;
  background-color: #6d9384;
  border-radius: 0 0 50px 0;
  padding: 10px 15px;
  color: #fff;
  display: flex;
  width: 100%;
  margin-left: auto;
  float: right;
  margin-top: -4px;
  gap: 15px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.towns-and-singles-section .homes .clickto .text1 {
  font-size: calc(50px * var(--scale-factor));
  font-weight: 400;
  line-height: 1.1em;
  text-align: right;
}
.towns-and-singles-section .homes .clickto .text2 {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: calc(90px * var(--scale-factor));
  line-height: 1em;
}
.towns-and-singles-section .text {
  padding: 0px 20px;
}
.towns-and-singles-section .text p {
  margin-top: 0;
}
.towns-and-singles-section .register-now {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.towns-and-singles-section .register-now img {
  max-width: 30vw;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .towns-and-singles-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    display: grid;
    grid-template-rows: auto auto;
  }
  .towns-and-singles-section .top-banner {
    display: none;
  }
  .towns-and-singles-section .homes {
    padding-top: var(--nav-height);
    display: grid;
    grid-template-columns: calc(40% - 15px) calc(30% - 30px) calc(30% - 15px);
    align-items: end;
  }
  .towns-and-singles-section .homes .f-townhomes h1 {
    font-size: calc(70px * var(--scale-factor));
    margin-bottom: calc(25px * var(--scale-factor));
  }
  .towns-and-singles-section .homes .f-townhomes .f-townhomes-img {
    min-height: calc(400px * var(--scale-factor));
    max-height: calc(400px * var(--scale-factor));
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .towns-and-singles-section .homes .t-townhomes .heading .size {
    font-size: calc(130px * var(--scale-factor));
  }
  .towns-and-singles-section .homes .t-townhomes .heading h1 {
    font-size: calc(45px * var(--scale-factor));
    margin-bottom: 0px;
  }
  .towns-and-singles-section .homes .t-townhomes .t-townhomes-img {
    min-height: calc(400px * var(--scale-factor));
    max-height: calc(400px * var(--scale-factor));
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .towns-and-singles-section .homes .t-townhomes img {
    aspect-ratio: unset;
  }
  .towns-and-singles-section .homes .clickto {
    cursor: pointer;
    background-color: #6d9384;
    border-radius: 0 0 50px 0;
    padding: 15px 38px;
    color: #fff;
    display: inline-flex;
    width: auto;
    margin-left: auto;
    float: right;
    margin-top: -4px;
    gap: 15px;
    align-items: center;
    text-decoration: none;
  }
  .towns-and-singles-section .homes .clickto .text1 {
    font-size: calc(20px * var(--scale-factor));
    font-weight: 400;
    line-height: 1.1em;
    text-align: right;
  }
  .towns-and-singles-section .homes .clickto .text2 {
    font-family: "Branch", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: calc(45px * var(--scale-factor));
    line-height: 1em;
  }
  .towns-and-singles-section .bottom-section {
    display: grid;
    grid-template-columns: auto 45% calc(200px * var(--scale-factor));
  }
  .towns-and-singles-section .bottom-section .bottom-banner {
    display: flex;
    align-items: flex-end;
  }
  .towns-and-singles-section .bottom-section .bottom-banner .flower {
    height: auto;
    width: calc(750px * var(--scale-factor));
  }
  .towns-and-singles-section .bottom-section .text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .towns-and-singles-section .bottom-section .text p {
    font-size: calc(22px * var(--scale-factor));
    max-width: calc(780px * var(--scale-factor));
    line-height: 1.5em;
  }
  .towns-and-singles-section .bottom-section .register-now {
    height: auto;
    display: flex;
    align-items: center;
  }
  .towns-and-singles-section .bottom-section .register-now img {
    max-width: calc(200px * var(--scale-factor));
    margin: 0;
  }
}

.freehold-towns-section .title-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.freehold-towns-section .title-header h1 {
  color: #6d9384;
  line-height: 1em;
  font-weight: 100;
  font-size: calc(6vw + 1rem);
  text-align: center;
  margin: 0 0 30px 0;
}
.freehold-towns-section .elevations-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 0px;
}
.freehold-towns-section .elevations-wrapper .elevations {
  display: grid;
  grid-template-columns: calc(380px * var(--scale-factor)) calc(446px * var(--scale-factor)) calc(380px * var(--scale-factor)) calc(40px * var(--scale-factor));
  grid-template-rows: calc(429px * var(--scale-factor)) calc(50px * var(--scale-factor)) calc(429px * var(--scale-factor));
  gap: 1px;
}
.freehold-towns-section .elevations-wrapper .elevations .image-col img {
  width: 100%;
  height: calc(429px * var(--scale-factor));
  -o-object-fit: cover;
     object-fit: cover;
}
.freehold-towns-section .elevations-wrapper .elevations .name-col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #6d9384;
  color: #fff;
  padding: calc(10px * var(--scale-factor));
  font-size: calc(20px * var(--scale-factor));
}
.freehold-towns-section .elevations-wrapper .elevations .text-col {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #6d9384;
  text-align: right;
  padding: 0 calc(10px * var(--scale-factor));
  height: calc(429px * var(--scale-factor));
  font-size: calc(20px * var(--scale-factor));
}
.freehold-towns-section .elevations-wrapper .elevations .empty-col {
  height: 39px;
}
.freehold-towns-section .elevations-wrapper .elevations .e-col {
  text-decoration: none;
  display: block;
}
.freehold-towns-section .elevations-wrapper .elevations .e-col:hover {
  cursor: pointer;
}
.freehold-towns-section .elevations-wrapper .elevations .e-col:hover img {
  filter: brightness(0.8);
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .freehold-towns-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: calc(170px * var(--scale-factor));
  }
  .freehold-towns-section .title-header img {
    width: calc(450px * var(--scale-factor));
  }
  .freehold-towns-section .title-header h1 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: calc(90px * var(--scale-factor));
    text-align: center;
    margin: 0;
    padding-bottom: var(--nav-height);
  }
  .freehold-towns-section .elevations-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: var(--nav-height);
  }
  .freehold-towns-section .elevations-wrapper .elevations {
    display: grid;
    grid-template-columns: calc(380px * var(--scale-factor)) calc(446px * var(--scale-factor)) calc(380px * var(--scale-factor)) calc(40px * var(--scale-factor));
    grid-template-rows: calc(429px * var(--scale-factor)) calc(50px * var(--scale-factor)) calc(429px * var(--scale-factor));
    gap: 1px;
  }
  .freehold-towns-section .elevations-wrapper .elevations .image-col img {
    width: 100%;
    height: calc(429px * var(--scale-factor));
    -o-object-fit: cover;
       object-fit: cover;
  }
  .freehold-towns-section .elevations-wrapper .elevations .name-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #6d9384;
    color: #fff;
    padding: 10px;
  }
  .freehold-towns-section .elevations-wrapper .elevations .text-col {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #6d9384;
    text-align: right;
    padding: 0 10px;
    height: calc(429px * var(--scale-factor));
  }
  .freehold-towns-section .elevations-wrapper .elevations .empty-col {
    height: 39px;
  }
  .freehold-towns-section .elevations-wrapper .elevations .e-col:hover {
    cursor: pointer;
  }
  .freehold-towns-section .elevations-wrapper .elevations .e-col:hover img {
    filter: brightness(0.8);
  }
}

.single-detached-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: calc(140px * var(--scale-factor));
  padding-top: 74px;
}
.single-detached-section .title-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px 20px 20px;
}
.single-detached-section .title-header img {
  width: calc(200px * var(--scale-factor));
}
.single-detached-section .title-header h1 {
  color: #6d9384;
  line-height: 1em;
  font-weight: 100;
  font-size: calc(175px * var(--scale-factor));
  text-align: left;
  margin: 0;
  display: inline-block;
}
.single-detached-section .model-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(90px * var(--scale-factor));
  padding: 0 calc(60px * var(--scale-factor));
  width: 100%;
}
.single-detached-section .model-wrapper .model-card {
  width: 100%;
}
.single-detached-section .model-wrapper .model-card .model-carousel {
  position: relative;
}
.single-detached-section .model-wrapper .model-card .model-carousel .corosel-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}
.single-detached-section .model-wrapper .model-card .model-carousel .corosel-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.single-detached-section .model-wrapper .model-card .model-carousel .next {
  right: 0;
}
.single-detached-section .model-wrapper .model-card .model-carousel .previous {
  left: 0;
}
.single-detached-section .model-wrapper .model-card .model-carousel .carousel-image {
  position: relative;
  aspect-ratio: 473/355;
  overflow: hidden;
  display: block;
}
.single-detached-section .model-wrapper .model-card .model-carousel .carousel-image img {
  aspect-ratio: 473/355;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease-in-out;
}
.single-detached-section .model-wrapper .model-card .text {
  text-decoration: none;
  color: #364258;
}
.single-detached-section .model-wrapper .model-card .text .title {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: calc(140px * var(--scale-factor));
}
.single-detached-section .model-wrapper .model-card .text .sqfeet {
  font-weight: 200;
  font-size: calc(70px * var(--scale-factor));
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .single-detached-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    flex-direction: row;
  }
  .single-detached-section .title-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(10px * var(--scale-factor));
  }
  .single-detached-section .title-header img {
    width: calc(200px * var(--scale-factor));
  }
  .single-detached-section .title-header h1 {
    color: #6d9384;
    line-height: 1em;
    font-weight: 100;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: calc(90px * var(--scale-factor));
    text-align: center;
    margin: 0;
    padding-bottom: var(--nav-height);
  }
  .single-detached-section .model-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: calc(30px * var(--scale-factor));
  }
  .single-detached-section .model-wrapper .model-card .model-carousel {
    aspect-ratio: 473/355;
    height: calc(350px * var(--scale-factor));
  }
  .single-detached-section .model-wrapper .model-card .carousel-image img {
    aspect-ratio: 473/355;
    height: calc(350px * var(--scale-factor));
    width: auto;
  }
  .single-detached-section .model-wrapper .model-card .text .title {
    font-family: "Branch", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: calc(30px * var(--scale-factor));
  }
  .single-detached-section .model-wrapper .model-card .text .sqfeet {
    font-weight: 200;
    text-transform: uppercase;
    font-size: calc(20px * var(--scale-factor));
  }
  .single-detached-section .flower-image {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .single-detached-section .flower-image img {
    height: calc(500px * var(--scale-factor));
    width: auto;
  }
}

.features-and-finishes-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.features-and-finishes-section .info-section {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.features-and-finishes-section .info-section .text {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  grid-column: 2/2;
  grid-row: 2/2;
  gap: calc(20px * var(--scale-factor));
  padding: 20px;
}
.features-and-finishes-section .info-section .text p {
  text-align: left;
  font-size: calc(1vw + 0.8rem);
}
.features-and-finishes-section .info-section .text a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  width: 100%;
  display: block;
  cursor: pointer;
  background-color: #364258;
  font-size: 20px;
}
.features-and-finishes-section .info-section .text a.green {
  background-color: #6d9384;
}
.features-and-finishes-section .info-section .hero {
  width: 100%;
  max-width: 100vw;
  height: auto;
  order: 1;
  padding-top: 50px;
}
.features-and-finishes-section .info-section .hero-text {
  order: 2;
  padding: 30px 20px 0 20px;
}
.features-and-finishes-section .info-section .hero-text .title {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #364258;
  font-size: calc(8vw + 1rem);
  line-height: 1;
}
.features-and-finishes-section .info-section .hero-text .title span {
  color: #6d9384;
}
.features-and-finishes-section .info-section .hero-text .sub-text {
  padding-top: calc(30px * var(--scale-factor));
  padding-left: 0;
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #364258;
  line-height: 1.3;
  font-size: calc(3vw + 1rem);
  white-space: pre-line;
  text-align: left;
}
.features-and-finishes-section .image-section {
  max-width: 100vw;
  order: 2;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .features-and-finishes-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    position: relative;
    padding-top: 74px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    align-items: unset;
    justify-content: unset;
  }
  .features-and-finishes-section .info-section {
    display: grid;
    grid-template-columns: auto calc(500px * var(--scale-factor));
    grid-template-rows: 1fr 1fr;
    position: relative;
    order: unset;
    align-items: unset;
    justify-content: unset;
  }
  .features-and-finishes-section .info-section .text {
    grid-column: 2/2;
    grid-row: 2/2;
    padding: calc(20px * var(--scale-factor));
  }
  .features-and-finishes-section .info-section .text p {
    font-size: calc(18px * var(--scale-factor));
  }
  .features-and-finishes-section .info-section .text a {
    background-color: #364258;
    font-size: calc(20px * var(--scale-factor));
  }
  .features-and-finishes-section .info-section .text a.green {
    background-color: #6d9384;
  }
  .features-and-finishes-section .info-section .hero {
    width: auto;
    height: 100%;
    max-height: calc(750px * var(--scale-factor));
    -o-object-fit: contain;
       object-fit: contain;
    grid-column: 1/1;
    grid-row: span 2;
    align-self: end;
    order: unset;
    padding-top: 0px;
  }
  .features-and-finishes-section .info-section .hero-text {
    position: absolute;
    top: calc(56px * var(--scale-factor));
    left: calc(500px * var(--scale-factor));
    order: unset;
  }
  .features-and-finishes-section .info-section .hero-text .title {
    font-size: calc(80px * var(--scale-factor));
  }
  .features-and-finishes-section .info-section .hero-text .sub-text {
    font-size: calc(35px * var(--scale-factor));
    padding-left: calc(195px * var(--scale-factor));
  }
  .features-and-finishes-section .image-section {
    display: grid;
    grid-template-columns: calc(300px * var(--scale-factor)) calc(300px * var(--scale-factor));
    grid-template-rows: repeat(3, 1fr);
    max-height: calc(100vh - 74px);
    gap: calc(10px * var(--scale-factor));
    justify-self: end;
    position: relative;
    max-width: unset;
    order: unset;
    padding: unset;
  }
  .features-and-finishes-section .image-section img {
    -o-object-fit: cover;
       object-fit: cover;
    max-height: calc((100vh - 74px - 10px * var(--scale-factor)) / 3);
    width: 100%;
  }
  .features-and-finishes-section .image-section img:first-of-type {
    grid-column: span 2;
    grid-row: 1;
  }
  .features-and-finishes-section .image-section img:nth-of-type(2n) {
    grid-column: 1;
    grid-row: 2;
  }
  .features-and-finishes-section .image-section img:nth-of-type(3n) {
    grid-column: 2;
    grid-row: 2;
  }
  .features-and-finishes-section .image-section img:nth-of-type(4n) {
    grid-column: span 2;
    grid-row: 3;
  }
  .features-and-finishes-section .image-section img.logo {
    position: absolute;
    width: auto;
    max-height: calc(250px * var(--scale-factor));
    left: calc(-110px * var(--scale-factor));
    top: calc(190px * var(--scale-factor));
  }
}

.master-planned-section .flower {
  position: relative;
  width: 50%;
  height: auto;
}
.master-planned-section .sitemap {
  width: 100%;
  height: auto;
}
.master-planned-section .sitemap img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.master-planned-section .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.master-planned-section .text h1 {
  color: #6d9384;
  line-height: 1.1;
  font-size: calc(8vw + 1rem);
  margin: 0;
  text-align: center;
}
.master-planned-section .text p {
  font-size: calc(1vw + 0.8rem);
  text-align: center;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .master-planned-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    position: relative;
    padding-top: 74px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    gap: calc(40px * var(--scale-factor));
    position: relative;
  }
  .master-planned-section .flower {
    position: absolute;
    top: 74px;
    left: 0;
    height: calc(300px * var(--scale-factor));
    width: auto;
  }
  .master-planned-section .sitemap {
    padding: calc(20px * var(--scale-factor));
  }
  .master-planned-section .sitemap img {
    height: 100%;
    max-height: calc(100vh - 74px - 40px);
    width: 100%;
    min-width: 40vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .master-planned-section .text {
    padding: calc(330px * var(--scale-factor)) calc(20px * var(--scale-factor)) calc(20px * var(--scale-factor)) calc(40px * var(--scale-factor));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(20px * var(--scale-factor));
  }
  .master-planned-section .text h1 {
    line-height: 1.1;
    margin: 0;
    font-size: calc(90px * var(--scale-factor));
    color: #6d9384;
    text-align: left;
  }
  .master-planned-section .text p {
    font-size: calc(22px * var(--scale-factor));
    text-align: left;
  }
}

.amenities-section .amenities-map {
  width: 100%;
  height: auto;
}
.amenities-section .amenities-map img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.amenities-section .amenities-text {
  padding: 30px 20px;
  width: 100%;
  width: 100%;
  height: 100%;
  overflow-y: unset;
}
.amenities-section .amenities-text .amenities-list {
  list-style: none;
  padding-left: 0;
}
.amenities-section .amenities-text .amenities-list li {
  padding: 0;
  margin: 20px 0;
}
.amenities-section .amenities-text .amenities-list .header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(30px * var(--scale-factor));
  cursor: pointer;
  width: 100%;
}
.amenities-section .amenities-text .amenities-list .header img {
  height: 40px;
  width: auto;
}
.amenities-section .amenities-text .amenities-list .header h2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #6d9384;
  padding: calc(10px * var(--scale-factor)) 0;
  font-family: "Urbanist Bold", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: calc(10px * var(--scale-factor)) 0 0 0;
}
.amenities-section .amenities-text .amenities-list .header h2 .icon {
  padding: 1px;
  background-color: #6d9384;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 100;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenities-section .amenities-text .amenities-list .content {
  height: 0;
  width: 100%;
}
.amenities-section .amenities-text .amenities-list .content ol {
  display: none;
  padding-left: 72px;
}
.amenities-section .amenities-text .amenities-list .content.active {
  height: auto;
}
.amenities-section .amenities-text .amenities-list .content.active ol {
  display: block;
}
.amenities-section .amenities-text .amenities-list .content.active ol li {
  padding: 2px 0;
  margin: 3px 0;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .amenities-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    position: relative;
    padding-top: 74px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    gap: calc(40px * var(--scale-factor));
  }
  .amenities-section .amenities-map img {
    height: 100%;
    max-height: calc(100vh - 74px);
    width: auto;
  }
  .amenities-section .amenities-text {
    padding-right: calc(110px * var(--scale-factor));
    padding-top: calc(50px * var(--scale-factor));
    width: 100%;
    height: calc(100vh - 74px - 50px * var(--scale-factor));
    overflow-y: auto;
  }
  .amenities-section .amenities-text .amenities-list .header h2 .icon {
    font-size: calc(15px * var(--scale-factor));
    width: calc(20px * var(--scale-factor));
    height: calc(20px * var(--scale-factor));
  }
}

.homes-designed-section {
  padding-bottom: 30px;
}
.homes-designed-section .text {
  padding: 0 20px;
}
.homes-designed-section .text h1 {
  color: #6d9384;
  line-height: 1em;
  font-size: 20vw;
  font-weight: 100;
  margin: 0 0 20px 0;
}
.homes-designed-section .text h2 {
  color: #364258;
  line-height: 1em;
  font-size: 10vw;
  margin: 0 0 10px 0;
}
.homes-designed-section .text ul {
  padding-left: 20px;
}
.homes-designed-section .text ul li {
  line-height: 1.5em;
  font-size: 1.1rem;
  color: #4d4d4d;
  margin-bottom: 0.3rem;
}
.homes-designed-section .text .logo-round {
  display: none;
}
.homes-designed-section .video {
  padding: 0;
}
.homes-designed-section .video video {
  width: 100%;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .homes-designed-section {
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    position: relative;
    padding-bottom: 0;
  }
  .homes-designed-section .text {
    padding-right: calc(30px * var(--scale-factor));
    padding-left: calc(60px * var(--scale-factor));
    padding-top: var(--nav-height);
    padding-bottom: 20px;
    position: relative;
  }
  .homes-designed-section .text h1 {
    font-size: calc(140px * var(--scale-factor));
  }
  .homes-designed-section .text h2 {
    font-size: calc(70px * var(--scale-factor));
  }
  .homes-designed-section .text ul li {
    font-size: calc(22px * var(--scale-factor));
  }
  .homes-designed-section .text p {
    font-size: calc(22px * var(--scale-factor));
  }
  .homes-designed-section .text .logo-round {
    display: block;
    max-width: 200px;
    margin: 0 auto;
    position: absolute;
    top: calc(var(--nav-height));
    right: -100px;
  }
  .homes-designed-section .video {
    padding-top: var(--nav-height);
    height: 100vh;
  }
  .homes-designed-section .video video {
    padding-top: calc(20px * var(--scale-factor));
    padding-bottom: calc(20px * var(--scale-factor));
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.community-section .text {
  padding: 0 20px;
}
.community-section .text .t-logo {
  max-width: 70vw;
  margin: 0 auto;
  display: block;
}
.community-section .text .t-text {
  font-size: 10vw;
  color: #364258;
}
.community-section .text .t-text.t-top {
  text-align: left;
}
.community-section .text .t-text.t-bottom {
  text-align: right;
}
.community-section .text p {
  text-align: center;
  margin-bottom: 10vw;
}
.community-section .text .register {
  max-width: 40vw;
  margin: 0 auto;
  display: block;
  margin-bottom: 10vw;
}
.community-section .image {
  padding: 0;
}
.community-section .image .community-hero {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .community-section {
    height: 100vh;
    min-width: 100vw;
    flex: 0 0 100vw;
    width: 100vw;
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .community-section .text {
    max-width: calc(980px * var(--scale-factor));
    grid-column: 2;
    grid-row: 1;
    padding: calc(40px * var(--scale-factor));
    padding-top: var(--nav-height);
    display: grid;
    justify-content: start;
    align-items: start;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .community-section .text .t-logo {
    max-width: calc(350px * var(--scale-factor));
    height: 100%;
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .community-section .text .t-text {
    font-size: calc(80px * var(--scale-factor));
  }
  .community-section .text .t-text.t-top {
    align-self: end;
    text-align: center;
    grid-row: 2;
    grid-column: 1/span 2;
    margin-right: 8vw;
  }
  .community-section .text .t-text.t-bottom {
    margin-left: 8vw;
    text-align: center;
    grid-row: 3;
    grid-column: 1/span 2;
  }
  .community-section .text p {
    font-size: calc(1.3rem * var(--scale-factor));
    grid-row: 4;
    grid-column: 1;
    margin-bottom: 60px;
    margin-top: 0;
    text-align: left;
  }
  .community-section .text .register {
    grid-row: 4;
    grid-column: 2;
    width: 100%;
    min-width: 240px;
    padding: 0 40px;
    max-width: 10%;
    margin-bottom: 20px;
  }
  .community-section .image {
    grid-column: 1;
    grid-row: 1;
    padding-left: 30px;
    padding-top: var(--nav-height);
  }
  .community-section .image .community-hero {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.parks-and-recreation-section {
  padding: 0 20px;
}
.parks-and-recreation-section .heading {
  color: #6d9384;
  font-size: calc(8vw + 1rem);
  line-height: 1em;
  font-weight: 100;
}
.parks-and-recreation-section .flower {
  height: auto;
  max-width: 60vw;
  display: block;
  margin: 0 auto;
}
.parks-and-recreation-section .heading-2 {
  color: #364258;
  line-height: 1em;
  font-size: calc(8vw + 1rem);
  text-align: right;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Urbanist Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.parks-and-recreation-section .heading-2 span {
  color: #6d9384;
}
.parks-and-recreation-section .mob-hero {
  width: 100%;
  height: auto;
}
.parks-and-recreation-section .parks-video-1 {
  margin: 40px 0;
}
.parks-and-recreation-section .parks-video-1 video {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.parks-and-recreation-section .parks-image-2 {
  margin: 0px 40px;
  width: calc(100% - 80px);
}
.parks-and-recreation-section .nature-text {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 30vw;
  margin: 20px auto 0 auto;
  text-align: center;
  color: #e6e6e6;
  line-height: 1em;
}
.parks-and-recreation-section .parks-image-3 {
  margin-top: -28px;
  width: 100%;
}

.parks-and-recreation-section-1 {
  position: relative;
  flex: 0 0 100vw;
  min-width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.parks-and-recreation-section-1 .heading {
  color: #6d9384;
  line-height: 1em;
  font-weight: 100;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: calc(110px * var(--scale-factor));
  text-align: center;
  margin: 0;
  height: 100vh;
  padding-bottom: var(--nav-height);
}
.parks-and-recreation-section-1 .flower {
  position: absolute;
  top: var(--nav-height);
  left: calc(200px * var(--scale-factor));
  width: calc(300px * var(--scale-factor));
}
.parks-and-recreation-section-1 .heading-2 {
  color: #364258;
  line-height: 1em;
  font-size: calc(100px * var(--scale-factor));
  text-align: right;
  margin-top: var(--nav-height);
  margin-bottom: 0;
  position: absolute;
  left: calc(200px * var(--scale-factor));
  bottom: calc(300px * var(--scale-factor));
  font-family: "Urbanist Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.parks-and-recreation-section-1 .heading-2 span {
  color: #6d9384;
}
.parks-and-recreation-section-1 .hero-img {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: var(--nav-height);
  left: calc(600px * var(--scale-factor));
  -o-object-fit: contain;
     object-fit: contain;
}

.parks-and-recreation-section-2 {
  position: relative;
  flex: 0 0 100vw;
  min-width: 100vw;
  height: 100vh;
  display: flex;
}
.parks-and-recreation-section-2 .parks-video-1 {
  position: absolute;
  left: calc(250px * var(--scale-factor));
  top: calc((var(--nav-height) + 50px) * var(--scale-factor));
}
.parks-and-recreation-section-2 .parks-video-1 video {
  border: 10px solid #fff;
  max-width: calc(700px * var(--scale-factor));
  max-height: calc(437px * var(--scale-factor));
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.parks-and-recreation-section-2 .parks-image-2 {
  position: absolute;
  top: 0;
  right: calc(140px * var(--scale-factor));
  height: calc(400px * var(--scale-factor));
  width: calc(349px * var(--scale-factor));
}
.parks-and-recreation-section-2 .parks-image-3 {
  position: absolute;
  bottom: 0;
  right: calc(100px * var(--scale-factor));
  height: 200px;
  width: 350px;
}
.parks-and-recreation-section-2 .nature-text {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: calc(400px * var(--scale-factor));
  text-align: center;
  color: #e6e6e6;
  line-height: 1em;
  position: absolute;
  bottom: 0;
  right: calc(290px * var(--scale-factor));
}
.parks-and-recreation-section-2 .para {
  width: calc(650px * var(--scale-factor));
  font-size: calc(24px * var(--scale-factor));
  position: absolute;
  top: calc(466px * var(--scale-factor));
  right: calc(200px * var(--scale-factor));
}
.parks-and-recreation-section-2 .parks-flower-2 {
  position: absolute;
  top: var(--nav-height);
  right: calc(450px * var(--scale-factor));
  width: calc(500px * var(--scale-factor));
  height: calc(340px * var(--scale-factor));
}

.shopping-section {
  padding: 40px 20px;
}
.shopping-section h1 {
  color: #6d9384;
  font-size: calc(7vw + 0.9rem);
  line-height: 1em;
  font-weight: 100;
}
.shopping-section .shopping-image-1 {
  display: none;
}
.shopping-section .shopping-image-2 {
  width: 100%;
}
.shopping-section .register {
  max-width: 40vw;
  margin: -30vw auto 50px auto;
  display: block;
  position: relative;
}
.shopping-section .shopping-video {
  margin-top: 20px;
}
.shopping-section .shopping-video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .shopping-section {
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    padding: 0;
    display: grid;
    grid-template-columns: 14vh auto;
    flex-direction: row;
    position: relative;
  }
  .shopping-section h1 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: calc(110px * var(--scale-factor));
    text-align: center;
    margin: 0;
    padding-bottom: var(--nav-height);
  }
  .shopping-section .content {
    padding-top: var(--nav-height);
    z-index: 1;
  }
  .shopping-section .content .shopping-image-1 {
    display: block;
    max-width: calc(300px * var(--scale-factor));
    max-height: calc(450px * var(--scale-factor));
    margin-top: calc(-31px * var(--scale-factor));
    margin-left: calc(30px * var(--scale-factor));
  }
  .shopping-section .content .shopping-image-2 {
    max-width: 55vw;
    width: 100%;
    height: calc(100vh - 74px - 20px);
    position: absolute;
    top: 0;
    right: calc(40px * var(--scale-factor));
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .shopping-section .content .register {
    max-width: calc(200px * var(--scale-factor));
    position: absolute;
    bottom: 0;
    right: 4%;
    z-index: 99;
  }
  .shopping-section .content .shopping-video {
    z-index: 2;
    position: relative;
  }
  .shopping-section .content .shopping-video video {
    max-width: calc(700px * var(--scale-factor));
    max-height: calc(400px * var(--scale-factor));
    height: auto;
    margin-left: calc(200px * var(--scale-factor));
    border: 10px solid #fff;
  }
  .shopping-section .content .para {
    max-width: calc(500px * var(--scale-factor));
    font-size: calc(24px * var(--scale-factor));
    margin-left: calc(30px * var(--scale-factor));
  }
}

.healthcare-section {
  padding: 0px 20px 50px 20px;
}
.healthcare-section .flower-image {
  display: none;
}
.healthcare-section .health-mob-img {
  width: 100%;
}
.healthcare-section .heading {
  color: #6d9384;
  font-size: calc(7vw + 0.9rem);
  line-height: 1em;
  font-weight: 100;
  text-align: center;
}
.healthcare-section .heading-2 {
  color: #364258;
  line-height: 1.2em;
  font-size: calc(8vw + 1rem);
  text-align: left;
  margin-left: auto;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Urbanist Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.healthcare-section .heading-2 span {
  color: #6d9384;
}
.healthcare-section .schools {
  margin-bottom: 30px;
}
.healthcare-section .schools .sheridan-logo {
  height: auto;
  max-width: 60vw;
}
.healthcare-section .healthcare {
  padding-top: 20px;
}
.healthcare-section .healthcare .heading-2 {
  text-align: left;
}
.healthcare-section .healthcare .halton-logo {
  height: auto;
  width: 40vw;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .healthcare-section {
    height: 100vh;
    position: relative;
    padding-bottom: 0;
    min-width: 100vw;
    flex: 0 0 100vw;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
  }
  .healthcare-section .health-mob-img {
    display: none;
  }
  .healthcare-section .health-web-img {
    display: block;
    width: calc(1000px * var(--scale-factor));
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: calc(800px * var(--scale-factor));
  }
  .healthcare-section .flower-image {
    position: absolute;
    bottom: 0;
    top: var(--nav-height);
    left: calc(10vw * var(--scale-factor));
    width: calc(500px * var(--scale-factor));
    height: calc(245px * var(--scale-factor));
    display: block;
  }
  .healthcare-section .heading {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: calc(95px * var(--scale-factor));
    text-align: center;
    padding-bottom: var(--nav-height);
  }
  .healthcare-section .heading-2 {
    font-size: calc(55px * var(--scale-factor));
  }
  .healthcare-section .schools {
    margin-top: calc((300px + var(--nav-height)) * var(--scale-factor));
  }
  .healthcare-section .schools p {
    font-size: calc(25px * var(--scale-factor));
    max-width: calc(550px * var(--scale-factor));
  }
  .healthcare-section .schools .sheridan-logo {
    width: calc(300px * var(--scale-factor));
  }
  .healthcare-section .healthcare {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    max-width: calc(390px * var(--scale-factor));
    padding-top: calc(50px * var(--scale-factor));
  }
  .healthcare-section .healthcare p {
    font-size: calc(25px * var(--scale-factor));
    max-width: calc(550px * var(--scale-factor));
  }
  .healthcare-section .healthcare .halton-logo {
    height: auto;
    width: calc(200px * var(--scale-factor));
  }
}

.location-section {
  padding: 10px 20px 0 20px;
}
.location-section .oakville-logo {
  max-width: 60vw;
  margin: 0 auto;
  display: block;
}
.location-section h2 {
  color: #364258;
  text-align: center;
  font-size: calc(3vw + 1rem);
}
.location-section p {
  text-align: center;
  padding: 0 20px;
}
.location-section .loc-img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
  max-width: 600px;
}
.location-section .location-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.location-section .location-list .location-dot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  padding-top: 80px;
  position: relative;
  align-items: center;
  height: 60px;
}
.location-section .location-list .location-dot::after {
  content: "";
  height: 110px;
  width: 2px;
  background-color: #b3b3b3;
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: calc(50% - 1px);
}
.location-section .location-list .location-dot .image {
  height: 50px;
  width: auto;
  margin-left: auto;
  padding-right: 20px;
}
.location-section .location-list .location-dot span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  font-size: 1rem;
  font-family: "Oswald Bold", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #364258;
}
.location-section .location-list .location-dot span:first-child {
  text-align: right;
  justify-self: flex-end;
}
.location-section .location-list .location-dot .dot {
  height: 30px;
  width: 30px;
  min-width: 30px;
  background-color: #364258;
  border-radius: 50%;
}
.location-section .google-maps {
  width: 70vw;
  margin: 90px auto 0 auto;
  position: relative;
  display: block;
}
.location-section .google-maps img,
.location-section .google-maps svg {
  width: 100%;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .location-section {
    height: 100vh;
    max-height: 100vh;
    position: relative;
    min-width: 100vw;
    flex: 0 0 100vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .location-section .show-web .oakville-logo {
    width: calc(350px * var(--scale-factor));
    height: auto;
    position: absolute;
    top: calc((30px + var(--nav-height)) * var(--scale-factor));
    right: calc(150px * var(--scale-factor));
  }
  .location-section .show-web .loc-flower {
    width: calc(400px * var(--scale-factor));
    height: auto;
    position: absolute;
    top: var(--nav-height);
    left: calc(50px * var(--scale-factor));
  }
  .location-section .show-web .google-maps {
    position: absolute;
    right: calc(150px * var(--scale-factor));
    bottom: calc(60px * var(--scale-factor));
    width: calc(200px * var(--scale-factor));
    background-color: #364258;
    padding: 20px;
    border-radius: 50%;
    height: 180px;
    width: 180px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .location-section .show-web .google-maps:hover {
    background-color: #6d9384;
  }
  .location-section .show-web .google-maps img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .location-section .show-web .text {
    position: absolute;
    bottom: calc(70px * var(--scale-factor));
    left: calc(50px * var(--scale-factor));
    max-width: calc(600px * var(--scale-factor));
    text-align: left;
  }
  .location-section .show-web .text h2 {
    text-align: left;
    font-size: calc(40px * var(--scale-factor));
  }
  .location-section .show-web .text p {
    text-align: left;
    font-size: calc(22px * var(--scale-factor));
    padding-left: 0;
  }
  .location-section .show-web .location-list {
    flex-direction: row;
    position: relative;
  }
  .location-section .show-web .location-list .loc-img {
    width: calc(750px * var(--scale-factor));
  }
  .location-section .show-web .location-list .location-dot {
    grid-template-columns: 1fr;
    text-align: center;
    width: auto;
    min-width: calc(150px * var(--scale-factor));
    max-width: calc(150px * var(--scale-factor));
    padding-top: 0;
    height: auto;
  }
  .location-section .show-web .location-list .location-dot span {
    font-size: calc(1.2rem * var(--scale-factor));
    margin: 0 auto;
    padding: calc(10px * var(--scale-factor)) 0;
    text-align: center;
    height: calc(70px * var(--scale-factor));
  }
  .location-section .show-web .location-list .location-dot .dot {
    margin: 0 auto;
  }
  .location-section .show-web .location-list .location-dot .dot::after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: calc(2px * var(--scale-factor));
    background-color: #b3b3b3;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
  }
  .location-section .show-web .location-list .location-dot .dot.noline::after {
    display: none;
  }
  .location-section .show-web .location-list .location-dot .image {
    margin: 0 auto;
    padding: 9px 0 9px 0;
    height: calc(69px * var(--scale-factor));
  }
  .location-section .show-web .location-list .location-dot::after {
    display: none;
  }
}

input,
select {
  outline: none;
  border: none;
  background-image: none;
  background-color: #fff;
  box-shadow: none;
  border-radius: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  width: 100%;
}
.form-field label {
  color: #fff;
  margin-bottom: 5px;
}
.form-field input[type=text],
.form-field input[type=number],
.form-field input[type=email] {
  width: 100%;
  border: 0;
  outline: 1px solid transparent;
  padding: 0.5em 1em;
  min-height: 30px;
  font-size: 1rem;
  display: block;
  color: #000;
}
.form-field select {
  width: 100%;
  border: 0;
  outline: 1px solid transparent;
  padding: 2px;
  min-height: 30px;
  font-size: 1rem;
  color: #000;
}
.form-field.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  color: #fff;
}
.form-field.checkbox input {
  margin-right: 10px;
}

.register-wrapper .register-section {
  background-color: #6d9384;
  padding: 40px 20px;
}
.register-wrapper .register-section .sub {
  color: #fff;
  font-size: calc(4vw + 1rem);
}
.register-wrapper .register-section h1 {
  font-size: calc(10vw + 1rem);
  margin-top: 0;
  margin-bottom: 3px;
  line-height: 1em;
  color: #fbf1e3;
  font-weight: 100;
}
.register-wrapper .register-section p {
  color: #fff;
}
.register-wrapper .register-section form {
  margin: 40px 0;
}
.register-wrapper .register-section .logo-round {
  max-width: 50vw;
  margin: 0 auto;
  display: block;
}
.register-wrapper .register-section .submit {
  background-color: #364258;
  outline: none;
  border: none;
  padding: 1em 3em;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.register-wrapper .register-section .submit:hover {
  color: #6d9384;
}
.register-wrapper .register-section .share {
  background-color: rgba(251, 241, 227, 0.5);
  outline: none;
  border: none;
  padding: 1em 3em;
  color: #fff;
}
.register-wrapper .register-section .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin: 50px 0;
}
.register-wrapper .register-section .btns a {
  text-decoration: none;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .register-wrapper {
    height: 100vh;
    max-height: 100vh;
    position: relative;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .register-wrapper .register-section {
    padding: var(--nav-height) 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .register-wrapper .register-section .reg-inner-wrapper {
    position: relative;
    padding: 30px;
  }
  .register-wrapper .register-section .sub {
    font-size: 50px;
  }
  .register-wrapper .register-section h1 {
    font-size: 100px;
  }
  .register-wrapper .register-section p {
    margin-top: calc(20px * var(--scale-factor));
    font-size: calc(20px * var(--scale-factor));
  }
  .register-wrapper .register-section form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 20px;
    max-width: 1200px;
    margin-bottom: 0;
  }
  .register-wrapper .register-section form .h-r {
    grid-row: 3;
    grid-column: 1/span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .register-wrapper .register-section form .form-field.checkbox {
    grid-row: 4;
    grid-column: 2/span 2;
    text-align: right;
  }
  .register-wrapper .register-section form .btns {
    grid-row: 5;
    grid-column: 2/span 2;
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
  .register-wrapper .register-section .logo-round {
    position: absolute;
    top: 0px;
    right: 0px;
    width: calc(200px * var(--scale-factor));
  }
}

.footer {
  background-color: #364258;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .logo {
  margin: 20px 0;
  order: 1;
}
.footer p {
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  order: 3;
}
.footer p a {
  color: #6d9384;
  text-decoration: none;
}
.footer .social {
  order: 2;
  display: flex;
  gap: 20px;
}
.footer .social a img {
  height: 30px;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .footer {
    padding: calc(var(--nav-height) + 40px) 40px 40px 40px;
    align-items: flex-start;
  }
  .footer .verticalLogo {
    margin-bottom: 40px;
    max-width: 300px;
  }
  .footer p {
    max-width: 300px;
    text-align: left;
    line-height: 1.7em;
  }
  .footer .logo {
    order: 4;
  }
  .footer .social {
    order: 5;
    display: flex;
    gap: 20px;
  }
  .footer .social a img {
    height: 30px;
  }
}

.thankyou-page {
  min-height: 100vh;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.thankyou-page .text {
  background-color: #789185;
  text-align: center;
  color: #fff;
  padding: 20px;
  margin-top: -2px;
  padding-bottom: 60px;
}
.thankyou-page .text h1 {
  font-size: 40px;
  margin-top: 0;
}
.thankyou-page .text h3 {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 30px;
}
.thankyou-page .text a {
  background-color: #364258;
  padding: 0.5em 1em;
  border-radius: 5em;
  color: #fff;
  text-decoration: none;
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  font-size: 20px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .thankyou-page {
    grid-template-columns: 1fr auto 400px;
  }
  .thankyou-page .image {
    max-height: 100vh;
    display: grid;
    background-color: #f9f9f1;
  }
  .thankyou-page .image .web-img {
    max-height: 100vh;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .thankyou-page .text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .thankyou-page .text h1 {
    font-size: calc(70px * var(--scale-factor));
    text-align: left;
    font-weight: 100;
    margin-bottom: 0;
  }
  .thankyou-page .text h3 {
    margin-top: 0;
    font-size: calc(50px * var(--scale-factor));
    font-weight: 100;
    max-width: calc(400px * var(--scale-factor));
    text-align: left;
  }
}

.builder-section {
  width: 100vw;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}
.builder-section .images {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.builder-section .images img {
  width: 100%;
  height: auto;
  max-width: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
.builder-section .text {
  text-align: center;
}
.builder-section .text img {
  width: 100%;
  height: auto;
  max-width: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
.builder-section .text h2 {
  font-family: "Branch", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #6d9384;
  font-size: calc(5vw + 1rem);
  line-height: 1.2;
}
.builder-section .text .build-schedule {
  border: 1px solid #6d9384;
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 20px;
}
.builder-section .text .build-schedule .header {
  background-color: #6d9384;
  color: #fff;
  padding: 10px;
  font-size: calc(3vw + 1rem);
  text-align: center;
}
.builder-section .text .build-schedule p {
  margin: 0;
  padding: 10px;
  font-size: calc(1vw + 1rem);
  text-align: center;
}
.builder-section .text .build-schedule p span {
  color: #6d9384;
  font-weight: bold;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .builder-section {
    height: 100vh;
    max-height: calc(100vh - 74px);
    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: auto;
    justify-content: space-between;
    gap: calc(40px * var(--scale-factor));
    margin-top: 74px;
    box-sizing: content-box;
    padding: 0;
  }
  .builder-section .text {
    text-align: left;
    max-width: calc(900px * var(--scale-factor));
    padding-right: calc(60px * var(--scale-factor));
  }
  .builder-section .text h2 {
    font-size: calc(50px * var(--scale-factor));
  }
  .builder-section .text p {
    font-size: calc(20px * var(--scale-factor));
  }
  .builder-section .text img {
    max-width: calc(400px * var(--scale-factor));
  }
  .builder-section .text .build-schedule {
    max-width: calc(700px * var(--scale-factor));
  }
  .builder-section .text .build-schedule .header {
    font-size: calc(30px * var(--scale-factor));
    text-align: center;
  }
  .builder-section .text .build-schedule p {
    font-size: calc(20px * var(--scale-factor));
    text-align: left;
  }
  .builder-section .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.6fr 0.4fr;
    gap: calc(20px * var(--scale-factor));
    padding: calc(20px * var(--scale-factor));
    max-height: calc(100vh - 74px - 40px * var(--scale-factor));
    overflow: hidden;
  }
  .builder-section .images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: unset;
  }
  .builder-section .images img:first-of-type {
    grid-column: 1/span 2;
  }
}

.view-fplans {
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #354258;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  min-width: 200px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 26px;
  margin-right: 30px;
  font-family: "Branch", sans-serif;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .view-fplans {
    width: calc(200px * var(--scale-factor));
    height: calc(200px * var(--scale-factor));
    min-width: calc(200px * var(--scale-factor));
    min-height: calc(200px * var(--scale-factor));
    padding: calc(20px * var(--scale-factor));
    font-size: calc(26px * var(--scale-factor));
    margin-right: calc(30px * var(--scale-factor));
    margin-top: calc(20px * var(--scale-factor));
  }
}

.contact-wrapper {
  background-color: #6d9384;
}
.contact-wrapper .contact-section .contact-inner-wrapper .hero-image {
  background-color: #f9faf1;
  position: relative;
}
.contact-wrapper .contact-section .contact-inner-wrapper .hero-image .logo-round {
  max-width: 30vw;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-wrapper .contact-section .contact-inner-wrapper .hero-image .m-video {
  width: 100%;
  height: auto;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details {
  padding: 20px;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details h4 {
  font-size: 30px;
  color: #ffffff;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail p {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail a {
  color: #ffffff;
  text-decoration: none;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail a:hover {
  text-decoration: underline;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office h4 {
  margin-bottom: 10px;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office p {
  color: #ffffff;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office a {
  color: #ffffff;
  text-decoration: none;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office a:hover {
  text-decoration: underline;
}
.contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office .keymap {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-top: 50px;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .contact-wrapper .contact-section {
    height: 100vh;
    max-height: 100vh;
    padding-top: 74px;
    position: relative;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
  }
  .contact-wrapper .contact-section .contact-inner-wrapper {
    display: flex;
    justify-content: space-between;
    min-height: calc(100vh - 74px);
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .hero-image {
    position: relative;
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .hero-image .logo-round {
    max-width: 20vw;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .hero-image .m-video {
    width: 100%;
    height: calc(100vh - 74px);
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details {
    padding: 20px;
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details h4 {
    font-size: calc(30px * var(--scale-factor));
    color: #ffffff;
    margin: calc(20px * var(--scale-factor)) 0;
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail {
    margin-bottom: calc(20px * var(--scale-factor));
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail img {
    height: calc(50px * var(--scale-factor));
    width: auto;
    margin-right: calc(20px * var(--scale-factor));
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details .contact-detail p {
    font-size: calc(20px * var(--scale-factor));
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office p {
    font-size: calc(20px * var(--scale-factor));
  }
  .contact-wrapper .contact-section .contact-inner-wrapper .contact-details .sales-office .keymap {
    max-width: calc(400px * var(--scale-factor));
    margin-top: calc(50px * var(--scale-factor));
  }
}

.virtualtours-section .virtual-tour-wrapper .left-section {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.virtualtours-section .virtual-tour-wrapper .left-section h2 {
  font-size: 2rem;
  color: #364258;
  text-align: center;
}
.virtualtours-section .virtual-tour-wrapper .virtual-tour-grid {
  padding: 10px 10px 30px 10px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
.virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .tour-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title .name {
  font-size: 21px;
  color: #364258;
  margin: 0;
}
.virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title .view-video {
  background-color: #364258;
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title .view-video:hover {
  background-color: #6d9384;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .virtualtours-section {
    height: 100vh;
    max-height: 100vh;
    padding-top: 74px;
    position: relative;
    min-width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
  }
  .virtualtours-section .virtual-tour-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 120px 60px 30px;
    height: calc(100vh - 74px);
  }
  .virtualtours-section .virtual-tour-wrapper .left-section {
    min-width: 30vw;
  }
  .virtualtours-section .virtual-tour-wrapper .left-section h2 {
    font-size: calc(60px * var(--scale-factor));
  }
  .virtualtours-section .virtual-tour-wrapper .virtual-tour-grid {
    max-height: calc(100vh - 74px - 60px);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(40px * var(--scale-factor));
  }
  .virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title {
    margin-top: 10px;
  }
  .virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title .name {
    font-size: calc(20px * var(--scale-factor));
  }
  .virtualtours-section .virtual-tour-wrapper .virtual-tour-grid .virtual-tour-card .title .view-video {
    font-size: calc(16px * var(--scale-factor));
  }
}

.vr-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.vr-modal .modalContent {
  position: relative;
  width: 80vw;
  max-width: 1000px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
}
.vr-modal .modalContent .video-title {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}
.vr-modal .modalContent .video-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.vr-modal .modalContent .close-modal {
  font-size: 10px;
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 10px;
}
.vr-modal .modalContent .modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}
@media screen and (min-width: 1024px) and (min-height: 500px) {
  .vr-modal .modalContent .video-title {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
  }
  .vr-modal .modalContent .close-modal {
    font-size: 1rem;
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 50px;
  }
}/*# sourceMappingURL=styles.css.map */