/* Font Imports */
@import url('https://fonts.googleapis.com/css?family=Heebo|Oswald');

/* Globals */
html,
body {
	height: 100%;
	overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	/* color: #a6a6a6; */
    /* align-items: center; */
}

img {
    max-width: 100%;
}

.logo{
	height: 10vh;
	width: 10vh;
	position: absolute;
	margin-left: 1rem;
}

/* Navbar */
.nav{
	height: 10vh;
    position: absolute;
    width: 100%;
    top: 5vh;
}
.navbar{
	list-style-type: none;
	margin: 0;
	padding: 0;
	color: #a6a6a6;
}

.navbar__link{
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: .03em;
	line-height: 1.2em;
	text-transform: uppercase;
	margin: 0 1.5em;
	padding: .618em 0;
	cursor: pointer;
}
.navbar__link:hover{
	opacity: 0.7;
}
.edit{
	position: absolute;
	top: calc((10vh - 38px) / 2);
	left: 60vw;
}

/* Hero Section */
#hero{
	background: url('../images/bg.jpeg') center center no-repeat;
	background-size: cover;
	height: 100vh;
	position: relative;
	width: 100%;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
.hero {
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
	color: #a6a6a6;
	height: 100%;
    width: 100%;
    display: flex;
	align-items: center;
	text-align: center;
}
.inner-container{
	width: 70vw;
	height: fit-content;
	position: absolute;
	top: calc((100vh - 80px) / 2);
	left: calc((100vw - 70vw) / 2);
	text-align: center;
	color: #a6a6a6;
}
.hero__subtitle{
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 10px;
    letter-spacing: .25em;
    line-height: 1.8em;
	text-transform: uppercase;
	width: 100%;
    /* text-align: center; */
}
.hero__title{
	font-family: 'Oswald', Arial, Helvetica, sans-serif;
	font-size: 105px;
    font-weight: 200;
    max-width: 60rem;
    margin-top: 15px;
	/* text-align: center; */
	text-transform: uppercase;
	padding-bottom: 34px;
	letter-spacing: .03em;
    line-height: 1.2em;
}

.hero__button{
	font-family: 'Heebo', sans-serif;
	font-size: 10px;
	font-weight: 700;
	font-style: normal;
	width: auto;
	height: auto;
	letter-spacing: .5em;
	border: 2px solid #919191;
	color: #919191;
	background-color: transparent;
	transition: 0.1s background-color linear, 0.1s color linear;
	text-transform: uppercase;
	padding: 21px 34px;
}
.hero__button:hover{
	background: #919191;
	color: white;
}
.hero__button:focus{
	outline: none;
}


/*Footer Section*/
#footer{
	position: relative;
	bottom: 0;
	background: #191606;
	color: white;
	width: 100%;
	height: 50vh;
}
.inner-footer{
	padding: 2rem;
}
.inner-footer > .row > div > h1{
	font-size: 10px;
	font-family: "Heebo", sans-serif;
}

.inner-footer > .row > div > span{
	    font-family: ff-meta-serif-web-pro;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    letter-spacing: .02em;
    line-height: 2em;
    text-transform: none;
    color: white;
}
@media only screen and (max-width: 768px) {
    .hero__title{
    	font-size: 30px;
    }
    [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    margin-bottom: 2rem;
	} 
	#footer{
		height: fit-content; 
	}          
}