@import url("../fonts/font-awesome/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic|Open+Sans+Condensed:700");

/* 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;
		vertical-align: baseline;
	}

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

	body {
		-webkit-text-size-adjust: none;
	}

/* Box Model */

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

/* Containers */

	.container {
		margin-left: auto;
		margin-right: auto;
	}

	.container {
		width: 960px;
	}

	@media screen and (min-width: 737px) {

		.container {
			width: 1200px;
		}

	}

	@media screen and (min-width: 737px) and (max-width: 1200px) {

		.container {
			width: 960px;
		}

	}

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

		.container {
			width: 100% !important;
		}

	}

/* Basic */

	body {
		background: #fff;
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		color: #24292e;
		font-size: 11.5pt;
		line-height: 2em;
	}

		body.is-loading * {
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
		}

	input, textarea, select {
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		color: #6b7770;
		font-size: 11.5pt;
		line-height: 2em;
	}

	h1, h2, h3, h4, h5, h6 {
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: #6b7770;
	}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
		text-decoration: none;
		color: inherit;
	}

	h2.major {
		position: relative;
		border-top: solid 5px #e7eae8;
	}

		h2.major span {
			background: #fff;
			position: relative;
			display: inline-block;
		}

	a {
		color: #006376;
		text-decoration: underline;
	}

		a:hover {
			text-decoration: none;
		}

	b, strong {
		font-weight: 700;
		color: #6b7770;
	}

	i, em {
		font-style: italic;
	}

	br.clear {
		clear: both;
	}

	sub {
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}

	sup {
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}

	hr {
		border: 0;
		border-top: solid 2px #E7EAE8;
		margin: 0 0 3em 0;
	}

	blockquote {
		border-left: solid 5px #E7EAE8;
		padding: 1em 0 1em 1.5em;
		font-style: italic;
	}

	p, ul, ol, dl, table {
		margin-bottom: 3em;
	}

/* Section/Article */

	section, article {
		margin-bottom: 6em;
	}

		section > :last-child, section:last-child, article > :last-child, article:last-child {
			margin-bottom: 0;
		}

	header > p {
		display: block;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: #c1cac5;
	}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		-webkit-appearance: none;
		display: inline-block;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		text-decoration: none;
		background: #91C4A5;
		color: #fff;
		border: 0;
		line-height: 1em;
		border-radius: 8px;
		outline: 0;
		cursor: pointer;
		-moz-transition: background-color .2s ease-in-out;
		-webkit-transition: background-color .2s ease-in-out;
		-o-transition: background-color .2s ease-in-out;
		-ms-transition: background-color .2s ease-in-out;
		transition: background-color .2s ease-in-out;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			background: #c1edbb;
		}

		input[type="button"]:active,
		input[type="submit"]:active,
		input[type="reset"]:active,
		button:active,
		.button:active {
			background: #a1cd9b;
		}

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
		button.alt,
		.button.alt {
			background: #c1cac5;
		}

			input[type="button"].alt:hover,
			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			button.alt:hover,
			.button.alt:hover {
				background: #ccd5d0;
			}

			input[type="button"].alt:active,
			input[type="submit"].alt:active,
			input[type="reset"].alt:active,
			button.alt:active,
			.button.alt:active {
				background: #b1bab5;
			}

