/*!
Author: Adam Hetherington
Description: Online scheduling software & booking system for Small Businesses.
Version: 1.0.0

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
button,
input,
select,
optgroup,
textarea {
	color: #999999;
}

.area {
	display: none;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: "Noto Sans", sans-serif;
	font-weight: 700;
	color: #000;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

mark, ins {
	text-decoration: none;
}

big {
	font-size: 125%;
}

.center {
	text-align: center;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 0 0;
}

dl {
	margin: .5em 0;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	color: #fff;
	background: linear-gradient(to left, #eb8b69, #ec6d9f);
	padding: .5em 1.4em;
	border-radius: 4px;
	display: inline-block;
	transition: all .5s linear;
}

button a, button a:hover,
input[type="button"] a,
input[type="button"] a:hover,
input[type="reset"] a,
input[type="reset"] a:hover,
input[type="submit"] a,
input[type="submit"] a:hover {
	color: #fff;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	transition: all .5s linear;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #3e3e3e;
}

#operations {
	margin-top: 1em;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #3e3e3e;
	border: 1px solid #999999;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #999999;
}

select {
	border: 1px solid #999999;
}

textarea {
	width: 100%;
}

.field-wrapper {
	text-align: left;
	margin: 0 auto;
	padding: 1em 3em;
}

.field-wrapper label {
	display: block;
	margin-bottom: .5em;
	font-weight: 600;
}

.field-wrapper input {
	width: 100%;
}

.admin-edit input[type="text"],
.admin-edit input[type="password"] {
	width: 100%;
}

.admin-edit .pw-guide {
	font-size: .6em;
}

.form-label {
	margin-bottom: .5em;
}

.form-privacy {
	font-size: .8em;
	margin: 2em 0;
}

.form-field {
	display: inline-block;
	width: 49%;
	font-size: .8em;
}

.form-field input {
	width: 80%;
	padding: .5em;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #eb8b69;
	text-decoration: none;
}

a:visited {
	color: #eb8b69;
}

a:hover, a:focus, a:active {
	color: #eb8b69;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

.button {
	color: #fff;
	background: linear-gradient(to left, #eb8b69, #ec6d9f);
	padding: .5em 1.4em;
	border-radius: 4px;
	display: inline-block;
}

.button a, .button a:hover {
	color: #fff;
}

.button-outline {
	color: #eb8b69;
	background: #fff;
	padding: .5em 1.4em;
	border-radius: 4px;
	border: 1px solid #eb8b69;
	display: inline-block;
}

.button-outline a, .button-outline a:hover {
	color: #eb8b69;
}

#request-button {
	cursor: pointer;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: black;
	/* Fallback color */
	background-color: rgba(230, 230, 230, 0.8);
	/* Black w/ opacity */
}

@media screen and (max-width: 600px) {
	.modal {
		padding-top: 2em;
	}
}

