.interior-hero-container {
  align-items: flex-end;
  display: flex;
  flex-flow: column nowrap;
  height: auto;
  justify-content: flex-end;
  margin: 0;
  min-height: 100vh;
  position: relative;
  padding: 200px 32px 240px;
  width: 100%;
}
.contained-image {
  background-position: bottom center, top center;
  background-repeat: no-repeat;
  background-size: contain, cover;
}
.cover-image {
  background-position: bottom center, top center, top center;
  background-repeat: no-repeat;
  background-size: contain, cover, cover;
}
.gradient-bg {
  background-position: bottom center, top center;
  background-repeat: no-repeat;
  background-size: contain, cover;
}
.video {
  background-color: #231f20cf;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
#background-video {
   width: 100vw;
   height: 100vh;
   object-fit: cover;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: -2;
}
.contained-image-wrapper {
  background-position: right 32px center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  margin: 0 auto;
  max-width: 1280px;
  min-height: 100vh;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.interior-hero-wrapper {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
.interior-hero-wrapper-with-cards {
  align-items: center;
  display: grid;
  grid-gap: 96px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
.interior-hero-text-container {
  margin: 0;
  max-width: 733px;
  padding: 0;
  width: 100%;
}
.interior-hero-text-container .button {
  margin-right: 16px;
  margin-top: 32px;
}
.interior-hero-text-container .button.secondary {
  background-color: #fff;
  border-color: #6d558e;
  color: #6d558e;
}
.interior-hero-text-container .button.secondary:hover {
  background-color: #6d558e;
  border: 3px solid #d9b8ff;
  border-radius: 100px;
  color: #fff;
}
.video .interior-hero-text-container h1,
.video .interior-hero-text-container h2,
.video .interior-hero-text-container p,
.dark .interior-hero-text-container h1,
.dark .interior-hero-text-container h2,
.dark .interior-hero-text-container p {
  color: #fff !important;
}

@supports (-webkit-text-stroke: 2px #231f20) {
  .interior-hero-text-container h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 2px #231f20;
  }
  .interior-hero-text-container h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 2px #231f20;
  }
}
@supports (-webkit-text-stroke: 2px #fff) {
  .dark .interior-hero-text-container h1 em,
  .video .interior-hero-text-container h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 2px #fff;
  }
  .dark .interior-hero-text-container h2 em,
  .video .interior-hero-text-container h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 2px #fff;
  }
}
.stat-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  margin: 0;
  position: relative;
}
.stat-card {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 4px 30px 0px #00000026;
  display: flex;
  flex-flow: column nowrap;
  grid-gap: 16px;
  padding: 24px;
}
.stat-card .icon-container {
  align-items: center;
  background-color: #f5caa3;
  border: 8px solid #fcf2e8;
  border-radius: 50%;
  display: flex;
  height: 96px;
  justify-content: center;
  max-width: 96px;
  width: 100%;
}
.stat-card img.icon {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  height: auto;
  max-width: 54px !important;
  width: 100%;
}
.stat-card-text-container {
  margin: 0;
}
.stat-card-text-container h2 {
  display: flex;
  flex-flow: column nowrap;
  grid-gap: 8px;
}
/*.stat-number {
  color: #231F20;
  font-size: 32px;
  line-height: 32px;
  text-transform: none;
}*/
.stat-metric {
  color: #231F20B2;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  text-transform: none;
}
.bounce {
  animation-name: bounce;
  animation-timing-function: linear;
}
.flip {
  animation-name: flip;
  animation-timing-function: linear;
}
.slide {
  animation-name: slide;
  animation-timing-function: linear;
}
.zoom-in-out {
  animation-name: zoom-in-out;
  animation-timing-function: linear;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-3px); }
  75%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes slide {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-3px); }
  75%  { transform: translateX(3px); }
  100% { transform: translateX(0); }
}
@keyframes zoom-in-out {
  0% {
    scale: 100%
  }
  33% {
    scale: 104%;
  }
  66% {
    scale: 96%;
  }
  100% {
    scale: 100%;
  }
}
.image-card-container {
  align-items: center;
  display: grid;
  grid-gap: 32px;
  justify-content: center;
  position: relative;
  z-index: -2;
}
.two-column {
  grid-template-columns: 1fr 1fr;
}
.three-column {
  grid-template-columns: 1fr 1fr 1fr;
}
.image-column {
  display: flex;
  flex-flow: column nowrap;
  grid-gap: 32px;
}
.image-column img {
  border-radius: 64px;
  min-height: 240px;
  object-fit: cover;
}
.form-container {
  background-color: #fff !important;
  border-radius: 24px;
  box-shadow: 0px 4px 30px 0px #00000026;
  padding: 32px !important;
}
.form-container .form-title {
  display: none;
}
.form-container form {
  background-color: transparent !important;
}
.featured-blog-card-container .card {
  width: 100% !important;
}
.featured-blog-card-container .card .meta-description {
  display: block !important;
}
.blog-card h2 {
  text-transform: none !important;
}
@media (max-width: 1200px) {
  .stat-card .icon-container {
    height: 72px;
    max-width: 72px;
  }
  .stat-card img.icon {
    max-width: 36px !important;
  }
}
@media (max-width: 1023px) {
  .interior-hero-wrapper-with-cards {
    grid-gap: 72px;
    grid-template-columns: 1fr;
  }
  .interior-hero-container {
    padding: 200px 32px 240px !important;
  }
  .image-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .image-column img:nth-child(2) ~ img {
    display: none;
  }
}
@media (max-width: 768px) {
  .image-column:last-of-type {
    display: none;
  }
}
@media (max-width: 736px) { 
  .interior-hero-container {
    padding: 180px 32px 120px !important;
  }
}
@media (max-width: 540px) {
  .stat-card-container {
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }
  .stat-card {
    display: flex;
    flex-flow: row nowrap;
  }
}
@media (max-width: 380px) {
  @supports (-webkit-text-stroke: 2px #231f20) {
    .interior-hero-text-container h1 em {
      color: transparent;
      font-style: normal;
      -webkit-text-stroke: 1.5px #231f20;
    }
    .interior-hero-text-container h2 em {
      color: transparent;
      font-style: normal;
      -webkit-text-stroke: 1.5px #231f20;
    }
  }
  @supports (-webkit-text-stroke: 2px #fff) {
    .dark .interior-hero-text-container h1 em,
    .video .interior-hero-text-container h1 em {
      color: transparent;
      font-style: normal;
      -webkit-text-stroke: 1.5px #fff;
    }
    .dark .interior-hero-text-container h2 em,
    .video .interior-hero-text-container h2 em {
      color: transparent;
      font-style: normal;
      -webkit-text-stroke: 1.5px #fff;
    }
  }
}
  