.hero-section {
  position: relative;
  width: 90vw;
  height: 100vh;
  overflow: hidden;
  margin: 90px -30px;
  transition: width 1s cubic-bezier(0.77, 0, 0.175, 1); /* Luxe easing */
}
.hero-section.expanded {
  width: 100vw;
}

body.scroll-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.hero-section.bottom-in-view {
	width: 100vw !important;
	margin: 90px -30px;
}

.center-background {
	display: flex; 
	    justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: white;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: opacity 0.8s ease;
  font-family: "Boska", serif;
  font-weight: 400;
  font-size: 32px;
	opacity: 0;
	display: none;
}

.hero-section.bottom-in-view .hero-content {
	opacity: 1;
}

.hero-content.visible {
  opacity: 1;
}


body.scroll-locked {
  overflow: hidden;
}

@media only screen and (max-width: 800px) and (min-width: 550px) { 

}

@media only screen and (max-width: 549px) {
	.hero-content {
		margin: 0 30px;
		line-height: 42px;
		font-size: 26px;
	}
}


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