html {
	
	scroll-behavior: smooth;
	
}

:root {
	
	--brand-color: #356aa0;
	--background-color: #1f1f1f;
	--highlight-color: #ffdf1b;
	
}

body {
	font-family: Lato, sans-serif;
	margin: 0;
	background: var(--background-color);
}

:not(.touch-device) body::-webkit-scrollbar {
	
	width: 9px;
	padding: 0 1px;
	
}

:not(.touch-device) body::-webkit-scrollbar-thumb {
	
	border-radius: 10px;
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(.44, #b4b4b4));
	
}

:not(.touch-device) body::-webkit-scrollbar-track {
	
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f5f5f5;
	border-radius: 0;
	
}

* {
	margin: 0;
	padding: 0
}

/* *** */

.container {
	
	height: 100%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

main {
	
	background: var(--background-color);
	
}

/* *** */

form {

	max-width: 900px;
	margin: 0 auto;

}

.row:after {
	
	content: "";
	display: table;
	clear: both;
	
}

.column,
.columns {
	
	width: 100%;
	float: left;
	box-sizing: border-box;
	
}

.column,
.columns {
	
	margin-left: 4%;
	
}

.column:first-child,
.columns:first-child {
	
	margin-left: 0;
	
}

.six.columns {
	
	width: 48%;
	
}

.twelve.columns {
	
	width: 100%;
	margin-left: 0;
	
}

input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
	
	height: 38px;
	padding: 6px 10px;
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
	width: 100%;
	
}

textarea {
	
	min-height: 10rem;
	resize: vertical;
	
}

label {

	display: block;
	color: #f0f0f0;
	margin-top: 2rem;
	margin-bottom: 0.5rem;

}

label[for="name"] {

	margin-top: 1rem;

}