::selection{
	background-color: #222;
	background-color: rgba(34,34,34,0.7);
	color: #fff;
}
body{
	margin: 0;
	font-family: 'Poiret One', sans-serif;
	color: #fff;
	height: 100vh;
	background: #222;
}
@font-face {
  font-family: 'Major Mono Numbers';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/majormonodisplay/v12/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRh7DXeR.woff2) format('woff2');
  unicode-range: U+30-39;
}
.raleway{
	font-family: 'Raleway', sans-serif;
}
.poiret{
	font-family: 'Poiret One', sans-serif;
}
.number-font{
	font-family: 'Major Mono Numbers', 'Poiret One', monospace;
	letter-spacing: -3px;
}
#preloader{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:99999;
	background:#222;
	display: flex;
    align-items: center;
    justify-content: center;
}
#deer{
	width: 100%;
	height: 100vh;
	background-image: url('/assets/bg/deer.jpg');
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg-deer{
	background-image: url('/assets/bg/deer.jpg');
	background-position: center;
}
#overlay{
	background: rgba(0,0,0,0.2);
	width: 100%;
	height: 100vh;
	padding:0 3.5rem;
}
h1, h2, h3, h4, h5, h6{
	color: #fff;
}
h1{
	font-size: 128px;
	font-weight: 800;
	text-transform: lowercase;
}
@supports (-webkit-touch-callout: none) {
	h1{
		font-weight: 400;
	}
}
#logoType{
	font-size: 128px;
	margin: 110px 0;
}
#clock{
	font-family: 'Major Mono Numbers','Poiret One', monospace;
	font-weight: 400;
}
#clockHolder #clock{
	font-size: 64px;
	position: absolute;
	letter-spacing: -8px;
}
#nav-toggle{
	position: sticky;
	margin: 55px 0;
	cursor: pointer;
	background: none;
	border: none;
	min-height: 47px;
	z-index: 100;
}
.menu-bar{
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 5px 0;
	border-radius: 10px;
	transition: all 0.4s;
}
.open .menu-bar{
  	opacity: 0;
  	margin: 0;
}
.open .menu-bar:first-child{
	opacity: 1;
  	-webkit-transform: rotate(-45deg) translate(-4px, 3px);
  	transform: rotate(-45deg) translate(-4px, 3px);
}
.open .menu-bar:last-child{
	opacity: 1;
  	-webkit-transform: rotate(45deg) translate(-4px, -3px);
  	transform: rotate(45deg) translate(-4px, -3px);
}						
.offcanvas-nav{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 30%;
    padding:0 5px;
    overflow-y: auto;
    visibility: hidden;
    background-color: rgba(0,0,0,0.3);
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
}
.offcanvas-nav.open{
    visibility: visible;
    transform: translateX(100%);
    backdrop-filter: blur(10px);
}
nav{
	display: flex;
	align-items: center;
}
nav ul{
	list-style: none;
	font-size: 4em;
	width: 100%;
	text-align: center;
	padding: 0;
}
nav ul li{
	margin: 3px;
}
nav ul a, nav a{
	text-decoration: none;
	color: #fff;
	transition: ease .5s;
}
nav ul a:hover, nav a:hover{
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}
.top-nav{
	background: rgba(0,0,0,0.5);
	padding:0 3.5rem;
	align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.top-nav, .top-nav ul{
	font-size: 2rem;
}
.top-nav ul{
	width: auto;
	display: flex;
	margin-bottom: 0;
}
.top-nav .nav-item{
	margin:3px 15px;
}
.top-nav + #overlay{
	height:calc(100vh - 54px);
}
.clock-menu{
	bottom: 0;
    width: 30%;
    transition: transform ease .3s;
    right: 100%;
    transform: translateX(calc(100% + 10px));
    text-align: center;
    margin: 5px;
    border-top: 2px solid #fff;
}
#logoType.title-menu{
	top: 0;
	width: 30%;
    text-align: center;
    margin: 5px;
    transition: transform ease .3s;
    right: 100%;
    transform: translateX(calc(100% + 10px));
    position: absolute;
    border-bottom: 2px solid #fff;
}
#projects .card {
	flex: 1 0 auto;
	max-width: calc(25% - 30px);
	margin-bottom: 30px;
}
.btn-blur {
	backdrop-filter: blur(10px);
    background: rgb(0 0 0 / 20%);
}
@media screen and (max-width: 1120px){
	#projects .card {
		max-width: calc(50% - 30px);
	}
}
@media screen and (max-width: 576px){
	#projects .card {
		max-width: 100%;
	}
}
.card-footer{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.slideDown{
	animation-name: slideDown;
	animation-duration: 1s;	
	animation-timing-function: ease;
	visibility: visible;	
}
.slideLeft{
	animation-name: slideLeft;
	animation-duration: 1s;	
	animation-timing-function: ease;
	visibility: visible;	
}
footer{
	background: rgba(0,0,0,0.35);
}
footer p{
	font-family: 'Raleway', sans-serif;
}
footer a{
	text-decoration: none;
	color: #fff;
	transition: ease .5s;
}
footer a:hover{
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}
@media screen and (max-width: 850px){
	.clock-menu{
		display: none;
	}
	.offcanvas-nav{
    	right: 100%;
    	width: 100%;
    	padding:0 5px;
    	overflow-y: auto;
	}
	#logoType.title-menu{
		width: calc(100% - 16px);
	}
	.top-nav, .top-nav ul {
    	font-size: 1.6rem;
	}
	.top-nav {
		padding: 0 0 0 15px;
	}
	h1 {
		font-size: 64px;
	}
	.top-nav + #overlay {
    	padding: 0 15px;
	}
}
@media screen and (max-width: 1470px){
	#deer #overlay{
		padding: 0 .5rem;
	}
	#nav-toggle{
		margin: 40px 0;
	}
	#clock.clock-menu{
		padding-top: 5px;
		font-size: 32px;
	}
	.title-menu{
		font-size: 90px !important;
	}
}
@keyframes slideDown {
	0% {
		transform: translateY(-300%);
	}
	50%{
		transform: translateY(8%);
	}
	65%{
		transform: translateY(-4%);
	}
	80%{
		transform: translateY(4%);
	}
	95%{
		transform: translateY(-2%);
	}			
	100% {
		transform: translateY(0%);
	}		
}
@keyframes slideLeft {
	0% {
		transform: translateX(-300%);
	}
	50%{
		transform: translateX(8%);
	}
	65%{
		transform: translateX(-2%);
	}
	80%{
		transform: translateX(2%);
	}
	95%{
		transform: translateX(-1%);
	}			
	100% {
		transform: translateX(0%);
	}		
}