html:not([data-scroll='0']) header{

		position: fixed;
		top: 0;
		z-index: 999;
		background-color: #fff;
		box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
	
}

.section-adress{
	position: relative;
	width: 80%;
	max-height: 100%;
  
	padding: 2rem;
	margin: auto;
	margin-top: 5vw;

	border: 1em solid #fff;
  	border-bottom: 4em solid #fff;
  	border-radius: .25em;
  	box-shadow: 0.5em 1em 2em .25em rgba(0,0,0,.2);
  	opacity: 0;
  	transform: translateY(10em);
  	transition: transform 2s .25s cubic-bezier(0,1,.3,1),
              opacity .3s .25s ease-out;
  	will-change: transform, opacity;
}

.section-adress.is-visible{
	opacity: 1;
	transform: rotateZ(0deg)
}