@charset "UTF-8";

/* @import must be at top of file, otherwise CSS will not work */
/* @import url("//hello.myfonts.net/count/3f4e96"); */
  
@font-face {
  font-family: "HelveticaLTWXX-Roman";
  src: url('/static/fonts/HelveticaLTWXXRoman.woff2') format('woff2'), url('/static/fonts/HelveticaLTWXXRoman.woff') format('woff');
}

@font-face {
	font-family: "Inter";
	src: url('/static/fonts/Inter-Regular.woff2') format(woff2);
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Inter";
	src: url('/static/fonts/Inter-Bold.woff2') format(woff2);
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "Inter";
	src: url('/static/fonts/Inter-Light.woff2') format(woff2);
	font-weight: 300;
	font-style: normal;
}

/* ===============================================
CSS RESET
=============================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ===============================================
BASIC
=============================================== */
body {
	width: 100%;
	color: #414042;
	background: #ffffff;
	font-family: 'HelveticaLTWXX-Roman', 'Helvetical', 'Roboto', Arial, Verdana, Helvetica, sans-serif;
	font-weight: normal;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
* {
	box-sizing: border-box;
}

/* ===============================================
PAGE STYLES
=============================================== */
section.section-error {
    max-width: 600px;
	padding: 5rem 1rem;
    margin: 0 auto;
	text-align: center;
}
section.section-error h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
section.section-error p.error-title {
	font-size: 22px;
	font-weight: 600;
}
