body {
/*max-width: 100%;*/
margin: 0 auto;
padding: 0;
}

main {
	max-width: 100%;
	padding-top: 0;
	padding-bottom: 0;
}

section {
	position: relative;
}

.logo {
	display: block;
}

.arrow_wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: var(--padding);
	z-index: 99999;
	transition: opacity .5s;
	opacity: 1;
}

.arrow-container {
  width: 50px;
  height: 50px;
  animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
  cursor: pointer;
  filter: invert(0%);
  margin: 0 auto;
}

.arrow-container:hover {
	filter: invert(100%);
}

@keyframes bounce {
50% {
    transform: translateY(-15px);
  }
}

.hide_arrow {
	opacity: 0;
}

.section_nav {
	display: none !important;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  bottom: 0;
/*  padding: calc(var(--padding)*.5);*/
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: var(--padding);
}
.section_nav ul{
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 60vh;
  gap: 20px;
}
.section_nav li,
.section_nav a,
.section_nav span {
  height: 100%;
}
.section_nav a {
  display: inline-block;
  width: 5px;
  height: 100%;
  background-color: transparent;
  border: solid 1px;
  border-radius: 15px;
}

.section_nav .active-section {
  background-color: #000;
}

ul > li {
  list-style-image: none;
}

.scroll_grid {
	display: grid;
	grid-auto-rows: auto;
	width: 100%;
/*	padding: var(--padding);*/
	box-sizing: border-box;
}

.scroll_item {
	width: 100%;
	height: 100%;
	position: relative;
}

.scroll_item_back {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: bottom;
}



.scroll_item_2 {
	width: 100%;
	height: 100%;
	position: relative;
}

.scroll_item_holder_2 {
	width: 100%;
/*	aspect-ratio: 1 / 1;*/
	position: relative;
}

.scroll_item_back_2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: bottom;
}

.body_logo {
	width: 100%;
	max-width: 45vmin;
	margin: 0 auto;
}

.intro_wrapper {
	position: sticky;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
}

.intro_wrapper {
  animation: fadein 1s normal forwards ease-in-out;
  animation-delay: .5s;
}
@keyframes fadein {
  from { opacity: 0}
  to   { opacity: 1}
}


.intro_text {
	width: 100%;
	max-width: 1500px;
	height: 100vh;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: var(--padding);
}

.intro_h2 {
	font-size: 15vmin;
	font-family: var(--font-title);
	line-height: .8;
	text-align: center;
	text-transform: uppercase;
}
 
 h2 {
  font-family: var(--font-title);
  font-size: var(--large-font);
}

.home_section_text a:hover {
	color: #fff;
}

.home_section {

	max-width: var(--max_width);
	margin: 0 auto;
	min-height: calc(100vh - var(--padding));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
}

.home_section_text {
	font-size: 5vmin;
	line-height: 1.5;
}



@media screen and (max-width: 55rem) {

.logo {
  width: 70vmin;
  display: block;
}

}