/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* The Close Button */
.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-heading {
	font-size: 2em;
	font-weight: 600;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Global Layouts
--------------------------------------------------------------*/
.container-l {
	padding: 0 1em;
	width: 100%;
	max-width: 1140px;
	margin: auto;
}

.container-m {
	padding: 0 1em;
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.container-s {
	padding: 0 1em;
	width: 100%;
	max-width: 900px;
	margin: auto;
}

.flex {
	display: -ms-flexbox;
	display: flex;
}

.flex-s-b {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}

.panel {
	padding-bottom: 80px;
}

.panel .panel-head {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 80px;
}

@media screen and (max-width: 600px) {
	.panel .panel-head {
		padding: 40px 0;
	}
}

.panel .panel-head .icon {
	width: 100%;
	max-width: 100px;
	height: auto;
}

@media screen and (max-width: 600px) {
	.panel .panel-head .icon {
		max-width: 60px;
	}
}

.panel .panel-head h2, .panel .panel-head h3, .panel .panel-head h4 {
	font-size: 2.2em;
	margin-bottom: .5em;
}

@media screen and (max-width: 600px) {
	.panel .panel-head h2, .panel .panel-head h3, .panel .panel-head h4 {
		font-size: 1.4em;
	}
}

.panel .panel-head .font-light {
	font-weight: 300;
}

.panel .panel-head p {
	font-size: 18px;
	max-width: 600px;
	margin: auto;
}

@media screen and (max-width: 600px) {
	.panel .panel-head p {
		font-size: 1em;
		max-width: 90%;
	}
}

.panel.home {
	height: 100%;
	min-height: 400px;
}

@media screen and (max-width: 600px) {
	.panel.home {
		padding-bottom: 1em;
	}
}

.panel.home .content {
	margin: 2em auto;
}

@media screen and (max-width: 600px) {
	.panel.home .content {
		margin: 1em auto;
	}
}

.panel.home .content .text {
	width: 40%;
	display: inline-block;
	padding-right: 1em;
}

@media screen and (max-width: 600px) {
	.panel.home .content .text {
		width: 100%;
		display: block;
		text-align: center;
	}
}

.panel.home .content .text h1 {
	font-size: 2.4em;
}

@media screen and (max-width: 600px) {
	.panel.home .content .text h1 {
		font-size: 1.4em;
	}
}

.panel.home .content .text p {
	font-size: 18px;
}

@media screen and (max-width: 600px) {
	.panel.home .content .text p {
		font-size: 1em;
	}
}

.panel.home .content .image {
	float: right;
	width: 60%;
	display: inline-block;
}

@media screen and (max-width: 600px) {
	.panel.home .content .image {
		width: 100%;
		display: block;
	}
}

.panel.features {
	background: #f3f3f3;
	padding-bottom: 4em;
}

.panel.features .features {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.panel.features .features .feature {
	width: 30%;
	background: #fff;
	padding: 1em;
	margin: 1em 0;
	text-align: center;
	border-radius: 4px;
}

.panel.features .features .feature ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin: auto;
	padding-bottom: 2em;
}

.panel.features .features .feature.full {
	width: 100%;
	text-align: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	margin-bottom: 3em;
}

@media screen and (max-width: 600px) {
	.panel.features .features .feature.full {
		display: block;
		text-align: center;
		width: 90%;
		margin-bottom: 1em;
	}
}

.panel.features .features .feature.full .text {
	width: 80%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}

@media screen and (max-width: 600px) {
	.panel.features .features .feature.full .text {
		display: block;
		width: 100%;
	}
}

.panel.features .features .feature.full .text .desc {
	padding: 0 2em;
	width: 40%;
}

.panel.features .features .feature.full .text .desc h4 {
	margin-top: 1em;
}

@media screen and (max-width: 600px) {
	.panel.features .features .feature.full .text .desc {
		width: 100%;
	}
}

.panel.features .features .feature.full .text .features {
	width: 60%;
	padding: 0 2em;
}

@media screen and (max-width: 600px) {
	.panel.features .features .feature.full .text .features {
		width: 100%;
		width: 100%;
		padding: 0;
		font-size: .8em;
	}
}

.panel.features .features .feature.full .text .features .heading {
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 1em;
	font-weight: 600;
}

@media screen and (max-width: 600px) {
	.panel.features .features .feature.full .text .features .heading {
		border: 0;
		width: 100%;
	}
}

.panel.features .features .feature.full .text .features ul {
	margin: 0;
	padding-bottom: 0;
}

@media screen and (max-width: 600px) {
	.panel.features .features .feature {
		width: 90%;
		margin: 1em auto;
	}
}

.panel.features .features .feature .icon {
	width: 100%;
	max-width: 200px;
	margin: auto;
}

.panel.pricing {
	background: #999999;
}

@media screen and (max-width: 600px) {
	.panel.pricing {
		padding-bottom: 0;
	}
	.panel.pricing .container-m {
		padding: 0;
	}
}

.panel.pricing .licence-content {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content {
		display: block;
	}
}

.panel.pricing .licence-content .sidebar {
	width: 30%;
	margin-right: 2em;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .sidebar {
		width: 100%;
	}
}

.panel.pricing .licence-content .sidebar .licence-type {
	background: #fff;
	margin-bottom: 1em;
	padding: 1em;
	border-radius: 4px;
	cursor: pointer;
	transition: .2s linear;
	border: 2px solid #fff;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .sidebar .licence-type {
		margin: 1em;
	}
}

.panel.pricing .licence-content .sidebar .licence-type:hover {
	background: #f3f3f3;
	transition: .2s linear;
	border: 2px solid #92fd9d;
}

.panel.pricing .licence-content .sidebar .licence-type .bullet {
	margin-right: 1em;
	position: relative;
	height: 20px;
	width: 20px;
	min-width: 20px;
	min-height: 20px;
	background-color: white;
	margin-bottom: 6px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: #cbd6e2;
	-o-border-image: initial;
	   border-image: initial;
	transition: border-color 0.3s ease 0s;
}

.panel.pricing .licence-content .sidebar .licence-type .bullet.selected {
	transition: border-color 0.3s ease 0s;
}

.panel.pricing .licence-content .sidebar .licence-type .bullet.selected:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 1;
	height: 10px;
	width: 10px;
	background-color: #92fd9d;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	transition: opacity 0.3s ease 0s;
}

.panel.pricing .licence-content .sidebar .licence-type .title {
	font-weight: 600;
}

.panel.pricing .licence-content .sidebar .licence-type div {
	padding-top: 1em;
}

.panel.pricing .licence-content .licence-type-info {
	padding: 2em;
	width: 70%;
	background: #fff;
	border-radius: 4px;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .licence-type-info {
		width: 100%;
	}
}

.panel.pricing .licence-content .licence-type-info .Heading .type {
	font-weight: 600;
	font-size: 1.4em;
	margin-bottom: 1em;
}

.panel.pricing .licence-content .licence-type-info .Heading .description {
	margin-bottom: 1em;
}

.panel.pricing .licence-content .licence-type-info .sub-head {
	font-size: 1.2em;
	margin: 2em 0;
}

.panel.pricing .licence-content .licence-type-info .feature-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	font-size: .8em;
	padding-bottom: 2em;
	border-bottom: 1px solid #999999;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .licence-type-info .feature-list {
		font-size: .5em;
	}
}

