@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
/* CSS Document */
:root {
    --main-bg-color: #FF631B;
    --main-txt-color: #FE5B27; 
    --main-padding: 10px;
	--main-font-family: "Barlow", Helvetica, Arial, "sans-serif";
	--main-header-height: 120px;
	--gallery-icon-top-padding: 100px;
}

::selection {
  background: #FFB795; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #FFB795; /* Gecko Browsers */
}

/* Container */
.container {
	margin: 0;
	padding: 0;
	height: auto;
	width: 100%;
	background-color: #FFFFFF;
	scroll-behavior: smooth;
	
	scroll-snap-type: mandatory;
	-webkit-scroll-snap-type: mandatory;
	-webkit-scroll-snap-points-y: repeat(100%);
	
	/* older spec implementation */
	scroll-snap-destination: 0% 100%;
	scroll-snap-points-y: repeat(100%);
}

.page {
	position: relative;
	margin: 0;
	padding: 0;
	scroll-snap-align: start;
	scroll-behavior: smooth;
	width: 100%;
	min-height: 100vh;
}

.page h1, .wrapper h1 {
	font-size: 60px;
	letter-spacing: 5px;
	color: var(--main-txt-color);
	font-weight: 300;
}

figcaption, .wrapper p {
	font-size: 16px;
	font-family: var(--main-font-family);
	color: #494949;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 24px;
}

.citation {
	letter-spacing: 1.2px;
	line-height: 20px;
	font-size: 10px;
}

/* Header */
header {
	font-family: var(--main-font-family);
	background-color: var(--main-bg-color);
	height: 120px;
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
	overflow: hidden;
}

.fancy-img {
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	opacity: 1;
}

#logo {
	position: absolute;
	top: 35px;
	left: 20px;
}

.fancy-img:hover {
	opacity: 0.75;
}

/* Navigation */
nav {
	position: absolute;
	right: 20px;
	top: 65px;
	width: 50%;
	text-align: right;
}

header nav ul {
	list-style: none;
	float: right;
	margin-bottom: 0px;
}

nav ul li {
	float: left;
	font-size: 14px;
	text-align: left;
	margin-right: 10px;
	letter-spacing: 2px;
	font-weight: 500;
	transition: all 0.3s linear;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
}

ul li:hover a {
	opacity: 0.5;
}

ul li a {
	color: #FFFFFF;
	font-family: var(--main-font-family);
	padding: 10px;
	text-decoration: none;
	transition: all 0.3s linear;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
}

.centered {
	display: flex;
	width: 100%;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.panel-txt {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: calc(100% - 400px);
}

.gallery-column {
	position: relative;
	padding-top: var(--gallery-icon-top-padding);
	width: 23%;
	margin: 0 auto;
	text-align: center;
}

.gallery-column h1 {
	font-weight: 800;
	color: var(--main-txt-color);
	font-size: 24px;
	letter-spacing: 5px;
}

.gallery-column p {
	font-weight: 200;
	color: #878787;
	font-size: 14px;
	letter-spacing: 1.2px;
	text-align: left;
	line-height: 20px;
}

.gallery-column ul li {
	font-weight: 200;
	color: #878787;
	font-size: 18px;
	letter-spacing: 1.2px;
	padding: 5px 0px;
	text-align: left;
}

.fancy-date {
	color: var(--main-txt-color);
	font-size: 20px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 500;
}

.fancy-title {
	font-size: 24px;
	font-weight: 800;
	color: #A3A3A3;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 36px;
}

.footer {
	position: relative;
	top: 200px;
	background-color: var(--main-bg-color);
	width: 100%;
	margin: 0 auto;
}

.footer h1 {
	color: #FFFFFF;
	letter-spacing: 5px;
	font-size: 84px;
	font-weight: 300;
}

.footer h2 {
	color: #FFFFFF;
	letter-spacing: 2px;
	margin-top: 40px;
}

.footer p {
	color: #FFFFFF;
	font-weight: lighter;
	line-height: 23px;
	letter-spacing: 2px;
}

.wrapper {
	width: 60%;
	position: relative;
	top: 120px;
	margin-left: auto;
	margin-right: auto;
}

/* Body */
body {
	font-family: var(--main-font-family);
	background-color: #ffffff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0;
}

a {
	color: var(--main-txt-color);
	opacity: 1;
	transition: 0.3s ease;
	text-decoration: none;
}

a:hover {
	opacity: 0.5;
}

table {
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

figure {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

hr {
	width: 150px;
	background-color: var(--main-bg-color);
	border-color: var(--main-bg-color);
	border: 0;
	height: 8px;
	margin-bottom: 20px;
}

#panel {
	font-weight: 200;
	font-size: 40px;
	color: #A3A3A3;
	letter-spacing: 0.6px;
	vertical-align: middle;
	align-items: center;
}

#copyright {
	text-align: right;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
}

#content {
	width: 100%;
	position: relative;
}

#static {
	position: absolute;
	top: var(--gallery-icon-top-padding);
	background: white;
	margin: auto;
}

#static:hover {
	opacity: 0;
}

#active {
	position: absolute;
	top: 0;
	margin: auto;
	background: white;
	opacity: 0;
}

#active:hover {
	opacity: 1;
}

#b {
	font-weight: 400;
	color: #414141;
	transition: 0.2s ease;
}

#b:hover {
	color: var(--main-txt-color);
}

#one {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 250px;
}

#two {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 250px;
}

#animated {
    animation: fadein 1s;
    -moz-animation: fadein 1s; /* Firefox */
    -webkit-animation: fadein 1s; /* Safari and Chrome */
    -o-animation: fadein 1s; /* Opera */
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}