@import url('//fonts.googleapis.com/css?family=EB+Garamond:600,800|Source+Sans+Pro:300,400&display=swap');

@media screen and (max-width: 992px) {
	
	.hero .text {
		padding: 25vw 4rem 2rem 1rem !important;
	}
	.hero h1 {
		font-size: 2rem !important;
	}

	.social-links {
		bottom: 4rem !important;
	}
}

@media only screen and (max-width: 600px) {
	.hero h1 {
		font-size: 3rem !important;
	}

	.logo img{
		width: 30vw !important;
	}
}

body {
	background: #000;
	color: #cbc2b2;
	font-family: 'Source Sans Pro';
}

.logo {
	background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
    padding: 3rem 0 0 12.5vw;
}

.logo img {
	height: auto;
	width: 12.5vw;
}

.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
}

.hero .background {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	opacity: .2;
	overflow: hidden;
	z-index: -2;
}

.hero .img {
	background: center;
	background-size: cover;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.hero .video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
			
.hero img,
.hero iframe {
	width: 100vw;
	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	min-height: 100vh;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero .text {
	padding: 25vh 0 25vh 12.5vw;
	text-align: left;
}

.hero h1 {
	color: #fff;
	font-size: 6rem;
	font-weight: 300;
	line-height: 1;
}

.hero a {
	color: #aa9570;
}

.hero strong {
	font-family: 'EB Garamond';
	color: #aa9570;
	font-size: 1.2em;
}

.hero p {
	font-size: 1.25rem;
}

.hero .social-links {
	align-items: center;
	background: #aa9570 url('../images/gold.jpg') center;
	bottom: -2rem;
	display: flex;
	flex-direction: column;
	padding: calc(2rem + 4vw) 0;
	position: absolute;
	right: 0;
	width: 12.5%;
}

.hero .social-links a {
	color: #fff;
	display: inline-block;
}

.hero .social-links a:not(:first-of-type) {
	margin-top: calc(2rem + 4vw * .5);
}

.hero .lines {
	position: absolute;
}

.lines {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: -1;
}

	.lines .line {
		position: absolute;
		top: 0;
		bottom: 0;
		width: 1px;
		background: rgba(255,255,255,0.06);
	}

		.lines .line:nth-child(1) {
			left: 12.5%;
		}

		.lines .line:nth-child(2) {
			left: 25%;
		}

		.lines .line:nth-child(3) {
			left: 37.5%;
		}

		.lines .line:nth-child(4) {
			left: 50%;
		}

		.lines .line:nth-child(5) {
			left: 62.5%;
		}

		.lines .line:nth-child(6) {
			left: 75%;
		}

		.lines .line:nth-child(7) {
			left: 87.5%;
		}
	}
}