/* List */

	ul.default {
		list-style: disc;
		padding-left: 1em;
	}

		ul.default li {
			padding-left: 0.5em;
		}

	ul.divided > li {
		border-top: solid 2px #e7eae8;
		padding-top: 2.35em;
		margin-top: 2.35em;
	}

		ul.divided > li:first-child {
			border-top: 0;
			padding-top: 0;
			margin-top: 0;
		}

	ul.actions li {
		display: inline-block;
		margin: 0 0 0 1em;
	}

		ul.actions li:first-child {
			margin-left: 0;
		}

	ul.contact {
		cursor: default;
	}

		ul.contact li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 0.25em 0 0.25em;
			top: 0;
		}

			ul.contact li a {
				-moz-transition: background-color .2s ease-in-out;
				-webkit-transition: background-color .2s ease-in-out;
				-ms-transition: background-color .2s ease-in-out;
				transition: background-color .2s ease-in-out;
				display: block;
				position: relative;
				width: 48px;
				height: 48px;
				border-radius: 6px;
				outline: 0;
				background: #c1cac5;
				text-align: center;
			}

				ul.contact li a:before {
					color: #f2f5f3;
					font-size: 32px;
					line-height: 48px;
				}

			ul.contact li:hover {
				top: -5px;
			}

				ul.contact li:hover a.fa-facebook {
					background-color: #3C5A98;
				}

				ul.contact li:hover a.fa-twitter {
					background-color: #2DAAE4;
				}

				ul.contact li:hover a.fa-dribbble {
					background-color: #C4376B;
				}

				ul.contact li:hover a.fa-linkedin {
					background-color: #006599;
				}

				ul.contact li:hover a.fa-instagram {
					background-color: #2E5E86;
				}

				ul.contact li:hover a.fa-google-plus {
					background-color: #DA2713;
				}

			ul.contact li:active {
				top: 0;
			}

	ul.special {
		cursor: default;
	}

		ul.special li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 1.5em 0 1.5em;
			top: 0;
		}

			ul.special li:hover {
				top: -10px;
			}

				ul.special li:hover a {
					background: #b9d2ce;
				}

		ul.special a {
			-moz-transition: background-color .2s ease-in-out;
			-webkit-transition: background-color .2s ease-in-out;
			-ms-transition: background-color .2s ease-in-out;
			transition: background-color .2s ease-in-out;
			display: block;
			position: relative;
			background: #91C4A5;
			width: 12em;
			height: 12em;
			border-radius: 6em;
			outline: 0;
		}

			ul.special a:before {
				position: absolute;
				width: 128px;
				height: 128px;
				font-size: 96px;
				line-height: 128px;
				left: 50%;
				top: 50%;
				margin-top: -64px;
				margin-left: -64px;
				color: #fff;
				text-align: center;
			}

	ul.meta {
		font-size: 0.85em;
		color: #a1aaa5;
	}

		ul.meta li {
			position: relative;
			display: inline-block;
			margin-left: 1em;
		}

			ul.meta li a {
				color: inherit;
				outline: 0;
			}

			ul.meta li:first-child {
				margin-left: 0;
			}

			ul.meta li:before {
				opacity: 0.5;
				cursor: default;
				margin-right: 0.5em;
			}

	ul.menu li {
		border-left: solid 1px #E7EAE8;
		display: inline-block;
		padding: 0 0 0 0.75em;
		margin: 0 0 0 0.75em;
	}

		ul.menu li:first-child {
			border-left: 0;
			margin-left: 0;
			padding-left: 0;
		}

	ol.default {
		list-style: decimal;
		padding-left: 1.25em;
	}

		ol.default li {
			padding-left: 0.25em;
		}

/* Forms */

	form label {
		display: block;
		margin: 0 0 1em 0;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: #6b7770;
	}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form select,
	form textarea {
		-webkit-appearance: none;
		display: block;
		width: 100%;
		border-radius: 8px;
		border: solid 2px #E7EAE8;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		form input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
			border-color: #a1cd9b;
		}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form select {
		line-height: 3em;
		padding: 0 1em;
	}

	form textarea {
		min-height: 9em;
		padding: 1em;
	}

	form .formerize-placeholder {
		color: #555 !important;
	}

	form ::-webkit-input-placeholder {
		color: #555 !important;
	}

	form :-moz-placeholder {
		color: #555 !important;
	}

	form ::-moz-placeholder {
		color: #555 !important;
	}

	form :-ms-input-placeholder {
		color: #555 !important;
	}

	form ::-moz-focus-inner {
		border: 0;
	}

 /* Contact List */

    .contact-list h3{
        color: rgb(177, 221, 171) !important;
    }

    .contact-list h3:before {
        position: relative;
        display: inline-block;
        color: #fff;
        background: #2f333b url(images/overlay.png);
        border-radius: 1em;
        text-align: center;
    }

    .contact-list.small h3:before {
        font-size: 24px;
        line-height: 45px;
        width: 45px;
        height: 45px;
        margin-right: 1em;
    }

    .contact-list.small p {
        margin: 0 0 0 69px;
    }

