@charset"UTF-8";

/**************************************
 * 1.0 - Reset(original)
 **************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
	height: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	height: 100%;
  text-align: left;
}
img{
	max-width: 100%;
	height: auto;
}
textarea { /* for chrome fontsize bug */
	font-family: sans-serif;
}
ul, ol {
	list-style: none;
}

/**************************************
 * 1.1 - Reset
 * 
 * html5doctor.com Reset Stylesheet
 * v1.6.1
 **************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/**************************************
 * 1.3 - Original style
 **************************************/

html {
	font-size: 62.5%;
}
body{
	font-family: 'Chivo', sans-serif;
	background-color: #fff;
	color: #333333;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
}
a {
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}
a:focus,
a:active {
	color: #333333;
	text-decoration: none;
	outline: none;
}

#page-wrap{
	display: flex;
	top:calc(50% - 148px);
	left:0;
	position: relative;
	overflow: hidden;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
	#page-wrap{
		padding-right: 20px;
		padding-left: 20px;
	}
}
#site-header{
	position: relative;
	display: block;
	font-size: 24px;
	font-size: 2.4rem;
}
#site-title{
	position: relative;
	font-weight: normal;
	padding-top:32px;
}
#contact-title{
	margin-top:32px;
	padding-bottom:7px;	
	font-weight: normal;
}
#copyright{
	font-size: 10px;
	font-size: 1rem;
	margin-top: 150px;
	padding-bottom: 16px;
}