a {
  color: black;
}

a:hover {
  text-decoration: unset;
  color: var(--site-dkblue);
}

.top-bar,
.bottom-bar {
  background-color: var(--site-dkblue);
  left: 0;
  height: 0.75em;
  width: 100%;
  z-index: 3;
  margin-top: -1px;
}

.top-bar {
  top: 0px;
}

.bottom-bar {
  bottom: -10px;
}

.font-green {
  color: var(--site-green);
}

.font-blue {
  color: var(--site-blue);
}

html,
body {
  overflow-x: hidden;
  font-family: "Source Sans pro", sans-serif;
}

.text-black {
  color: black;
}

.sans-serif {
  font-family: "Source Sans Pro", sans-serif !important;
}

.serif {
  font-family: "Source Sans Pro", sans-serif !important;
}

.video-container {
  position: relative;
}

.video-container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%);
  z-index: 2;
}

.video-bg {
  position: relative;
  z-index: 1;
  display: block;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  width: 80%;
  bottom: 15%;
  right: 25px;
  z-index: 3;
  color: white;
  text-align: right;
}

.video-overlay h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 900;
}

.hero-container {
  position: relative;
  height: 900px;
  /* min-height: 400px; */
  background-size: cover;
  background-position: center center;
}

.hero-container,
.hero-container.split-slideshow {
  height: 85vh;
}

.hero-overlay {
  position: absolute;
  bottom: 15%;
  left: 5%;
  right: 5px;
  z-index: 3;
  color: white;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .hero-container,
  .hero-container.split-slideshow {
    height: 55vh;
  }
  .slideshow {
    height: 55vh !important;
  }
}

.hero-overlay-bottom {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 152, 255, 1);
  z-index: 10;
  margin-bottom: -0.5em;
}

.hero-overlay-bottom h4 {
  font-size: 2rem;
  margin-bottom: -0.5em;
}

.hero-overlay-bottom h1 {
  /* font-size: 5rem; */
  font-size: 4vw;
  line-height: 5vw;
  font-weight: 900;
  margin-bottom: 0;
  position: relative;
}

.hero-overlay-bottom h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1.2vw;
  background-color: #343a40;
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .hero-overlay-bottom h1 {
  }
}

@media (max-width: 767.98px) {
  .hero-overlay-bottom h1 {
  }
}

.outline-btn {
  text-decoration: none;
  color: white;
  background-color: rgb(193 219 233 / 56%);
  border: 1px solid white;
  border-radius: 999em;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
  font-size: 1.25rem;
}

.outline-btn.dark {
  color: black;
  border: 1px solid black;
}

.outline-btn:hover {
  color: black;
  background-color: white;
  text-decoration: none;
}

.outline-btn.dark:hover {
  color: white;
  background-color: black;
  text-decoration: none;
}

.store-content {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  font-size: 18rem;
  line-height: 15rem;
  text-align: center;
  color: #696969;
}

.store-content.text-right {
  width: 60%;
  margin-left: auto;
  margin-right: 50px;
}

.store-img {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.community-container {
  position: relative;
  background-color: rgb(244, 244, 244);
  z-index: 5;
}

.community-title {
  font-size: 1.5rem;
  font-weight: 900;
  outline: 5px solid rgb(244, 244, 244);
  border: 1px solid rgb(52, 47, 45);
  transform: translateY(-70px) translateX(50px);
  position: relative;
  z-index: 4;
  background-color: rgb(244, 244, 244);
}

.community-content {
  font-size: 3rem;
  font-weight: 900;
  line-height: 3rem;
  padding-bottom: 1em;
}

.border-white {
  border: 1px solid white;
}

.content-row {
  position: relative;
  z-index: 5;
}

.card {
  border-radius: unset;
  border: 1px solid white;
}

.card-nobg {
  position: relative;
  transition: all 0.5s ease-in-out;
}

.card-nobg::after {
  content: unset !important;
}

a:hover .card-nobg {
  background: var(--site-blue);
}

a:hover h6 {
  color: white;
}

.card-img {
  object-fit: cover; /* Do not scale the image */
  object-position: center; /* Center the image within the element */
  height: 25vw;
  width: 25vw;
  border-radius: unset;
}

.card-properties-img {
  object-fit: cover; /* Do not scale the image */
  object-position: center; /* Center the image within the element */
  height: 33.3vw;
  /* width: 33.3vw; */
  border-radius: unset;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.card-col:hover {
  cursor: pointer;
}

.card-col:hover .card::after {
  opacity: 0.8;
  background: var(--site-blue);
}

.card-col:hover .card-body {
  transform: translateY(calc(-25vh / 8));
}

.card-col:hover .card-body.card-properties {
  transform: translateY(calc(-100% / 2));
  color: black;
}

.card-body {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  color: white;
}

.card-body h5 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  /* color: white; */
}

.card-body p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
}