/* Tables */

	table {
		width: 100%;
	}

		table.default {
			width: 100%;
		}

			table.default tr {
				border-top: solid 2px #E7EAE8;
			}

				table.default tr:first-child {
					border-top: 0;
				}

			table.default td {
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default th {
				text-align: left;
				padding: 0.5em 1em 0.5em 1em;
				margin: 0 0 1em 0;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				text-transform: uppercase;
				color: #6b7770;
			}

			table.default thead {
				background: #E7EAE8;
				color: #fff;
			}

/* Box */

	.box.highlight {
		text-align: center;
	}

/* Article */

	.article-body ul{
		list-style: inside;
	}

	.article-body ul li > p {
		display: inline;
	}

/* Icons */

	.icon {
		position: relative;
		text-decoration: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.icon > .label {
			display: none;
		}

    #footer .icon:before {
        display: inline-block;
        font-size: 1.25em;
        line-height: 1;
    }

/* Wrappers */

	#banner-wrapper {
		position: relative;
		background-image: url("images/overlay.png"), url("images/overlay.png"), url("images/banner.jpg");
		background-position: top left, top left, center center;
		background-repeat: repeat, repeat, no-repeat;
		background-size: auto, auto, cover;
		z-index: 1;
	}

	#main {
		background: inherit;
	}

	#service-wrapper{
		background: url("images/building.jpg");
		background-size: cover;
	}

	#Service{
		background: rgba(0 ,0 ,0 , 0.4);
	}

	#Service h2, #Service h3,#Service .subtitle{
		color: #EBF4EE;
	}

	#Service .row{
		margin-top: 2em;
	}

	#Service p{
		color: #fff;
	}

	#reference-wrapper {
		background: url("images/library.jpg");
		background-size: cover;
	}

	#Reference{
		background: rgba(255 ,255 ,255 , 0.6);
	}

    #footer-wrapper {
        background: #282b34 url("images/overlay.png");
        color: #eee;
        color: rgba(255, 255, 255, 0.5);
    }

    #footer-wrapper h1, #footer-wrapper h2, #footer-wrapper h3, #footer-wrapper h4, #footer-wrapper h5, #footer-wrapper h6, #footer-wrapper strong, #footer-wrapper b, #footer-wrapper a {
        color: #fff;
    }

    #footer-wrapper hr {
        border-top-color: #333;
        border-top-color: rgba(255, 255, 255, 0.05);
    }

    #footer-wrapper form input[type="text"],
    #footer-wrapper form input[type="email"],
    #footer-wrapper form input[type="password"],
    #footer-wrapper form select,
    #footer-wrapper form textarea {
        background: #ccc;
        box-shadow: none;
    }

    #footer-wrapper form input[type="text"]:focus,
    #footer-wrapper form input[type="email"]:focus,
    #footer-wrapper form input[type="password"]:focus,
    #footer-wrapper form select:focus,
    #footer-wrapper form textarea:focus {
        background: #fff;
    }

    #footer-wrapper input[type="button"],
    #footer-wrapper input[type="submit"],
    #footer-wrapper input[type="reset"],
    #footer-wrapper button,
    #footer-wrapper .button {
        color: #fff;
        box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.5);
    }

    #footer-wrapper input[type="button"]:hover,
    #footer-wrapper input[type="submit"]:hover,
    #footer-wrapper input[type="reset"]:hover,
    #footer-wrapper button:hover,
    #footer-wrapper .button:hover {
        color: #fff;
        box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.65);
    }

    #footer-wrapper input[type="button"]:active,
    #footer-wrapper input[type="submit"]:active,
    #footer-wrapper input[type="reset"]:active,
    #footer-wrapper button:active,
    #footer-wrapper .button:active {
        box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.75);
    }

    #footer-wrapper input[type="button"]:active,
    #footer-wrapper input[type="submit"]:active,
    #footer-wrapper input[type="reset"]:active,
    #footer-wrapper button:active,
    #footer-wrapper .button:active {
        box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.75);
    }

    #footer-wrapper header h2 {
        color: #fff;
        text-align: center;
    }

    #footer-wrapper header p {
        color: inherit;
    }

    #footer-wrapper .feature-list section {
        border-top-color: #333;
        border-top-color: rgba(255, 255, 255, 0.05);
    }

    #footer-wrapper .feature-list h3:before {
        background: #3d4249 url("images/overlay.png");
    }

    #footer-wrapper .qrcode{
        display: block;
        width: 5em;
        height: 5em;
        background: url("images/qrcode.png");
        background-size: cover;
    }

