@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: 380vw;
	overflow-y: hidden;
	overflow-x: scroll;
}

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

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

.three {
	background: #fff;
	width: 65vw;
}

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

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

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

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

h3{
	font-size: 0.8rem;
	font-weight: 200;
	color: #fff;
}

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

a{
	text-decoration: none;
}

p{
	font-size: 1rem;
}

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

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

.phono__text{
	color: #bababa;
	font-weight: 400;
	font-size: 1rem;
}

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

.container{
    position: absolute;
    width: 100%;
    height: 100%;
	margin-left: 10vw;
}

.container .box{
	position: relative;
    width: 50vw;
    height: 90vh;
    background: #000;
    float: left;
	margin-top: 3rem;
	margin-bottom: 3rem;
    margin-left: 5vw;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0px;
}

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

.container .box:hover .image{
	top: 0%;
	left: 0%;
	width: 100%;
	height: 110%;
	opacity: 0.3;
}

.project__name{
	position: absolute;
	line-height: 0.8;
	z-index: 1;
	margin: 2rem 3rem;
	opacity: 0;
	transition: 1s;
}

.container .box:hover .project__name{
	opacity: 1;
}

.project__tools{
	position: absolute;
	z-index: 1;
	left: 3rem;
  	bottom: 2rem;
	opacity: 0;
	transition: 1s;
}

.container .box:hover .project__tools{
	opacity: 1;
}

.speciality{
	color: #f6f6f6;
	font-size: 6vw;
}

.about__container{
	position: absolute;
	left: 3rem;
	bottom: 15rem;
	padding-right: 40vw;
}

.about{
	font-size: 1rem;
}

.about__search{
	font-size: 1rem;
	font-weight: 200;
}

.card{
	position: absolute;
	right: 3rem;
	bottom: 15rem;
	height: 50vh;
	width: 20vw;
	background: #000;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 70px 100px -100px #000;
}

.me{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transition: 1s;
}

.card:hover .me{
	opacity: 0.3;
}

.marie{
	position: absolute;
	font-size: 0.5rem;
	left: 0.5rem;
	bottom: 0.5rem;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	z-index: 1;
}

.about__phono{
	position: absolute;
	margin: 2rem 3rem;
	color: #fff;
	font-weight: 200;
	z-index: 1;
	opacity: 0;
	transition: 1s;
}

.card:hover .about__phono{
	opacity: 1;
}


.marquee-rtl {
	position: absolute;
	width: 60vw;
  	overflow: hidden;
	left: 3rem;
  	bottom: 2rem;
}

.marquee-rtl > :first-child {
	display: inline-block;
	padding-right: 2em;
	padding-left: 100%;
	white-space: nowrap;
	animation: defilement-rtl 15s infinite linear;
}

@keyframes defilement-rtl {
  0% {
    transform: translate3d(0,0,0);
  }
  100% {
    transform: translate3d(-100%,0,0);
  }
}

.contact__container{
	position: absolute;
	left: 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: 300vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }

	.scroll {
		display: none;
	}

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

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

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

  .four {
    width: 100vw;
    height: 35vh;
  }

  .container .box{
      position: relative;
      width: 80vw;
      height: 80vh;
      background: #000;
      float: left;
      margin-top: 8vh;
      margin-left: 0px;
      margin-right: 100px;
      margin-bottom: 0px;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 0px;
  }
	
	.about__container{
		top: 3rem;
		left: 2rem;
		bottom: 0;
		right: 0;
	}
	
	.card{
		top: 3rem;
		right: 2rem;
		bottom: 0;
	}
	
	.card:hover{
		display: none;
	}

	.about__phono{
		display: none;
	}
}