.card-img-left {
  object-fit: cover;
  object-position: center;
  height: 150px;
  width: 100%;
  border-radius: unset;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border: unset;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
  text-shadow: 0 0 2px black;
}

.carousel-control-next:hover i,
.carousel-control-prev:hover i {
  color: var(--site-blue);
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 2rem;
  color: white;
  transition: all 0.2s ease-in-out;
}

.properties-link {
  /*
	background-color: white;
	top: -55px;
	right: 0;
	opacity: 0.8;
	*/
  color: black;
  cursor: pointer;
  font-size: 1.25rem;
  background-color: white;
  top: 115px;
  left: -10px;
  padding-left: 25px !important;
  z-index: 2;
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
}
.properties-link:hover {
  left: -1px;
  opacity: 1;
}
.leasing-link {
  color: black;
  cursor: pointer;
  font-size: 1.25rem;
  background-color: white;
  top: -155px;
  right: -190px;
  padding-right: 0 !important;
  z-index: 2;
  opacity: 0.95;
  transition: all 0.4s ease-in-out;
}
.leasing-link:hover {
  right: -10px;
  opacity: 1;
}

footer {
  background-color: var(--site-blue);
  color: white;
  font-size: 0.9rem;
  font-weight: normal;
  /* padding-left: calc(100% / 24); */
}

footer .bg-blue {
  font-weight: 900;
}

footer h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 3.5rem;
  line-height: 2.8rem;
  font-weight: 900;
}

.footer-icons {
  font-size: 2rem;
  color: white;
}

.footer-logo {
  width: 30%;
}

.footer-breadcrumbs {
  font-size: 0.9rem;
  color: white;
  font-weight: bold;
}

.footer-breadcrumbs .text-uppercase {
  font-size: 1.2rem;
  color: white;
  font-weight: 900;
}

.grecaptcha-badge {
	display: none;
}

footer hr {
  color: white;
  background-color: white;
}

footer iframe {
	max-width: 100%;
}

.footer-icons a,
.footer-breadcrumbs a {
  color: white;
  text-decoration: none;
  margin: 0 0.5em;
  transition: all 0.5s ease-in-out;
}

.footer-breadcrumbs a {
  padding: 0 1rem;
}

.footer-icons a:hover {
  transform: scale(1.5);
}

.footer-breadcrumbs a:hover {
  transform: scale(1.2);
}

.tenant-modal {
  top: 0;
  left: -100vw;
  height: 100%;
  width: 60vw;
  background-color: black;
  color: white;
  transition: all 0.5s ease-in-out;
  z-index: 100;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: transparent;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 99;
}

.stats {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.stats h2 {
  font-size: 4rem;
}

.store-header {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--site-dkblue);
}

.img-separator {
  object-fit: cover; /* Do not scale the image */
  object-position: center; /* Center the image within the element */
  height: 60vh;
  width: 100%;
  border-radius: unset;
}

.card-img-top {
  object-fit: cover; /* Do not scale the image */
  object-position: top; /* Center the image within the element */
  height: 350px;
  width: 100%;
  border-radius: unset;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border: unset;
}

.news-card::after {
  content: unset;
}

.card-body.news h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--site-dkblue);
}

.card-body.news h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--site-blue);
}

.card-body.news p {
  font-size: 1rem;
  color: black;
  opacity: 0.6;
}

.news-img-overlay {
  position: absolute;
  bottom: 10px;
  right: 0;
  padding-right: 50px;
  background-color: rgba(0, 152, 255, 0.8);
}