/* Banner */

	#banner {
		position: relative;
		background-color: rgba(21, 28, 23, 0.85);
		background-image: url("images/overlay.png"), url("images/highlight.png");
		background-position: top left, center center;
		background-size: auto, 100% 250%;
		background-repeat: repeat, no-repeat;
		text-align: center;
		margin: 0;
	}

		#banner h2 {
			color: #fff;
		}

		#banner p {
			display: block;
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 700;
			text-transform: uppercase;
			color: #B6CCD1;
		}

		#banner .button {
			-moz-transition: border-color .2s ease-in-out, color .2s ease-in-out;
			-webkit-transition: border-color .2s ease-in-out, color .2s ease-in-out;
			-ms-transition: border-color .2s ease-in-out, color .2s ease-in-out;
			transition: border-color .2s ease-in-out, color .2s ease-in-out;
			color: #b4b7b5;
			background: transparent !important;
			border: solid 4px #575d59;
			border-color: rgba(87, 93, 89, 0.35);
			border-radius: 16px;
		}

			#banner .button:hover {
				color: #e4e7e5;
				border-color: rgba(87, 93, 89, 0.75);
			}

			#banner .button:active {
				color: #fff;
				border-color: #616763;
			}

/* Footer */

	#footer a {
		color: inherit;
	}

	#footer h2.major span {
		background: #f2f5f3;
	}

    #footer header {
        padding-bottom: 0;
    }

    #footer hr {
        margin: 6em 0 6em 0;
    }

/* Copyright */

    #copyright {
        text-align: center;
        color: #B6CCD1;
    }

    #copyright span a {
        color: #B6CCD1;
        text-decoration: none;
    }

    #copyright span a:hover {
        color: #fff;
        text-decoration: underline;
    }

    #copyright ul {
        padding: 0.75em 2em;
        font-size: 0.9em;
        display: inline-block;
        border-radius: 0.35em;
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.25);
    }

    #copyright ul li {
        color: #B6CCD1;
        display: inline-block;
        margin-left: 1em;
        padding-left: 1em;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    #copyright ul li:first-child {
        border-left: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .number-ring{
        color: #fff;
        background: #91C4A5;
        font-size: 36px;
        width: 64px;
        height: 64px;
        line-height: 64px;
        border-radius: 32px;
        display: inline-block;
        margin-right: 10px;
    }