.panel.pricing .licence-content .licence-type-info .feature-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.panel.pricing .licence-content .licence-type-info .feature-list ul li {
	margin: 1em 0;
}

.panel.pricing .licence-content .licence-type-info .feature-list ul li .bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 1em;
	background-color: red;
	border-radius: 50%;
}

.panel.pricing .licence-content .licence-type-info .feature-list ul li .prof-lic {
	background-color: #92fd9d;
}

.panel.pricing .licence-content .licence-type-info .add-ons {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .licence-type-info .add-ons {
		display: block;
	}
}

.panel.pricing .licence-content .licence-type-info .add-ons .item {
	width: 30%;
	border-radius: 4px;
	padding: 1em;
	text-align: center;
	border: 2px solid #999999;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .licence-type-info .add-ons .item {
		width: 100%;
		margin: 1em 0;
	}
}

.panel.pricing .licence-content .licence-type-info .add-ons .item .title {
	font-size: .8em;
	font-weight: 600;
	margin-bottom: 1em;
}

.panel.pricing .licence-content .licence-type-info .add-ons .item .description {
	font-size: .8em;
}

.panel.pricing .licence-content .licence-type-info .footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	margin: 2em 0;
}

@media screen and (max-width: 600px) {
	.panel.pricing .licence-content .licence-type-info .footer {
		display: block;
		text-align: center;
	}
	.panel.pricing .licence-content .licence-type-info .footer .text {
		padding-bottom: 1em;
	}
}

@media screen and (max-width: 600px) {
	.panel.faq {
		background: #999999;
		color: #fff;
	}
	.panel.faq h4 {
		color: #fff;
	}
}

.panel.faq .questions {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}

@media screen and (max-width: 600px) {
	.panel.faq .questions {
		display: block;
	}
}

.panel.faq .questions .item {
	padding: 0 1em;
	width: 100%;
}

@media screen and (max-width: 600px) {
	.panel.faq .questions .item {
		padding: 1em;
	}
}

.panel.faq .questions .item .question {
	font-weight: 600;
	font-size: 1.2;
}

@media screen and (max-width: 600px) {
	.panel.faq .questions .item .question {
		font-size: 1.3em;
	}
}

.contact-page .panel.home {
	padding-top: 80px;
}

.box-shadow {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.white-text {
	color: #fff;
}

.tel-number {
	color: #000000;
	font-weight: 600;
}

.tel-number:hover {
	color: #ec6d9f;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
#header-call-to-action {
	background: #e6e6e6;
	padding: 1em 0;
	position: fixed;
	width: 100%;
	border-bottom: 1px solid #999999;
	z-index: 100;
}

#header-call-to-action .button-outline {
	margin-right: 1em;
}

@media screen and (max-width: 600px) {
	#header-call-to-action .button-outline {
		margin-right: 0;
		font-size: .8em;
	}
}

@media screen and (max-width: 600px) {
	#header-call-to-action .login {
		display: none;
	}
}

#header-menu {
	padding: 100px 0 2em 0;
	background: #f3f3f3;
}

@media screen and (max-width: 600px) {
	#header-menu {
		background: #fff;
	}
}

#header-menu .container-l {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
}

@media screen and (max-width: 600px) {
	#header-menu .container-l {
		-ms-flex-pack: center;
		    justify-content: center;
	}
}

#header-menu .logo {
	width: 100%;
	max-width: 200px;
	height: auto;
}

@media screen and (max-width: 600px) {
	#header-menu .menu {
		display: none;
	}
}

#header-menu .menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#header-menu .menu ul li {
	float: left;
	margin-left: 2em;
	font-weight: 600;
}

#header-menu .menu ul li a,
#header-menu .menu ul li a:visited {
	color: #999999;
}

#header-menu .menu ul li a:hover {
	color: #000;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer {
	background: #e6e6e6;
}

#footer-call-to-action {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	padding: 60px 1em;
	border-bottom: 1px solid #999999;
}

@media screen and (max-width: 600px) {
	#footer-call-to-action {
		display: block;
		background: linear-gradient(to top, #92fd9d, #20d3fc);
		color: #fff;
	}
}

#footer-call-to-action .text {
	font-size: 2em;
	font-weight: 600;
}

@media screen and (max-width: 600px) {
	#footer-call-to-action .text {
		font-size: 1.4em;
		text-align: center;
		margin-bottom: 1em;
	}
}

@media screen and (max-width: 600px) {
	#footer-call-to-action .call-to-action {
		font-size: 1.4em;
		text-align: center;
	}
}

#footer-info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	padding: 60px 1em 10px;
}

@media screen and (max-width: 600px) {
	#footer-info {
		padding-top: 1em;
		display: block;
		text-align: center;
	}
}

#footer-info a, #footer-info a:visited {
	color: #000;
}

#footer-info a:hover {
	color: #000;
}

#footer-info .logo {
	width: 100%;
	max-width: 200px;
	height: auto;
}

@media screen and (max-width: 600px) {
	#footer-info .links {
		margin-top: 2em;
	}
}

#footer-info .links a {
	padding-left: 1em;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/*# sourceMappingURL=pub/sass/maps/style.css.map */
