/* RESET */

* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	vertical-align: baseline;
}

/* WEBFONTS */

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

/* GLOBAL */

body {
	font-family: "Karla", sans-serif;
    -webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	background-color: #1D1B1C;
	color: #E0E1D5;
}

a {
	color: #E0E1D5;
}

.container {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
}

.background-image {
	position: fixed;
	top: 0px;
	left: 0px;
	opacity: 1;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -1;
}

.overlay {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	opacity: 0.55;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -1;
	mix-blend-mode: multiply;
	background-color: #1D1B1C;
}

.logo {
	position: fixed;
	top: 0px;
	left: 0px;
	padding: 3vw 0vw;
	display: flex;
	justify-content: center;
	width: 100vw;
	z-index: 1;
}

.logo img {
	width: 6vw;
}

.main-title {
	height: 90vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main-title h1 {
	text-align: center;
	font-size: 4vw;
	font-weight: normal;
	margin-bottom: 0.5vw;
}

.main-title p {
	font-size: 1.4vw;
	display: flex;
	align-items: center;
}

.main-title p img {
	width: 1.5vw;
	margin-left: 1vw;
}

.main-title p a {
	display: flex;
	align-items: center;
}

.footer {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100vw;
	z-index: 0;
	padding: 3vw;
	box-sizing: border-box;
}

.footer-inner {
	padding: 2vw 0px 1.5vw 0px;
	border-top: 1px solid #E0E1D5;
	border-bottom: 1px solid #E0E1D5;
	display: flex;
	flex-wrap: wrap;
}

.footer-left {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-left p {
	font-size: 1.2vw;
	margin-bottom: 0.5vw;
}

.footer-left b {
	font-weight: bold;
}

.footer-right {
	width: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.address {
	
}

.address p {
	font-size: 1.2vw;
	margin-bottom: 0.5vw;
}

.contact {
	
}

.contact a {
	text-transform: uppercase;
	font-size: 1vw;
	color: #E0E1D5;
	border: 1px solid #E0E1D5;
	border-radius: 100vw;
	padding: 0.5vw 1vw;
	text-decoration: none;
	margin-left: 4vw;
}

@media screen and (max-width: 768px) {

	.logo {
		padding: 6vw 0vw;
	}
	
	.logo img {
		width: 18vw;
	}

	.footer-inner {
		padding: 6vw 0px 4vw 0px;
		flex-direction: column;
	}

	.footer-left {
		width: 100%;
		align-items: center;
	}

	.footer-right {
		width: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.main-title {
		height: 87vh;
	}
	
	.main-title h1 {
		font-size: 10vw;
		margin-bottom: 3vw;
	}
	
	.main-title p {
		font-size: 5vw;
	}
	
	.main-title p img {
		width: 7vw;
		margin-left: 3vw;
	}

	.footer {
		padding: 6vw;
	}

	.footer-left p {
		font-size: 3.5vw;
		margin-bottom: 2vw;
	}

	.address {
		margin-top: 3vw;
	}

	.address p {
		font-size: 3.5vw;
		margin-bottom: 2vw;
		text-align: center;
	}
	
	.contact a {
		font-size: 2.2vw;
		padding: 2vw 4vw;
		margin-left: 0vw;
		display: inline-block;
		margin-top: 3vw;
		margin-bottom: 1.5vw;
	}

}