/* Desktop */

	@media screen and (min-width: 737px) {

		/* Basic */

			h1, h2, h3, h4, h5, h6 {
				margin: 0 0 0.5em 0;
			}

			h2 {
				font-size: 1.65em;
			}

				h2.major {
					font-size: 1.65em;
					text-align: center;
					margin: 0 0 3em 0;
				}

					h2.major span {
						top: -0.775em;
						padding: 0 1.5em 0 1.5em;
					}

			h3, h4 {
				font-size: 1.25em;
			}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				font-size: 1.25em;
				padding: 0.85em 1.85em;
			}

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

		/* List */

			ul.actions {
				text-align: center;
				margin-top: 10px;
			}

		/* Box */

			.box.highlight .special {
				margin: 0 0 4em 0;
			}

			.box.highlight h2 {
				font-size: 3em;
				margin: 0 0 0.75em 0;
			}

			.box.highlight header > p {
				font-size: 1.65em;
				margin: 0 0 1.5em 0;
			}

			.box.feature {
				text-align: center;
			}

			.box.post header {
				margin: 0 0 2.5em 0;
			}

			.box.post h3 {
				font-size: 3em;
				margin: 0 0 0.5em 0;
			}

			.box.post header > p {
				font-size: 1.65em;
				margin: 0 0 0.5em 0;
			}

			.box.post ul.meta {
				margin: 0 0 0.5em 0;
			}

			.box.post-summary h3 {
				line-height: 1em;
				margin: 0 0 0.75em 0;
			}

			.box.post-summary .meta {
				margin: 0;
				line-height: 1em;
			}

			.box.page-content header {
				margin: 0 0 2.5em 0;
			}

			.box.page-content h2 {
				font-size: 3em;
				margin: 0 0 0.5em 0;
			}

			.box.page-content header > p {
				font-size: 1.65em;
				margin: 0 0 0.5em 0;
			}

			.box.page-content ul.meta {
				margin: 0 0 0.5em 0;
			}

		/* Sidebar + Content */

			.sidebar {
				padding-top: 0.5em;
			}

				.homepage .sidebar {
					padding-top: 0;
				}

				.sidebar h2.major {
					text-align: left;
					margin: 0 0 1em 0;
				}

					.sidebar h2.major span {
						padding-left: 0;
					}

			.content-left {
				padding-right: 2em;
			}

			.content-right {
				padding-left: 2em;
			}

		/* Wrappers */

			#banner-wrapper {
				padding: 11em 0;
			}

			#main-wrapper {
				border-top-width: 35px;
				border-bottom-width: 10px;
			}

		/* Header */

			#header {
				text-align: center;
				font-size: 2em;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				text-transform: uppercase;
				padding: 5em 0 2em 0;
				background: #fff;
				margin: 0 auto;
			}

				#header .brand {
					position: relative;
					text-align: center;
					border-top: solid 5px #e7eae8;
				}

					#header .brand div {
						background: #fff;
						position: relative;
						display: inline-block;
						padding: 0 1.5em 0 1.5em;
						top: -0.65em;
					}

					#header .brand h1 {
						display: inline;
					}

					#header .brand p {
						display: inline;
						color: #C1CAC5;
					}

		/* Nav */

			#nav{
				background: rgba(255, 255, 255, 0.95) url(images/overlay.png);
				width: 100%;
				height: 3.25em;
				line-height: 3.25em;
				text-align: center;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				text-transform: uppercase;
				cursor: default;
			}

				#nav > ul {
					float: none;
				}

				#nav > ul > li {
					float: none;
					display: inline-block;
					margin: 0 0.5em 0 0.5em;
					top: 0;
					position: relative;
					-moz-transition: top .15s ease-in-out;
					-webkit-transition: top .15s ease-in-out;
					-o-transition: top .15s ease-in-out;
					-ms-transition: top .15s ease-in-out;
					transition: top .15s ease-in-out;
				}

					#nav li a, #nav li span {
						-moz-transition: background-color .075s ease-in-out, color .075s ease-in-out;
						-webkit-transition: background-color .075s ease-in-out, color .075s ease-in-out;
						-ms-transition: background-color .075s ease-in-out, color .075s ease-in-out;
						transition: background-color .075s ease-in-out, color .075s ease-in-out;
						position: relative;
						display: block;
						text-decoration: none;
						color: #6b7770;
						top: -6px;
						padding: 6px 1.5em 0.25em 1.5em;
						border-bottom-left-radius: 6px;
						border-bottom-right-radius: 6px;
						outline: 0;
						line-height: 3.25em;
					}

					#nav > ul > li:hover, #nav > ul > li.active {
						top: 3px;
					}

					#nav > ul > li.current > a {
						background: #91C4A5;
						color: #fff;
					}

		/* Banner */

			#banner {
				padding: 4em 0 3.5em 0;
			}

				#banner h2 {
					font-size: 2.75em;
					margin: 0 0 0.75em 0;
				}

				#banner p {
					font-size: 1.35em;
					margin: 0 0 1.25em 0;
				}

				#banner .button {
					font-size: 1.5em;
				}

		/* Main */

			#main {
				padding: 6em 0 6em 0;
			}

		/* Footer */

		#footer-wrapper {
			background: #282b34 url("images/overlay.png");
			color: #eee;
			color: rgba(255, 255, 255, 0.5);
		}

		#footer-wrapper h1, #footer-wrapper h2, #footer-wrapper h3, #footer-wrapper h4, #footer-wrapper h5, #footer-wrapper h6, #footer-wrapper strong, #footer-wrapper b, #footer-wrapper a {
			color: #fff;
		}

		#footer-wrapper hr {
			border-top-color: #333;
			border-top-color: rgba(255, 255, 255, 0.05);
		}

		#footer-wrapper form input[type="text"],
		#footer-wrapper form input[type="email"],
		#footer-wrapper form input[type="password"],
		#footer-wrapper form select,
		#footer-wrapper form textarea {
			background: #ccc;
			box-shadow: none;
		}

		#footer-wrapper form input[type="text"]:focus,
		#footer-wrapper form input[type="email"]:focus,
		#footer-wrapper form input[type="password"]:focus,
		#footer-wrapper form select:focus,
		#footer-wrapper form textarea:focus {
			background: #fff;
		}

		#footer-wrapper input[type="button"],
		#footer-wrapper input[type="submit"],
		#footer-wrapper input[type="reset"],
		#footer-wrapper button,
		#footer-wrapper .button {
			color: #fff;
			box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.5);
		}

		#footer-wrapper input[type="button"]:hover,
		#footer-wrapper input[type="submit"]:hover,
		#footer-wrapper input[type="reset"]:hover,
		#footer-wrapper button:hover,
		#footer-wrapper .button:hover {
			color: #fff;
			box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.65);
		}

		#footer-wrapper input[type="button"]:active,
		#footer-wrapper input[type="submit"]:active,
		#footer-wrapper input[type="reset"]:active,
		#footer-wrapper button:active,
		#footer-wrapper .button:active {
			box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.75);
		}

		#footer-wrapper input[type="button"].style2:active,
		#footer-wrapper input[type="submit"].style2:active,
		#footer-wrapper input[type="reset"].style2:active,
		#footer-wrapper button.style2:active,
		#footer-wrapper .button.style2:active {
			box-shadow: inset 0px 0px 2px 0px rgba(255, 255, 255, 0.75);
		}

		#footer-wrapper .title {
			background: #282b34 url("images/overlay.png");
			color: #eee;
		}

		#footer-wrapper header.style1 h2 {
			color: #fff;
		}

		#footer-wrapper header.style1 .p {
			color: inherit;
		}

		#footer-wrapper .feature-list section {
			border-top-color: #333;
			border-top-color: rgba(255, 255, 255, 0.05);
		}

		#footer-wrapper .feature-list h3:before {
			background: #3d4249 url("images/overlay.png");
		}

        #footer-wrapper .top-margin {
            margin-top: 10px;
        }

	}

