* {
	margin: 0;
	padding: 0;
}
html, body {
	min-height: 100vh;	
	line-height: 1.6em;
	font-family: gill-sans-nova, verdana, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.05em;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-image: url(img/watermark.svg);
	background-size: 80%;
	background-position: left center;
	background-repeat: no-repeat;
}

#container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-top: 50px;
	box-sizing: border-box;
	height: calc(100vh - 55px);
}

a {
	color: #373266;
	text-decoration: none;
}

img, svg {
	max-width: 100%;
	height: auto;
}

.logo {
	width: 15%;
	max-width: 450px;
	margin-bottom: 1em;
	display: block;
}

.logos-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 50px;
	margin: 0 auto;
	width: 75%;
	padding: 100px;
	height: 100%;
	padding-bottom: 150px;
}
/*.logos-grid > * {
	display: flex;
	align-items: center;
}*/

.company-link {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/*background-blend-mode: multiply;*/
	padding: 50px;
	background-color: #928B9B;
	display: flex;
}

.hair-graces {
	background-image: url(img/hair-graces-bg.jpg);
}
.investabrix {
	background-image: url(img/investabrix-bg.jpg);
}
.miiam {
	background-image: url(img/miiam-bg.jpg);
}

.footer {
	background-color: #20184C;
	color: #fff;
	text-transform: uppercase;
	padding: 1.5em 0;
}

.footer-email {
	text-transform: lowercase;
	font-size: 1.2em;
	margin-bottom: 0;
}

.footer .inner {
	position: relative;
	width: 90%;
	margin: 0 auto;
}

.footer .inner > div:first-of-type {
	display: flex;
	/*justify-content: center;*/
	justify-content: space-between;
	/*padding-right: 100px;*/
}

.footer .inner > div > div {
    margin-left: 20px;
    margin-right: 20px;
}

.footer a {
	color: #fff;
	text-decoration: none;
}


.footer-careers a {
	color: #8B88AD;
	text-decoration: none;
	text-transform: uppercase;
}



@media only screen and (max-width: 1280px) {
	.footer {
		padding: 1em;
	}
	.footer .inner > div {
		flex-direction: column;
	}
	.footer .inner > div > div {
   	margin-left: 0;
	}
	.footer-careers {
		position: relative;
	}
	.footer-logo {
		margin-bottom: 3em;
	}
}

@media only screen and (max-width: 1024px) {
	.hide-tablet {
		display: none;
	}
	.inner {
		width: 85%;
	}
	#container {
		/*display: block;*/
		height: auto;
	}
	#container .inner {
		display: flex;
		flex-direction: column-reverse;
	}
	#container .footer .inner {
		flex-direction: column;
	}
	.logos-grid {
		grid-template-columns: repeat(3,1fr);
	}
	h6 {
		margin-bottom: 2em;
		text-align: center;
	}
	.logos-grid {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 25%;
	}
	.footer-logo {
		margin-bottom: 3em;
	}
	.footer-right {
		width: 100%;
	}

}

@media only screen and (max-width: 768px) {
	.logo {
		width: 75%;
	}
	.logos-grid {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 45%;
	}

}

