.common-button {
  white-space: normal;
}
.header-text-container {
  position: relative;
  top: 40%;
  transform: translate3d(0, -45%, 0);
}
.header-text-container h2 {
  font-size: var(--fs-17p);
  font-size: min(max(0.9rem, 3.68vw), var(--fs-17p));
  line-height: 150%;
  margin-bottom: 40px;
  text-shadow: var(--text-shadow);
}
header {
  z-index: 1;
}
#header-content-block {
  background-color: var(--dark-shade2);
  display: flex;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translate3d(-50%, 0, 0);
  width: 100%;
  z-index: 3;
}
#header-content-block li {
  display: flex;
  background-color: var(--dark-shade2);
  flex-basis: 50%;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
#header-content-block li svg {
  transition: all var(--hover-links-duration) linear;
}
#header-content-block li::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(50, 53, 56);
  background: linear-gradient(
    120deg,
    var(--dark-shade2) 0%,
    var(--button-gradient-light) 100%
  );
  opacity: 0;
  transition: opacity var(--hover-links-duration) linear;
  z-index: 0;
}
#header-content-block li:hover::before {
  opacity: 1;
}
#header-content-block li:hover svg path {
  fill: #fff;
}
#header-content-block li:hover svg circle {
  fill: #fff;
}
#header-content-block li:hover svg rect {
  fill: #fff;
}
#header-content-block li > div {
  align-items: center;
  border-left: 1px solid var(--dark-shade1);
  display: flex;
  padding: 20px 40px;
  z-index: 200;
}
#header-content-block li:first-child div {
  border: none;
}
#header-content-block .icon {
  margin-right: 25px;
}
#header-content-block .icon svg {
  display: block;
}
#header-content-block h5 {
  font-size: min(max(1.3rem, 2vw), var(--fs-28p));
  font-weight: 800;
  margin-bottom: 10px;
}
#header-content-block p {
  font-size: min(max(0.875rem, 2vw), var(--fs-18p));
  line-height: 133%;
}
#header-content-block p em {
  font-style: italic;
}
#header-content-block .content a {
  display: flex;
  font-size: 0.875rem;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  width: 309px;
}
#header-content-block .content a:hover {
  color: var(--text-faint-red);
}
#header-content-block .content a span {
  flex-basis: 287px;
}
#header-content-block .content a svg {
  flex-basis: 12px;
}
@media only screen and (max-width: 1280px) {
  header {
		background-position: center center;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-text-container {
    margin: 40px auto;
    text-align: center;
    position: static;
    transform: none;
    width: 100% !important;
  }

  #header-content-block {
    left: 0;
    position: static;
    transform: none;
    width: 100%;
    z-index: 3;
  }
  #header-content-block li {
    display: block;
    padding: 0;
  }
  #header-content-block li::before {
    display: none;
  }
  #header-content-block li > div {
    flex-direction: column;
    padding: 20px 30px;
  }
  #header-content-block .icon {
    align-items: center;
    display: flex;
    height: 70px;
    align-self: center;
    margin: 0 0 20px 0;
    width: 70px;
  }
  #header-content-block .content {
    text-align: center;
  }
}
@media only screen and (max-width: 800px) {
  #header-content-block {
    display: block;
    width: 90%;
  }
  #header-content-block li:not(:first-child) > div {
    border-top: 1px solid var(--dark-shade1);
    border-left: none;
  }
}
@media only screen and (max-width: 600px) {
  #header-content-block {
    width: 100%;
  }
}

main {
  position: relative;
  z-index: 0;
}
/* Image content section */
.image-content {
  padding-top: 240px;
}
.image-content-content-container ul {
  text-align: left;
  margin-top: 35px;
}
.image-content-content-container ul li {
  align-items: flex-start;
  display: flex;
  line-height: 150%;
  margin-bottom: 20px;
}
.image-content-content-container .checkmark {
  fill: var(--text-faint-red);
  flex-shrink: 0;
  height: 17px;
  width: 19px;
}
.image-content-content-container .checkmark svg {
  width: 100%;
}
.image-content-content-container .content {
  font-size: var(--fs-17p);
  margin-left: 20px;
}
.image-content-content-container .content	strong {
	font-weight: 800;
}
@media only screen and (max-width: 1280px) {
  .image-content {
    padding-top: 50px;
  }
  .image-content-content-container ul {
    display: inline-block;
    margin: 40px auto 0 auto;
  }
}

/* Staggered images section */
.staggered-images-section > div:first-child {
  margin-bottom: 65px;
}




/* Hero section */
.hero-section {
  margin-bottom: 0 !important;
}

/* Properties lists */
.properties-list {
  background-color: var(--dark-shade2);
  box-shadow: 0px 2px 25px var(--dark-shade1);
  padding: 50px;
  position: relative;
  top: -130px;
  z-index: 5;
}
.properties-list > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 35px;
  gap: 35px;
}
.properties-list > ul li {
  display: flex;
}
.properties-list .icon {
  flex-shrink: 0;
  margin-right: 17px;
  width: 48px;
}
.properties-list .content-container h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.properties-list .content-container div {
  font-size: var(--fs-17p);
  line-height: 145%;
}
@media only screen and (max-width: 1280px) {
  .properties-list > ul {
    grid-template-columns: 1fr 1fr;
  }
  .properties-list {
    padding: 25px;
    margin-left: 20px;
    margin-right: 20px;
    top: -75px;
    z-index: 5;
  }
}
@media only screen and (max-width: 768px) {
  .properties-list > ul {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    gap: 25px;
  }
}

/* Snap to scroll functionality */
.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none; /* IE and Edge */
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scroll {
  overflow: hidden;
}



#sentinel {
	visibility: hidden;
	height: 0px;
	width: 1px;
	position: relative;
}
body.scrolling {
	height: 100vh;
	width: 100vw;
}
body.scrolling header {
	display: none;
}
body.scrolling footer {
	display: none;
}
body.scrolling #snap-to-scroll-list-section {
	height: 100%;
	position: fixed;
	/* top: 0; */
	width: 100%;
	z-index: 10000;
}
#snap-to-scroll-list-section {
	position: relative;
}
body.scrolling #snap-to-scroll-list-section {
	position: fixed;
	top: 0;
	z-index: 10000;
}


#snap-to-scroll-list-section.scrolled-to {
  height: 100vh;
  overflow-y: auto;
  /* scroll-snap-type: y mandatory; */
}
.scrolled-section {
  height: 100vh;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
#snap-to-scroll-list-section.scrolled-to .scrolled-section {
  /* scroll-snap-align: start;
	scroll-snap-stop: always; */
}
.scrolled-section .image-background {
  justify-content: flex-start;
}
.scrolled-section .image-background img {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.scrolled-section .image-background > div {
  align-items: center;
  display: flex;
  height: 100%;
}
.scrolled-section .image-background::before {
  background: rgb(35, 37, 38);
  background: linear-gradient(
    120deg,
    rgba(35, 37, 38, 0.5) 0%,
    rgba(49, 49, 49, 0.9) 16%,
    rgba(65, 62, 62, 0.25) 85%,
    rgba(69, 65, 65, 0) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.scrolled-section .content-container {
  position: relative;
  width: 680px;
  z-index: 2;
}
.scrolled-section .image-background > div.content-right {
	justify-content: flex-end;
	text-align: right;
}
@media only screen and (max-width: 1280px) {
  .scrolled-section {
		height: auto;
  }
  .scrolled-section .image-background {
    height: auto;
    padding: 156px 20px;
  }
}
@media only screen and (max-width: 640px) {
  .scrolled-section .image-background {
    padding-top: 50px;
    width: 100%;
  }
}
