/*
* spazyn Grid V1.0.0
* Copyright 2017, spazyn (Pty) Ltd
* www.spazyn.co.za
* 14/04/2017
*/


/* Table of contents
末末末末末末末末末末末末末末末末末末末末末末末末末
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Images
- Misc
*/

/* Grid
末末末末末末末末末末末末末末末末末末末末末末末末末 */
* { box-sizing: border-box;}

.container-max{
	width : 100%;
}

.container {
	margin: 0 auto;
	width : 95%;
	padding: 0 2%;
}

.row:before,
.row:after {
    content: " ";
    display: table;
}
 
.row:after {
    clear: both;
}

.column {
    position: relative;
    float: left;
	word-wrap: break-word;
}

[class*='col-'] {
	width: auto;
	float: none;
	min-height: 0.1rem;
}

@media only screen and (min-width: 550px) {
	.container {
	max-width : 1600px;
	padding: 0 1%;
	}
	
	.column + .column {
    margin-left: 1.6%;
	}
	
	[class*='col-'] {
	float: left;
	min-height: 0.1rem;
	}
	
	.col-1 { width: 6.86666666667%; }
	.col-2 { width: 15.3333333333%; }
	.col-3 { width: 23.8%; }
	.col-4 { width: 32.2666666667%; }
	.col-5 { width: 40.7333333333%; }
	.col-6 { width: 49.2%; }
	.col-7 { width: 57.6666666667%; }
	.col-8 { width: 66.1333333333%; }
	.col-9 { width: 74.6%; }
	.col-10 { width: 83.0666666667%; }
	.col-11 { width: 91.5333333333%; }
	.col-12 { width: 100%; }
}

/* Base Styles
末末末末末末末末末末末末末末末末末末末末末末末末末 */
html { font-size: 62.5%; }

body {
	font-size: 1.6em;
	line-height: 1.25;
	font-weight: 400;
	font-family: Arial, Helvetica, sans-serif;
	color: #888888; 
}

/* Typography
末末末末末末末末末末末末末末末末末末末末末末末末末 */
p { 
	font-size: 1.6rem;
	margin: 1.2rem 0; 
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-weight: 300; }
h1 { font-size: 4.4rem; line-height: 4.8rem;  letter-spacing: -.1rem;}
h2 { font-size: 3.2rem; line-height: 3.6rem; letter-spacing: -.1rem; }
h3 { font-size: 2.8rem; line-height: 3.2rem;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 2.8rem; letter-spacing: -.08rem; }
h5 { font-size: 2.0rem; line-height: 2.4rem;  letter-spacing: -.05rem; }
h6 { font-size: 1.6rem; line-height: 2.0rem;  letter-spacing: 0; }

span.bold {
	font-weight: bold;
}
/* Links
末末末末末末末末末末末末末末末末末末末末末末末末末 */
a { color: #144A70; }
a:hover { color: #0D3147; }


/* Buttons
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 4rem;
  padding: 0 2.8rem;
  color: #555;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 0.4rem;
  border: 0.1rem solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
  

/* Forms
末末末末末末末末末末末末末末末末末末末末末末末末末 */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 4rem;
  padding: 0.4rem 1.2rem; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 0.1rem solid #D1D1D1;
  border-radius: 0.4rem;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
textarea {
  min-height: 8rem;
  resize: none;
  overflow:hidden;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 0.1rem solid #144A70;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }
  

/* Lists
末末末末末末末末末末末末末末末末末末末末末末末末末 */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
末末末末末末末末末末末末末末末末末末末末末末末末末 */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 0.1rem solid #E1E1E1;
  border-radius: 0.4rem; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
末末末末末末末末末末末末末末末末末末末末末末末末末 */
th,
td {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-bottom: 0.1rem solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
末末末末末末末末末末末末末末末末末末末末末末末末末 */
button,
.button {
  margin-bottom: 1.2rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.6rem; }
pre,
blockquote,
dl,
figure,
table,
ul,
ol,
form {
  margin-bottom: 2.4rem; }

/* Images
末末末末末末末末末末末末末末末末末末末末末末末末末 */
img { max-width: 100%;}

/* Misc
末末末末末末末末末末末末末末末末末末末末末末末末末 */
hr {
  margin-top: 3.2rem;
  margin-bottom: 3.6rem;
  border-width: 0;
  border-top: 0.1rem solid #E1E1E1; }
  
.float-l { float: left } 
.float-r { float: right } 