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

html {
	font-family: poppins, sans-serif;
	font-weight: 600;
	font-style: normal;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	background-color: #1A1A1A;
	padding: 0;
}

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

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.top-nav {
  	overflow: hidden;
  	background: rgba(51, 51, 51, 0.1);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
  	position: fixed;
  	top: 0;
	left: 0;
  	width: 100%;
	height: 3em;
	z-index: 3;
}

.top-nav img {
	position: absolute;
	height: 2em;
	top: .5em;
	left: 2em;
}

.top-nav {
  	display: block;
  	text-align: right;
  	text-decoration: none;
	
}

a:not(:first-child) {
	position: relative;
	top: 13px;
	right: 2em;
	margin-left: 3em;
}

.top-nav a {
	color: #F1F1F1;
	text-decoration: none;
}

.top-nav a:hover {
  	opacity: 50%;
}

.top-nav img {
	position: absolute;
	height: 2em;
	top: .5em;
	left: 2em;
}

.top-nav {
  	display: block;
  	text-align: right;
  	text-decoration: none;
}

.projects {
	position: relative;
	text-align: center;
	z-index: 1;
	overflow: hidden;
}

.gallery {
	margin-top: 50px;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.gallery img {
    width: 100%;
	height: 400px;
    vertical-align: middle;	
	object-fit: cover;
	overflow: hidden;
	transition: 1s;
}

.gallery img:hover {
	transform: scale(1.1);
	transition: .25s;
}

@media screen and (max-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

.project-info {
	position: absolute;
	color: #F1F1F1;
	background-color: transparent;
	border: solid 1px #F1F1F1;
	border-radius: 0px;
	padding: .25em .5 0.05em;
	top: 1em;
	left: 1em;
	font-weight: 600;
	text-align: center;
	line-height: 1em;
}

.project-info-dark {
	position: absolute;
	color: #1A1A1A;
	background-color: transparent;
	border: solid 1px #1A1A1A;
	border-radius: 0px;
	padding: .25em .5em 0.05em;
	top: 1em;
	left: 1em;
	font-weight: 600;
	text-align: center;
	line-height: 1em;
}

.project img:nth-child(1) {
	width: 100%;
	height: 100%;
	margin-top: 75px;
	object-fit: cover;
}

.project img:nth-child(2) {
	width: 100%;
	height: 100%;
	margin-top: 175px;
	object-fit: cover;
}

.project img:nth-child(3,4,5,6) {
	width: 100%;
	height: 100%;
	margin-top: 175px;
	object-fit: cover;
}

	.brief-side-by-side p:nth-child(1) {
    transition-delay: 0s;
	}
	.brief-side-by-side p:nth-child(2) {
    transition-delay: 0.5s;
	}
	.brief-side-by-side p:nth-child(3) {
    transition-delay: 1s;
  	}

.project-img img {
	position: relative;
	width: 100vw;
	height: 100vh;
	margin-top: 3em;
	object-fit: cover;
	pointer-events: none
}

.project-imgs img {
	position: relative;
	width: 100vw;
	height: auto;
	margin-top: 10px;
	object-fit: cover;
	pointer-events: none
}
	
.project-square-imgs {
	margin-top: 10px;
	display: inline-flex;
	flex-direction: row;
	column-gap: 5px;
}
	
.sqaure-img img {
	position: relative;
	width: 100%;
	pointer-events: none
}

.brief-1 {
	position: relative;
	display: inline-block;
	color: #A1A1A1;
	margin: 1em 2em;
	width: 20em;
	float: left;
	font-weight: 500;
	text-align: left;
	font-size: 12pt;
	line-height: 20pt;
}

.brief-2 {
	position: relative;
	display: inline-block;
	color: #A1A1A1;
	margin: 1em 2em;
	width: 20em;
	float: left;
	font-weight: 500;
	text-align: left;
	font-size: 12pt;
	line-height: 20pt;
}
	
.brief-3 {
	position: relative;
	display: inline-block;
	color: #A1A1A1;
	margin: 1em 2em;
	width: 20em;
	float: left;
	font-weight: 500;
	text-align: left;
	font-size: 12pt;
	line-height: 20pt;
}

.plus {
	position: absolute;
	margin-bottom: 10px;
}
	
.plus img {
	position: relative;
	display: block;
	margin-left: auto;
 	margin-right: auto;
	pointer-events: none;
	height: auto;
	width: 5vh;
	pointer-events: none
}

.about {
	position: absolute;
	text-align: center;
	color: #F2F2F2;
	font-weight: 300;
	width: 100%;
	top: 25%;
	justify-content: space-around;
}

.reveal {
  	position: relative;
  	transform: translateY(50px);
  	opacity: 0;
  	transition: .3s ease;
	transition-delay: 0.1s;
}

.reveal.active{
  	transform: translateY(0);
  	opacity: 1;
}

.footer {
	position: relative;
	text-align: center;
	padding: 40px 0 20px 0;
	height: 100px;
	width: 100%;
	bottom: 0;
	color: #F2F2F2;
	font-weight: 200;
	font-size: 10pt;
	z-index: 1;
}

.footer p {
	position: relative;
	bottom: .5em;
	color: #F1F1F1;
}
	

.thank-you {
	position: fixed;
	bottom: 35px;
	right: 25px;
	height: 75px;
	animation-name: spin;
    animation-duration: 25000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	pointer-events: none
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(-360deg);
    }
}

.end img {
	position: relative;
	display: block;
	height: 65px;
	margin: 25px 0;
	margin-left: auto;
 	margin-right: auto;
	pointer-events: none
}

.edge {
	position: absolute;
	display: block;
	width: 100vw;
	object-fit: cover;
	margin-left: auto;
 	margin-right: auto;
	pointer-events: none
}
