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

html {
	background: #333;
}

body {
	background: #FFF;
	margin: 0 auto;
	padding: 0;
	line-height: 30px;
	font-size: 16px;
	font-family: "Archivo", Arial, Helvetica, sans-serif;
	color: #444444;
	overflow-x: hidden;
}

a { text-decoration: none; }


img {
	border: 0;
	text-decoration: none;
}

div.Container {
	max-width: 1920px;
	height: auto;
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

div.Wrapper {
	width: 100%;
	max-width: 1040px;
	height: auto;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

/* Misc. */

.FloatLeft {
	float: left;	
}

.FloatRight {
	float: right;	
}

.ClearBoth {
    clear: both;
}

.Hidden {
	display: none;
}

.Borderless {
	border-color: rgba(0,0,0,0) !important;
}

/* Footer */

footer {
	z-index: 110;
	position: relative;
}

div.Footer {
	background: #dadada;
	padding: 8vw 0;
}

	div.Footer div.Contact {
		display: table;
		width: 100%;
		max-width: 820px;
		margin: auto;
		border-radius: 40px;
		overflow: hidden;
		background: #fff;
	}

		div.Footer div.Contact > div {
			display: table-cell;
			vertical-align: top;
			width: 50%;
		}

		div.Footer div.Contact div.ContactLeft {
			background: #ae9e86;
			padding: 50px 40px;
			text-align: left;
			border-radius: 0 0 0 40px;
		}

			div.Footer div.Contact div.ContactLeft h2 {
				font-family: "Archivo", Arial, Helvetica, sans-serif;
				font-size: 28px;
				color: #FFF;
				line-height: 40px;
				font-weight: 700;
				margin-bottom: 0px;
			}

			div.Footer div.Contact div.ContactLeft p {
				color: #FFF;
				margin-bottom: 20px;
			}

				div.Footer div.Contact div.ContactLeft p > span {
					display: inline-block;
					width: 16px;
					text-align: center;
				}

			div.Footer div.Contact div.ContactLeft a {
				display: inline;
				color: #FFF;
				border-bottom: 1px solid #fff;
			}

		div.Footer div.Contact div.ContactRight {
			font-family: "Archivo", Arial, Helvetica, sans-serif;
			background: #FFF;
			padding: 50px 20px;
			text-align: center;
			position: relative;
		}
		
			div.Footer div.Contact div.ContactRight img {
				width: calc(100% - 80px);
				height: auto;
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translateX(-50%) translateY(-50%);
			}

@media screen and (max-width: 670px) {
	
	div.Footer div.Contact,
	div.Footer div.Contact > div {
		display: block;
		width: 100%;
		min-height: 200px;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	div.Footer div.Contact div.ContactLeft,
	div.Footer div.Contact div.ContactRight {
		padding: 30px 20px;
	}
	
	div.Footer div.Contact div.ContactLeft {
		border-radius: 0 40px 0 0;
		width: calc(100% - 20px);
	}
	
	div.Footer div.Contact div.ContactRight img {
		width: calc(100% - 40px);
	}
	
}