/* Tablet */

	@media screen and (min-width: 737px) and (max-width: 1200px) {

		/* Basic */

			body {
				min-width: 960px;
				font-size: 10.25pt;
				line-height: 1.75em;
			}

			input, textarea, select {
				font-size: 10.25pt;
				line-height: 1.75em;
			}

			h2.major {
				margin: 0 0 2em 0;
			}

				h2.major span {
					top: -0.75em;
					padding: 0 1em 0 1em;
				}

		/* Wrappers */

			#banner-wrapper {
				padding: 6em 0 6em 0;
			}

			#main-wrapper {
				border-top-width: 20px;
				border-bottom-width: 10px;
			}

		/* Header */

			#header {
				padding: 4em 0 1em 0;
			}

		/* Banner */

			#banner {
				padding: 3.5em 0 3em 0;
			}

				#banner h2 {
					margin: 0 0 0.65em 0;
				}

				#banner p {
					margin: 0 0 1em 0;
				}

		/* Main */

			#main {
				padding: 3em 0 2em 0;
			}

				#main > .row {
					padding: 2em 0 2em 0;
				}

		/* Footer */

			#footer {
				text-align: center;
				padding: 4em 0 4em 0;
			}

				#footer > .row {
					padding: 2em 0 2em 0;
				}

			#footer-wrapper h2.major {
				margin: 0 0 1em 0;
			}

	}

