#container {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
}

#header {
    position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 69px;
    z-index: 999;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #dedede;
	background-color: #ffffff;
}

	#header.transparent {
		/* background-color: transparent; */
		border: none;
		transition: border;
	}

	#logo {
		cursor: pointer;
		margin-left: 3px;
	}

	#navigation {
	display: none;
	position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255, 0.9);
    backdrop-filter: blur(2px);
    z-index: 9;
	}

    #nav-border {
	  width: 100%;
		height: 1px;
		border-bottom: 1px solid #dedede;
		position: absolute;
        top: 69px;
    }

	#nav-list {
		margin: 99px 0 0 24px;
		list-style: none;
		padding: 0;
	}

	#nav-list li {
		margin: 0 0 17px 0;
	}

	#nav-list li a {
		font-size: 23px;
		/* letter-spacing: 0.6px; */
		text-decoration: none;
		color: #707070;
	}

	#nav-list li a:hover {
		color: #444444;
	}


#nav-list li a.current {
	/* text-decoration: underline; */
}

#page-container {
    position: absolute;
    /* z-index: 50; */
    top: 0px;
    left: 0px;
    width: 100vw;
    background-color: white;
	margin-top: 68px;
	display: flex;

}

#page-copy {
}

#page-copy h2, h2.page-title {
    font-weight: normal;
    font-style: normal;
    color: #767676;
}

#page-copy p {
    font-weight: 100;
    font-style: normal;
    color: #2d2d2d;
}

#email:hover {
    color: #767676;
}

#project-title {
	font-weight: lighter !important;
}


#projects-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.projects-card {
	display: flex;
	width: 100%;
	border-bottom: 1px solid #dddddd;
}

.projects-card:last-of-type {
	border-bottom: none;
}

.projects-card-info {
}

.list-title {
	color: #2d2d2d;
	font-weight: normal;
}

.list-span, .list-span a {
	color: #767676;
	font-weight: normal;
}

.projects-card-img {
	position: relative;
    background-size: contain;
}

.list-img {
    max-width: 100%;
    height: auto;
}

.list-title a, .list-span a, .projects-card-img a {
	text-decoration: none;
}

.projects-card-img a {
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
}

.spacer {
    margin: 34px 0 30px 0;
}

.copyright {
    margin: 79px 0 30px 0 !important;
}

#carousel {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #bebebe;
}

#carousel-slides {
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-position: top center;
    opacity: 0;
	z-index: 0;
    transition: opacity .5s ease;
}

.current-slide {
    z-index: 5;
    opacity: 1;
}

.animation {
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .500s;
    animation-play-state: running;
}

/*
.prev-slide  {
    z-index: 4;
	opacity: 0;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.5s;
}
*/


@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOutOpacity {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


#carousel-controls {
    display: flex;
    z-index: 10;
    justify-content: space-between;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
}

.carousel-arrow-container img {
    /* visibility: hidden; */
}

#left-arrow, #right-arrow {
    display: flex;
    align-content: center;
    align-self: center;
    align-items: center;
    width: 160px;
    height: 100vh;
}

#left-arrow img, #right-arrow img {
	display: none
}

@media (hover: none) {
	#left-arrow img, #right-arrow img {
	display: none;
  }
}

#right-arrow {
    justify-content: flex-end;
}

#left-arrow {
    justify-content: flex-start;
}

#left-arrow img, #right-arrow img {
    /* width: 20px;
    height: 40px; */
    cursor: pointer;
    margin-right: 20px;
}

#left-arrow img {
	
    margin-left: 20px;

}


@media (hover: none) {
    .carousel-arrow-container img {
        visibility: visible;
    }
}

.back-nav {
	text-decoration: none;
}

#project-title {
	color: #2d2d2d !important;
}

.project-span {
	color: #767676;
	display: block;
}

.data-title {
	color: #464646;
}

.data-info {
	color: #767676;
}

/* PROJECT GALLERY */

#project-gallery {
    position: relative;
}

#project-gallery-left-arrow img, #project-gallery-right-arrow img {
    cursor: default;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#project-gallery-slides {
    position: absolute;
    top: 0px;
    left: 0px;
	height: 340px;
	width: 600px;
    overflow: hidden;
}

#project-gallery-slides img {
    position: absolute;
    top: 0px;
    width: auto;
    height: 340px;
    overflow: hidden;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease;
}

#project-gallery-controls {
   display: flex;
    z-index: 10;
    justify-content: space-between;
    top: 0px;
    width: 600px;
    height: 340px;
    position: absolute;
}

#project-gallery-left-arrow, #project-gallery-right-arrow {
	height: 340px;
    width: 75px;
    max-width: calc((100% - 75px) / 2);
	display: flex;
	justify-content: center;
	flex-direction: column;
}

#project-gallery-left-arrow img, #project-gallery-right-arrow img {
    cursor: default;
    margin-right: 20px;
    margin-left: 20px;
    height: 40px;
    width: auto;
}

#project-gallery-enlarge {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100px;
}

#project-gallery-enlarge img {
    opacity: 0;
    cursor: pointer;
    width: 74px;
    height: auto;
    margin: auto;
    transition: opacity 0.3s ease;
}

#project-gallery-enlarge:hover img {
    opacity: 1;
}

.current-img {
    opacity: 1 !important;
}

#project-gallery-counter {
    position: absolute;
    top: 103%;
    right: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: end;
}

#project-gallery-counter span {
    color: #767676;
}

@media screen and (max-width: 1024px) {
  .hide-for-mobile {
	display: none;
  }
}

@media screen and (min-width: 1024px) {
  .show-for-mobile {
    display: none;
  }
}

/* Full screen gallery */

#project-full-screen {
    z-index: 999;
    background-color: #ffffff;
    position: fixed;
    bottom: -110%;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: bottom 0.5s ease-in-out;
}

.project-full-screen-show {
    bottom: 0 !important;
}

#project-full-screen-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 20px - 20px);
    height: 70px;
    margin: 0 20px;
}

#project-full-screen-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    width: 32%;
}

#project-full-screen-close {
    width: 32%;
    height: 20px;
    display: flex;
    justify-content: end;
    cursor: pointer;
}

#project-full-screen-slides {
    position: relative;
    width: calc(100vw - 20px);
    height: calc(100vh - 70px);
}

#project-full-screen-slides img {
    position: absolute;
    top: 0;
    left: 20px;
    display: block;
    opacity: 0;
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    height: auto;
    width: auto;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

#project-full-screen-controls {
    display: flex;
    position: absolute;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    top: 70px;
    left: 20px;
    width: 100%;
    height: calc(100vh - 70px - 20px);
}

#project-full-screen-left-arrow, #project-full-screen-right-arrow {
    height: 100%;
    max-height: 100%;
    width: 45%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#project-full-screen-right-arrow {
    align-items: end;
}

#project-full-screen-left-arrow img, #project-full-screen-right-arrow img {
    margin-right: 20px;
    margin-left: 20px;
}

#project-full-screen-left-arrow img, #project-full-screen-right-arrow img {
    width: fit-content;
    cursor: default;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#project-full-screen-left-arrow.allow-hover:hover img, #project-full-screen-right-arrow.allow-hover:hover img {
    cursor: pointer !important;
    opacity: 1;
}

#project-full-screen-left-arrow.allow-hover:hover, #project-full-screen-right-arrow.allow-hover:hover {
    cursor: pointer !important;
}
