/* Fonts
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 200;
	font-display: auto;
	src: url('./fonts/HelveticaNeue.ttf') format('truetype');
}

/* Basic Styles
================================================== */
body {
	background-color: #fff;
	font: 16px/22px "Space Grotesk", Helvetica, Arial, sans-serif;
	font-weight: 400;
	color: #202a44;
	padding: 119px 0 0 0;
	margin: 0;
}

/* Type
================================================== */
h1, h2, h3, h4, h5, h6 {
	color: #202a44;
	font-family: "Space Grotesk", Helvetica, Arial, sans-serif;
	font-weight: 500;
	margin: 0 0 20px 0;
}
h1 {
	text-transform: uppercase;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 46px; line-height: 50px; letter-spacing: 15px; }
h2 { font-size: 36px; line-height: 40px; }
h3 { font-size: 28px; line-height: 32px; }
h4 { font-size: 22px; line-height: 26px; }
h5, h6 { font-size: 20px; line-height: 24px; }

@media only screen and (max-width: 900px) {
h1 { font-size: 36px; line-height: 40px; letter-spacing: 10px; }
h2 { font-size: 28px; line-height: 32px; }
h3 { font-size: 22px; line-height: 26px; }
h4, h5, h6 { font-size: 20px; line-height: 24px; }
}

@media only screen and (max-width: 700px) {
h1 { font-size: 28px; line-height: 32px; letter-spacing: 7px; }
h2, h3 { font-size: 22px; line-height: 26px; }
h4, h5, h6 { font-size: 20px; line-height: 24px; }
}

@media only screen and (max-width: 500px) {
h1 { font-size: 22px; line-height: 26px; letter-spacing: 4px; }
h2, h3 { font-size: 20px; line-height: 24px; }
h4, h5, h6 { font-size: 18px; line-height: 22px; }
}

p {
	margin: 20px 0;
}
p.small {
	font-size: 14px;
	line-height: 18px;
}
p.large {
	font-size: 20px;
	line-height: 24px;
}
p.xlarge {
	font-size: 26px;
	line-height: 32px;
}

.capitals {
	text-transform: capitalize;
}
.uppercse {
	text-transform: uppercase;
}
.lowercse {
	text-transform: lowercase;
}

/* Links */
a {
	outline: none;
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
}
a:link, a:visited {
	color: #C36;
	text-decoration: none;
}
a:hover {
	color: #336;
	text-decoration: none;
}
p a, p a:visited { line-height: inherit; }

/* Lists */
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.square, ul.circle, ul.disc, ol.numeric { margin-left: 28px; margin-bottom: 20px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; line-height: 26px; }
ol.numeric { list-style: decimal-leading-zero outside; }
ul.square li, ul.circle li, ul.disc li, ol.numeric li { margin-bottom: 5px; }

/* Images */
img.scale-with-grid {
	width: 100%;
	height: auto;
}

/* Buttons */
a.button, .button, input[type="submit"], input[type="reset"], input[type="button"] {
	cursor: pointer;
	outline: none;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

/* Forms */


/* Misc */
img.full-width {
	display: inline-block;
	width: 100%;
	height: auto;
}
.clear {
	display: block;
	clear: both;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.padbox { padding: 20px; }
.padtopbottom { padding-top: 20px; padding-bottom: 20px; }
.padtop { padding-top: 20px; }
.padbottom { padding-bottom: 20px; }
.padleftright { padding-left: 20px; padding-right: 20px; }
.halfpadbox { padding: 10px; }
.halfpadtopbottom { padding-top: 10px; padding-bottom: 10px; }
.halfpadleftright { padding-left: 10px; padding-right: 10px; }
.center-margin { margin: 0 auto; }
.remove-bottom { margin-bottom: 0 !important; }
.half-bottom { margin-bottom: 10px !important; }
.add-bottom { margin-bottom: 20px !important; }
.remove-top { margin-top: 0 !important; }
.half-top { margin-top: 10px !important; }
.add-top { margin-top: 20px !important; }
.add-left { margin-left: 10px !important; }
.remove-left { margin-left: 0 !important; }
.add-right { margin-right: 10px !important; }
.remove-right { margin-right: 0 !important; }
.remove-all { margin: 0 !important; }
.right-float { position: relative; float: right; }
.left-float { position: relative; float: left; }
.no-float { position: relative; float: none; }
.right-align { text-align: right; }
.left-align { text-align: left; }
.center-align { text-align: center; }
.full-align { text-align: justify; }
