@charset "UTF-8";
/* CSS Document */

body {
	overflow: hidden;
	font-family: 'Source Sans Pro', sans-serif;
}
*
{
	margin: 0;
	padding: 0;
}

.slide {
	width: 100vw;
	height: 100vh;
	position: relative;
}

.outer-wrapper {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	overflow-y: hidden;
	overflow-x: scroll;
	/* scrollbar-width: none; */
	-ms-overflow-style: none;
}

.wrapper {
	display: flex;
	width: 335vw;
	overflow-y: hidden;
	overflow-x: scroll;
}

.one {
	background: #fff;
	width: 35vw;
}

.two {
	background: #1f1f1f;
	width: 65vw;
}

.three {
	background: #1f1f1f;
	width: 35vw;
}

.four {
	background: #1f1f1f;
	width: 100vw;
}

.five {
	background: #f6f6f6;
	width: 65vw;
}

.six{
	background: #f6f6f6;
	width: 35vw;
}

::-webkit-scrollbar {
	display:none;
}

h1{
	font-size: 1rem;
	font-weight: 400;
}

h2{
	font-size: 1.5rem;
	color: #000;
	font-weight: 900;
}

h3{
	font-size: 1rem;
	font-weight: 400;
}

h4{
	font-size: 1rem;
	font-weight: 400;
	color: #000;
}

h5{
	font-size: 0.8rem;
	color: #bababa;
	font-weight: 400;
	margin: 0;
}

h6{
	font-size: 0.8rem;
	color: #000;
	font-weight: 200;
	margin-top: 0;
	margin-bottom: 10px;
	margin-right: 0;
}

a{
	text-decoration: none;
}

p{
	font-size: 1rem;
	line-height: 1.2em;
}

sup{
	font-size: 0.6rem;
}

.phono__text{
	color: #bababa;
}

.logo {
	margin: 2rem 3rem;
	color: #000;
}

.name{
	position: relative;
	margin-top: 5rem;
	margin-left: 3rem;
}

.tools{
	position: absolute;
	left: 3rem;
  	bottom: 2rem;
}

.about{
	position: relative;
	margin-top: 1rem;
	margin-left: 3rem;
	margin-right: 10rem;
	color: #000;
}

.scroll{
	position: absolute;
	right: 3rem;
	bottom: 2rem;
	font-weight: 200;
}

.mission{
	position: relative;
	margin-top: 5rem;
	margin-left: 3rem;
	margin-right: 10rem;
	color: #fff;
}

.behance{
	position: absolute;
	left: 3rem;
  	bottom: 2rem;
	color: #fff;
	font-weight: 200;
	font-size: 0.8rem;
	padding-right: 25vw;
}

.behance__link{
	color: #fff;
	text-decoration: underline;
}

.container{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0%;
    left: 0%;
}

.container .image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__container{
	position: absolute;
	left: 3rem;
  	bottom: 2rem;
}

.contact__container{
	position: absolute;
	text-align: end;
	right: 3rem;
  	bottom: 2rem;
}

.contact {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 0.3rem;
	color: #000;
}

.contact:hover,
.contact:focus {
	color: #bababa;
	outline: none;
	border-color: transparent;
}


@media (orientation: portrait) and (max-width : 800px){
  .outer-wrapper {
    position: fixed;
    top:0px;
    left:0px;
    width: 100vw;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    /* scrollbar-width: none; */
    -ms-overflow-style: none;

  }

  .wrapper {
    display: inline;
    width: 100vw;
    height: 295vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .one {
    	width: 100vw;
    	height: 100vh;
  }

  .two {
    	width: 100vw;
    	height: 100vh;
  }

  .three {
   		width: 100vw;
    	height: 100vh;
  }

  .four {
    	width: 100vw;
    	height: 100vh;
  }
	
	.five{
		width: 100vw;
		height: 65vh;
	}
	
	.six{
		width: 100vw;
		height: 35vh;
	}
	
	.logo {
		padding-top: 2rem;
		margin-top: 0;
		margin-left: 3rem;
}

.scroll {
	display: none;
}

	.about{
		margin-right: 5rem;
	}
	
	.container .image{
  		position: absolute;
  		top: 0;
  		left: 0;
  		width: 100vw;
  		height: 100%;
  		object-fit: cover;
	}
	
	.container{
    	position: absolute;
    	width: auto;
    	height: 100%;
	}
	
	.mission{
		padding-top: 3rem;
		margin-top: 0;
		margin-left: 3rem;
		margin-right: 5rem;
}

}