/* - - - - - - - - - - - - - - - - - - - -
   GLOBAL CSS FOR TICKTBOX REMODEL
- - - - - - - - - - - - - - - - - - - - - 

Goal: - To clean the design and formatting so that it is more easy to read 
	  - Try to not get a headache from looking at the CSS code, be able to explain each line to someone if they ask
	  - Get rid of all code not pertaining to the home page and then work from there
	  - ONLY include global style

CONTENTS:
- font face
- reset stylesheet
- box model
- global styling


things that you need to learn:
how to apply @media properly



/* -----------------------------------------------------------------------
						FONTS 
----------------------------------------------------------------------- */

@font-face {
	font-family: 'Gotham-Black';
	src: url(../fonts/Gotham-black.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Light';
	src: url(../fonts/Gotham-light.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Book';
	src: url(../fonts/Gotham-Book.otf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-medium';
	src: url(../fonts/Gotham-medium.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham-Bold';
	src: url(../fonts/Gotham-Bold.otf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Museo-700';
	src: url(../fonts/Museo700.otf);
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Museo';
	src: url(../fonts/Museo300-Regular.otf);
	font-weight: normal;
	font-style: normal;
}


/* -----------------------------------------------------------------------
						RESET STYLESHEET
				made to reduce browser inconsistencies 
--------------------------------------------------------------------------*/

	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;
	}

/* -----------------------------------------------------------------------
							BOX MODEL 
			a box that wraps around every GTML element
			contains margins, borders, padding, and the actual content
 ----------------------------------------------------------------------- */

	*, *:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.image {
		border-radius: 3px;
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			border-radius: 3px;
			display: block;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			margin: 0 0 2em 2em;
			top: 0.25em;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}
			
/* -----------------------------------------------------------------------
						GLOBAL STYLING FOR
						body, different p, h1-h6
						ol/li, buttons 
 ----------------------------------------------------------------------- */

	@-ms-viewport {
		width: device-width;
	}

	body {
		color: #ffffff;
		font-family: "Gotham-Book", Helvetica, sans-serif;
		font-size: 14px;
		line-height: 1.5em;
	    -webkit-font-smoothing: antialiased;
	    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	}

	a
	{
		font-size: 2em;
		color: #ffffff;
		text-decoration: none;
	}

	a.footer{
		font-size:1em;
		color: #696969;
		text-decoration: none;

	}

	a.special{
		font-size: 2em;
		color: #ffffff;
		text-decoration: none;
		font-family: "Museo-700", Helvetica, sans-serif;
		line-height: 2.5em;
	}
	

	b
	{
		font-weight: 800;
	}
	/* Sets the margin for paragraph structured html */

	p1
	{
		font-size: 1.5em;
		line-height: 1.3em;
		margin: 0 2em 2em 2em;
	}

	p {
		font-size:1.3em;
		line-height: 1.3;
	}

	pfrontend {
	font-size: 1.3em;
    line-height: 1.3;
    margin: 0 2em 20em 2em;
    margin-left: 0em;

	}


	/* you're going to need to fix this later */

	p2 {
		font-size:1.3em;
		line-height: 1.3;
		padding: 0em 1em 0em 0em;

	}

	p3{
		font-size:1em;
	}

	pbig{
		font-size: 3.5em;
		line-height: 1em;
	}

	h2.privacy{
		color: #000000;
	}


	h3.cta
	{
		font-size: 2.3em;
		color: #ffffff;
		margin-left: 0em;
		line-height: 0.5em;
	}


	h1, h2, h3, h4, h5, h6 {font-family: "Museo-700", Helvetica, sans-serif; margin: 0.2em; }
	h1 { font-size: 5em; line-height: 1.3em; }
	h2 { font-size: 2em; line-height: 1.3em; margin: auto; text-align: center;}
	h3 { font-size: 1.15em; line-height: 1.75em; color: #696969; }
	h4 { font-size: 1em; line-height: 1.5em; }
	h5 { font-size: 0.8em; line-height: 1.5em; }
	h6 { font-size: 0.7em; line-height: 1.5em; }
	
/* Formatting for List and for buttons not to display radio buttons */

	ol {
		list-style: decimal;
		margin: 0 0 2em 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		margin: 0 0 2em 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px #fff;
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

		ul.icons {
			cursor: default;
			list-style: none;
			padding-left: 0;
		}

			ul.icons li {
				display: inline-block;
				padding: 0 1em 0 0;
			}

				ul.icons li:last-child {
					padding-right: 0 !important;
				}

			ul.icons.major {
				padding: 1em 0;
			}

				ul.icons.major li {
					padding-right: 3.5em;
				}

					@media screen and (max-width: 736px) {

						ul.icons.major li {
							padding: 0 1em !important;
						}

					}

		ul.actions {
			cursor: default;
			list-style: none;
			padding-left: 0;
		}

			ul.actions li {
				display: inline-block;
				padding: 0 1.5em 0 0;
				vertical-align: middle;
			}

				ul.actions li:last-child {
					padding-right: 0;
				}

			ul.actions.small li {
				padding: 0 0.75em 0 0;
			}

			ul.actions.vertical li {
				display: block;
				padding: 1.5em 0 0 0;
			}

				ul.actions.vertical li:first-child {
					padding-top: 0;
				}

				ul.actions.vertical li > * {
					margin-bottom: 0;
				}

			ul.actions.vertical.small li {
				padding: 0.75em 0 0 0;
			}

				ul.actions.vertical.small li:first-child {
					padding-top: 0;
				}

			ul.actions.fit {
				display: table;
				margin-left: -1.5em;
				padding: 0;
				table-layout: fixed;
				width: calc(100% + 1.5em);
			}

				ul.actions.fit li {
					display: table-cell;
					padding: 0 0 0 1.5em;
				}

					ul.actions.fit li > * {
						margin-bottom: 0;
					}

				ul.actions.fit.small {
					margin-left: -0.75em;
					width: calc(100% + 0.75em);
				}

					ul.actions.fit.small li {
						padding: 0 0 0 0.75em;
					}

			@media screen and (max-width: 650px) {

				ul.actions li {
					display: block;
					padding: 1em 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions li:first-child {
						padding-top: 0;
					}

					ul.actions li > * {
						max-width: 30em;
						width: 80%;
					}

						ul.actions li > *.icon:before {
							margin-left: -1em;
						}

				ul.actions.small li {
					padding: 0.5em 0 0 0;
				}

					ul.actions.small li:first-child {
						padding-top: 0;
					}

			}

	dl {
		margin: 0 0 2em 0;
	}



/* FORMS
- - - - - - - - - - - - - - - - - */
label {
	color: #34495e;
	font-family: Gotham-light', Arial, sans-serif;
	font-size: 14px;
	font-weight: normal;
}
label span { color: #34495e; font-size: 14px; }
label.light { color: #bdc3c7; }
label.error { color: #e74b3b; display: block; }
label.red   { color: #e74b3b; }
input, textarea, select {
	width: 264px;
	outline: none; /* removes crappy default webkit blue glow */
}
input.error, textarea.error, select.error { border: 2px solid #e74b3b; }
input, textarea {
	-moz-box-sizing: border-box;
		 box-sizing: border-box;
	padding-left:  30px;
	padding-right: 4px;
	border-radius: 2px;
	border: none;
	background-color: #f2f2f2;
}

input {
	color: #34495e;
	font-family: 'Museo-700', Arial, sans-serif;
	font-size: 14px;
	line-height: 45px;
	height: 40px;
	margin-right: 1em;
}

input.long { width: 250px; }
textarea {
	color: #34495e;
	font-family: 'Museo-300', Arial, sans-serif;
	font-size: 20px;
	line-height: 24px;
	height: 60px;
	max-width: 100%;
	max-height: 400px;
	padding-top: 5px;
}
textarea.taller { height: 120px; }

input[type="checkbox"] {
	width: auto;
	box-shadow: none;
}
input[type="file"] {
	line-height: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}


/* Styling for Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
	-webkit-transition: background-color 0.1s ease-out;
	   -moz-transition: background-color 0.1s ease-out;
		-ms-transition: background-color 0.1s ease-out;
			transition: background-color 0.1s ease-out;
		background-color: none;
		border-radius: 2px;
		border: 0;
		box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
		color: #fff;
		cursor: pointer;
		display: inline-block;
		font-family: 'Gotham-black', Arial, sans-serif;
		font-size: 1.2em;
		height: 3.5em;
		width: 260px;
		line-height: 3.2em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		background-color: rgb(241, 196, 15);
		color: #34495e !important;
	}

		input[type="submit"].yellow:hover,
		input[type="reset"].yellow:hover,
		input[type="button"].yellow:hover,
		button.yellow:hover,
		.button.yellow:hover {
			background-color: rgba(177, 146, 20, 1);
		}

		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		button:active,
		.button:active {
			background-color: rgba(144, 144, 144, 0.5);
		}

		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		input[type="button"].icon:before,
		button.icon:before,
		.button.icon:before {
			margin-right: 0.5em;
		}

		input[type="submit"].fit,
		input[type="reset"].fit,
		input[type="button"].fit,
		button.fit,
		.button.fit {
			display: block;
			margin: 0 0 1em 0;
		}

		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small,
		button.small,
		.button.small {
			font-size: 0.8em;
		}

		input[type="submit"].big,
		input[type="reset"].big,
		input[type="button"].big,
		button.big,
		.button.big {
			font-size: 1.35em;
		}

		input[type="submit"].special,
		input[type="reset"].special,
		input[type="button"].special,
		button.special,
		.button.special {
			background-color: #f1c40f;
			color: #34495e !important;
		}


			input[type="submit"].special:active,
			input[type="reset"].special:active,
			input[type="button"].special:active,
			button.special:active,
			.button.special:active {
				background-color: #ffcd00 !important;
				box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);

			}

			
		/* these buttons don't currently work, but when enabled might! */
		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled,
		button.disabled,
		button:disabled,
		.button.disabled,
		.button:disabled {
			-moz-pointer-events: none;
			-webkit-pointer-events: none;
			-ms-pointer-events: none;
			pointer-events: none;
			opacity: 0.25;
		}



.footercontent
{
	padding: 0em 30em 0em 30em;
}


 .quick{
width: 20%;
height: 225px;
float: left;
margin-right: 10%;
}

.social{
 width: 20%;
height: 225px;
float: left;
margin-left: 5%;
margin-right: 10%;
}

.contact{
	width: 20%;
	height: 225px;
	margin-right: 1.5%;
	float: left;
	margin-left: 5%;
}


.footer{
  width:100%
  margin: 0 auto;
  
}

.footerleft{
  line-height:30px;
  padding-left: 0px;
  float: left;

}

.footerright{
  clear: none;
  line-height:30px;
  padding-left: 0px;
  width:50%;
  float: right;

}