.radius-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: white;
  transition: all 0.5s ease-in-out;
  animation: pulse-inner 2.5s infinite;
}

.radius-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  animation: pulse 2.5s infinite;
}

.radius-outer-sm {
  height: 80px;
  width: 80px;
  background-color: rgb(7, 133, 102);
  box-shadow: 0 0 0 0 rgba(7, 133, 102, 0.5);
  --box-shadow-color: rgba(7, 133, 102, 0.5);
}

.radius-inner-sm {
  height: 60px;
  width: 60px;
}

.radius-outer-lg {
  height: 100px;
  width: 100px;
  background-color: rgb(0, 152, 255);
  box-shadow: 0 0 0 0 rgba(0, 152, 255, 0.5);
  --box-shadow-color: rgba(0, 152, 255, 0.5);
}

.radius-inner-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 80px;
  width: 80px;
  z-index: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: white;
  animation: pulse-inner 2.5s infinite;
}

.radius-btn {
  font-size: 1.25rem;
  font-weight: 900;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.radius-btn:hover {
  opacity: 1;
}

.radius-btn-border {
  border: 1px solid black;
  border-radius: 50px;
}

.radius-btn-border:hover {
  background-color: black;
  color: white;
}

.inc-content,
.pop-content,
.emp-content {
  transition: color 0.5s ease-in-out;
}

.split-slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(145, 135, 135, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 10;
  pointer-events: none;
}

.parallax-window {
  height: 80vh;
}

.summary-content h3 {
  font-size: 2rem !important;
  font-family: var(--font-serif) !important;
}

.summary-content p {
  font-size: 1.25rem !important;
  font-family: var(--font-serif) !important;
}

.modal-body iframe {
  width: 100% !important;
  height: min(max(80vh), 500px);
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 992px) {
	.modal-fit {
		width: fit-content;
		left: 50%;
		transform: translateX(-50%);
	}

	.modal-fit img {
		max-height: 70vh;
	}
}


@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 2px var(--box-shadow-color);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-inner {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .video-overlay h1 {
    font-size: 4rem;
    line-height: 4rem;
  }

  .video-overlay h4 {
    font-size: 1rem;
  }

  .store-content {
    font-size: 10rem;
    line-height: 10rem;
  }

  .card-body h5 {
    font-size: 1.5rem;
  }

  .card-body p {
    font-size: 1rem;
  }

  .img-th {
    margin-top: -15em !important;
  }

  .footer-logo {
    width: 40%;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	footer iframe {
		margin-left: 20%;
		width: 80%;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .video-overlay {
    right: 15px;
  }
  .video-bg {
    display: block;
    height: 100vh;
    overflow-x: hidden;
    object-fit: cover;
    object-position: center;
  }

  footer h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 5rem;
    line-height: 5rem;
    font-weight: 900;
    width: 100%;
  }

  .stats h2 {
    font-size: 2rem;
  }

  .card-properties-img {
    height: 50vw;
    /* width: 50vw; */
  }

  .hero-overlay-bottom h4 {
    margin-bottom: 0;
  }

  .hero-overlay-bottom::after {
    height: unset;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .video-overlay h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .video-overlay {
    bottom: 15%;
  }

  .store-content {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .stats {
    border-top: unset;
    border-bottom: unset;
  }

  .img-gl {
    margin-top: -2em !important;
  }

  .img-bs {
    margin-top: -9em !important;
  }

  .img-th {
    margin-top: -5em !important;
  }

  .content-bs {
    height: 100% !important;
  }

  .store-content.text-right {
    margin-right: 20px;
  }

  .community-title {
    transform: translateY(-70px) translateX(0px);
    position: absolute;
  }

  .community-content {
    font-size: 2rem;
    line-height: 2rem;
  }

  .card-img {
    height: 50vw;
    width: 50vw;
  }

  .card-body {
    padding: 0 0 0 0;
  }

  .card-body h5 {
    font-size: 1.5rem;
  }

  .card-body p {
    font-size: 1rem;
  }

  .card-col:hover .card-body {
    transform: translateY(calc(-50vh / 16));
  }

  footer h1 {
    font-size: 3rem;
    line-height: 3rem;
    width: 100%;
  }

  .footer-logo {
    width: 50%;
  }
}