/* Mobile */

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

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

			body, input, textarea, select {
				line-height: 1.75em;
				font-size: 10pt;
				letter-spacing: 0;
			}

			h2, h3, h4, h5, h6 {
				font-size: 1.5em;
				margin: 0 0 0.5em 0;
			}

			h2.major {
				text-align: left;
				margin: 0.775em 0 0.75em 0;
			}

				h2.major span {
					top: -0.775em;
					padding: 0 1em 0 0;
				}

			h3 {
				font-size: 1.25em;
			}

		/* Section/Article */

			section, article {
				clear: both;
				margin: 0 0 2.5em 0 !important;
			}

			header p {
				font-size: 1.5em;
				line-height: 1.5em;
			}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				font-size: 1.5em;
				width: 100%;
				padding: 0.75em 0 0.75em 0;
				margin-top: 0.5em;
				text-align: center;
			}

		/* List */

			ul.special li {
				margin: 0.5em;
			}

				ul.special li:hover {
					top: 0;
				}

			ul.special a {
				width: 8em;
				height: 8em;
				border-radius: 4.75em;
			}

				ul.special a:before {
					font-size: 48px;
				}

			ul.contact li {
				margin: 0 0.25em 0.35em 0;
				top: 0 !important;
			}

			ul.actions li {
				display: block;
				padding: 0;
				margin: 0.75em 0 0 0;
			}

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

			ul.menu li {
				display: block;
				border: 0 !important;
				padding: 0 !important;
				margin: 0 !important;
			}

		/* Box */

			.box.highlight h2 {
				font-size: 2.25em;
				line-height: 1.25em;
				margin: 0 0 0.5em 0;
			}

			.box.highlight header > p {
				margin: 0 0 0.75em 0;
			}

			.box.highlight br {
				display: none;
			}

			.box.post-summary {
				margin: 0 !important;
			}

				.box.post-summary h3 {
					font-size: 1.25em;
				}

			.box.post h3 {
				font-size: 2.25em;
				line-height: 1.25em;
				margin: 0 0 0.5em 0;
			}

			.box.post header > p {
				margin: 0 0 0.75em 0;
			}

			.box.post ul.meta {
				margin: 0 0 0.5em 0;
			}

			.box.post header {
				margin: 0 0 3em 0;
			}

			.box.page-content h2 {
				font-size: 2.25em;
				line-height: 1.25em;
				margin: 0 0 0.5em 0;
			}

			.box.page-content header > p {
				margin: 0 0 0.75em 0;
			}

			.box.page-content ul.meta {
				margin: 0 0 0.5em 0;
			}

			.box.page-content header {
				margin: 0 0 3em 0;
			}

		/* Sidebar + Content */

			.sidebar {
				border-top: solid 2px #e7eae8;
				padding-top: 5em;
				margin-top: 5em;
				border-bottom: solid 2px #e7eae8;
				padding-bottom: 5em;
			}

				.sidebar > section {
					margin: 0 0 5em 0 !important;
				}

					.sidebar > section:last-child {
						margin: 0 !important;
					}

			.content {
				padding-top: 3em;
			}

				.homepage .content {
					padding-top: 0;
				}

		/* Wrappers */

			#banner-wrapper {
				padding: 9em 0 5em 0;
			}

			#main-wrapper {
				border-top-width: 0px;
				border-bottom-width: 5px;
			}

				.homepage #main-wrapper {
					border-top-width: 15px;
				}

		/* Header */

			#header {
				display: none;
			}

		/* Nav */

			#nav {
				display: none;
			}

		/* Banner */

			#banner {
				padding: 2.5em 20px;
				margin: 0 !important;
			}

				#banner h2 {
					font-size: 2.25em;
					line-height: 1.25em;
					margin: 0 0 0.5em 0;
				}

				#banner p {
					margin: 0 0 0.5em 0;
				}

		/* Main */

			#main {
				padding: 1em 20px 1em 20px;
			}

				#main > .row {
					padding: 2em 0 2em 0;
				}

		/* Footer */

			#footer-wrapper .col-sm-12 > input {
				margin-bottom: 10px;
			}

			#footer-wrapper .actions {
				margin: 0 15px;
			}

		/* Copyright */

			#copyright {
				width: 100%;
				display: block;
			}

				#copyright .menu li {
					line-height: inherit;
				}

		/* Mobile nav */

		.mobile-toggle .toggle {
			position: absolute;
			right: 0;
			top: 0;
			width: 44px;
			height: 44px;
			z-index: 1001;
		}

		.mobile-toggle .toggle:before {
			display: inline-block;
			font-family: FontAwesome;
			text-decoration: none;
			font-style: normal;
			font-weight: normal;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			position: absolute;
			right: 0;
			top: 0;
			background: transparent;
			width: 44px;
			height: 44px;
			content: '\f0c9';
			color: #91C4A5;
			text-align: center;
			line-height: 44px;
			font-size: 20px;
		}

		#mobile-nav {
			height: 100%;
			position: absolute;
			left: 0;
			right: 0;
			overflow: hidden;
		}

		#mobile-nav nav {
			overflow: auto;
		}

	}