<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://unpkg.com/flickity@2/dist/flickity.min.css');

/*
QS Black: #192026

QS Grey: #faf9fa
QS Grey Low: #888b8d
QS Grey High: white

QS Green: #7ac735
QS Green High: #96e350
QS Green Low: #419000
*/

html,
body {
  box-sizing: border-box;
  padding: 0;
	margin: 0;
	overflow-x: hidden;
	-webkit-text-size-adjust: none;
	letter-spacing:normal;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
	background-color: white;	
	font-family: 'Quicksand', Helvetica, Arial, sans-serif;
	font-weight: 400;
	color: #192026;
	margin: 0 auto;
	line-height: 1.4em;
}

h1 {
	font-size: 50px;
	font-weight: 700;
	line-height: normal;
	letter-spacing:normal;
	text-align: center;
	margin: 0;
	margin-bottom: 20px;
	margin-top: 100px;
}

h2 {
	font-size: 40px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0;
}

h3 {
	font-size: 16px;
	font-weight: 500;
}

h4 {
	font-weight: 700;
	font-size: 17px;
	letter-spacing:normal;
	text-align: center;
	margin: 0;
	margin-top: 30px;
}

p {
	font-size: 16px;
	line-height: 27px;
	padding-top: 16px;
	margin: 0;
	-webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}

li {
	font-size: 13px;
	letter-spacing: normal;
	margin-bottom: 10px;
}

a { 
	text-decoration: none;
	color: #192026;
	-webkit-transition: all 100ms ease-out;
	-moz-transition: all 100ms ease-out;
	-o-transition: all 100ms ease-out;
	transition: all 100ms ease-out;
}

a:hover {
	color: #7ac735;
}

a:active,
a:link:active {
	color: #419000;
}

a img {
	border: none;
}

.row {
	max-width: 1220px;
	margin: 0 auto;
}

.subtitle {
	font-size: 20px;
	margin-bottom: 45px;
	text-align: center;
	padding: 0 50px;
}

.container-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 0 100px 0;
	align-items: center;
}

.container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0 5%;
}

.button-primary {
display: inline-block;
  font-size: 16px;
  font-weight: 700;
  max-width: 240px;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  background-color: #7ac735;
  border: 0;
  border-radius: 5px;
  padding: 18px 24px;
  margin-top: 30px;
  transition: .3s background-color ease-in-out;
  -webkit-font-smoothing: antialiased;
}

a.button-primary {
	color: white;
}

.button-primary:hover {
	background-color: #96e350;
  transition: .3s background-color ease-in-out;
}

.button-primary:active {
	background-color: #419000;
  transition: .3s background-color ease-in-out;
}

a.button-primary:active {
	color: white;
}


/* NAVIGATION */
.navbar-sticky {
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
	z-index: 30;
}

.navbar {
  display: flex;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 0 40px;
}

.mobile-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.navbar-logo {
  align-self: center;
}

.navbar-logo img {
  height: 30px;
}

.navbar-link {
  padding: 29px 20px;
}

.navbar-link:last-child {
	padding-right: 0;
}

.navbar-items {
  display: flex;
}

.navbar-link:last-child a {
	color: #7ac735;
	padding: 10px 20px;
	border-radius: 3px;
  border: 2px solid #7ac735;
}

.navbar-link:last-child a:hover {
	color: white;
	background-color: #7ac735;
	transition: .5s ease-in-out;
}

.navbar-link:last-child a:active {
	color: white;
	background-color: #419000;
	transition: .5s ease-in-out;
	border-color: #419000;
}

.navbar-items_right {
  margin-left:auto;
}

.navbar-toggle {
  display: none;
}

/* Navigation - Burger Bars */
#burgerbars {
  width: 20px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#burgerbars span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #192026;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#burgerbars span:nth-child(1) {
  top: 0px;
}

#burgerbars span:nth-child(2),#burgerbars span:nth-child(3) {
  top: 6px;
}

#burgerbars span:nth-child(4) {
  top: 12px;
}

#burgerbars.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}

#burgerbars.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #192026;
}

#burgerbars.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #192026;
}

#burgerbars.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* BIG FOOTER */
.footer-global {
	display: block;
	padding: 80px 20px;
}

.bigfoot-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
  padding: 15px 0;
	font-size: 14px;
	background-color: white;
	border-top: 1px solid black;
}

.link-section,
.link-section ul {
  margin: 0;
  padding: 0;
}

.link-section li {
  font-size: inherit;
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin: 20px 0;
}

.link-section-title {
  line-height: normal;
  text-transform: uppercase;
  font-weight: 700;
}

.link-section li a {
  font-weight: 400;
}

/* FOOTER */
footer {
	display: flex;
	flex-direction: column;
}

.footer-icons {
	display: inherit;
	justify-content: space-between;
	border-bottom: 1px solid #c3c5c6;
}

.footer-apps,
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-legal {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-top: 35px;
	color: #888b8d;
	font-size: 12px;
}

p.footer-legal-copyright {
	color: inherit;
	font-size: inherit;
	padding-top: 0;
}

.fa-heart-footer {
	font-size: inherit;
	padding: 0;
	color: #c72e2e;
}

ul.footer-legal-links {
	list-style-type: none;
	float: left;
	margin: 0;
	padding: 0;
}

.footer-legal-links li {
	display: inline-block;
	padding-left: 20px;
	font-size: inherit;
}

.footer-legal-links li a {
	font-size: inherit;
	color: inherit;
}

.footer-legal-links li a:hover {
	color: #7ac735;
}

.footer-icons a {
  font-size: 20px;
  width: 20px;
  text-align: center;
	margin: 35px 10px;
}

svg:hover {
  fill: red;
}

/* ---------------------------- ADD CONTENT CSS BELOW HERE  ---------------------------- */

/* SIGN-UP PAGE */
.navbar-signup {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 960px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 50px;
}

.bg-lightgrey {
	background-color:#f9f9f9;
}

.bg-white {
	background-color:white;
}

.container-form {
	display: flex;
	max-width: 960px;
	margin: 0 auto;
	margin: -60px 0 -100px 0;
	border: 1px solid #ccc;
}

.signup-page-title {
	font-size: 36px;
	line-height: normal;
	text-align: left;
	font-weight: 500;
	margin-bottom: 10px;
	margin-top: 0;
}

.container-form-subtitle {
	font-size: 16px;
	line-height: normal;
  	font-weight: 400;
}

.container-form-left {
	max-width: 50%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	padding: 30px 85px 60px 85px;
}

.navbar-signup-v101 {
	justify-content: center;
	max-width: auto;
	padding-top: 50px;
}

.container-form-v101 {
	max-width: 400px !important;
}

.container-form-left-v101 {
	max-width: 100% !important;
	padding: 30px 30px 60px 30px;
}

.container-form-right {
	max-width: 50%;
	display: flex;
	flex-direction: column;
	flex-wrap: no-wrap;
	background-color: #f7f7f7;
}

.container-form-right-text {
	text-align: left;
	padding: 30px 40px;
}

form {
	margin-top: 20px;
}

.form-item {
	margin-bottom: 10px;
}

.form-item label {
	font-size: 13px;
	font-weight: 500;
	list-style-type: none;
	color: #666;
	margin: 0;
	margin-bottom: 4px;
	display: block;
}

input {
	outline: none;
	padding: 10px;
	border: 1px solid #c7c7c7;
	width: 100%;
	font-size: 14px;
	text-align: left;
	-webkit-transition: all 100ms ease-out;
	-moz-transition: all 100ms ease-out;
	-o-transition: all 100ms ease-out;
	transition: all 100ms ease-out;
	border-radius: 2px;
}

input:focus {
	border-color: #888b8d;
}

input::placeholder {
	opacity: .3;
}

.fa-spinner {
	display: none;
}

input.submit,
.button-submit {
	font-family: 'Quicksand', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 23px;
	color: #FFF;
	text-align: center;
	display: block;
	cursor: pointer;
	background-color: #7ac735;
	border: none;
	margin-top: 20px;
	padding: 10px;
	width: 100%;
	border-radius: 2px;
}

input.submit:hover,
.button-submit:hover {
	background-color: #96e350;
}

input.submit:active,
.button-submit:active {
	background-color: #419000;
}

.form-abbr-input {
	max-width: 130px;
	display: inline-block;
}

.form-abbr-name{
	font-size: 13px;
	line-height: normal;
	text-align: left;
}

.form-abbr-explain {
	line-height: normal;
	font-size: 13px;
	text-align: left;
}

.form-agreement {
	font-size: 11px;
	line-height: 16px;
}

.form-agreement a {
	color: #0077C5;
}
	
#schoolNameError,#contactPersonError,#emailAddressError,#emailAddressInvalid,#phoneNumberError,
#phoneNumberInvalid,#userPasswordError,#userPasswordLengthError,#confirmPasswordError,#confirmPasswordMismatch,
#schoolCodeError,#schoolCodeInvalid,#couponCodeError,.error
{
	display:none;
	font-size: 12px;
	color: #FD5653;
	margin: 2px 0;
}

.fieldError {
	border-color: #FD5653;
}

.error-overview {
    margin: 0 auto;
}

.form-item,
.form-agreement,
input {
	transition: all 100ms ease-out;
}
/* END OF SIGN-UP PAGE */

/* FEATURES PAGE */
.container-wrap.appstore {
	padding-bottom: 0;
}

.appstore h2,
.appstore .subtitle {
	padding: 20px;
} 

.item {
	max-width: 160px;
	margin: 20px 10px;
	z-index: -1;
	text-align: center;
}

.item img {
	max-height: 50px;
}

.item h2 {
	font-size: 14px;
	margin-top: 5px;
	line-height: 1.1rem !important;
	padding-bottom: 0.3rem !important;
}

.item h4 {
	font-size: 14px;
	margin-top: 5px;
}

.item p {
	font-size: 13px;
	margin-top: 10px;
	line-height: 18px;
	padding: 0 5px;
}

.item-features {
	max-width: 200px;
}

.item-features img {
	max-height: initial;
	max-width: 200px;
}
/* END FEATURE PAGE */

/* FEATURES HIGHLIGHT PAGE */
.hero-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin: 80px auto 100px auto;
	padding: 0 24px;
}

.hero-container-subtitle {
	font-size: 20px;
	margin-bottom: 45px;
	text-align: center;
	padding: 0 50px;
}

.text-color-blue {
	color: #00bcfe;
}

.text-color-red {
	color: #f37f64;
}

.text-color-green {
	color: #7ac735;
}

.text-color-purple {
	color: #8170af;
}

.row {
	max-width: 1050px;
	margin: 0 auto;
}

.container-highlight {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 100px;
	margin-bottom: 150px;
	padding: 0 24px;
}

.container-reverse {
	flex-direction: row-reverse;
}

.container-highlight-copy {
	width: 45%;
}

.container-highlight-img {
	width:50%;
	object-fit:contain;
}

.container-center {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 150px;
	margin-bottom: 100px;
	padding: 0 24px;
}

.container-features-copy {
	max-width: 660px;
	text-align: center;
	align-self: center;
}

.container-features-board {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 25px;
}

.item-wrap {
	margin: 16px;
	text-align: center;
}

.item-wrap-name {
	padding: 16px;
}

.button-features {
	color: #7ac735;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 3px;
  border: 2px solid #7ac735;
  max-width: 240px;
  margin: 30px auto;
}

.button-features:hover {
	color: white;
	background-color: #7ac735;
	transition: .5s ease-in-out;
}

.button-features:active {
	color: white;
	background-color: #419000;
	transition: .5s ease-in-out;
	border-color: #419000;
}
/* END FEATURES HIGHLIGHT PAGE */

/* FINAL CALLOUT */
.callout-wrap {
	text-align: center;
}


/* ================================= RESPONSIVE - @media &lt;1024px ================================= */
@media only screen and (max-width : 1024px) {
	/* NAVIGATION */
	.navbar,
	.navbar-items {
    flex-direction: column;
  }
  
  .navbar-items {
    display:none;
    align-items: flex-start;
  }
  
  .navbar-items_right .navbar-link {
    width: 100%;
    text-align: left;
		padding: 30px 0;
  }
  
  .navbar-items_right {
    margin-left:0;
  }
  
  .navbar-toggle_show {
    display: flex;
  }
  
  .navbar-toggle {
    display: flex;
		padding: 27px 0;
    cursor: pointer;
   }
	
	.navbar-link {
		margin: 0;
		font-size: 24px;
		font-weight: 500;
		text-transform: none;
	}
	
	.navbar-link:last-child a {
		padding: 30px 0;
		border: none;
	}

	.navbar-link:last-child a:hover {
		color: #96e350;
		background: none;
	}
	
	.navbar-link:last-child a:active {
		color: #419000;
		background: none;
		border: none;
	}

	/* FOOTER */
	footer,
	.footer-legal,
	.footer-icons {
		justify-content: center;
	}
	
	.footer-legal {
		flex-direction: column;
	}
	
	.footer-legal-copyright {
		margin-bottom: 20px;
		display: flex;
		justify-content: center;
	}
	
	ul.footer-legal-links {
		float: none;
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	
	/* SIGN UP PAGE */
	.container-form-left {
		padding: 30px 40px 60px 40px;
	}
}

/* ================================= RESPONSIVE - @media &lt;768px ================================= */
@media screen and (max-width: 768px) {
	/* BIG FOOTER */
	.bigfoot-container {
		font-size: 12px;
	}

  /* FOOTER */
	.footer-global {
		margin-top: 100px;
	}
	
	/* SIGN UP PAGE */
	.navbar-signup {
		justify-content: center;
	}
	
	.container-form {
		border: 0;
	}
	
	.container-form-page-title {
		max-width: 100%;
	}
	
	.container-form-right {
		display: none;
	}
	
	.container-form-left {
		max-width: 450px;
	}

	/* FEATURES PAGE */
	.container:after {
		content: normal;
		flex: 0 0 auto;
	}
	/* END FEATURES PAGE */

	/* FEATURES HIGHLIGHT PAGE */
	.container-highlight-copy {
		width: 100%;
		margin-bottom: 50px;
	}
	
	.container-highlight-img {
		width: 100%;
	}
}


/* ================================= RESPONSIVE - @media &lt;600px ================================= */
@media screen and (max-width: 600px) {
	h2 {
		font-size: 25px;
		padding: 0;
		margin: 20px 0;
	}

	h4 {
	  margin-top: 10px;
	}
	
	.subtitle {
		padding: 0 10%;
	}
	
	/* NAVIGATION */
	.navbar {
	  padding: 0 20px;
	}
	
	/* BIG FOOTER */
	.bigfoot-container {
		font-size: 14px;
		flex-flow: column wrap;
		justify-content: center;
		padding: 0 5%;
	}
	
	/* FOOTER */
  .footer-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-apps,
  .footer-social {
    justify-content: center;
  }

	.footer-legal-copyright {
		display: block;
		margin: 0 auto;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.footer-legal-madein {
		display: block;
	}
	
	ul.footer-legal-links {
		display: block;
		text-align: center;
	}
	
	.footer-legal-links li {
		display: block;
		padding: 0;
	}
	
	/* SIGN UP PAGE */
	.container-form-subtitle {
		text-align: center;
	}

	.signup-page-title {
		text-align: center;
	}

	/* FEATURES HIGHLIGHT PAGE */
	.hero-container-subtitle {
		padding: 0;
	}
}


/* ================================= RESPONSIVE - @media &lt;414px ================================= */
@media screen and (max-width: 414px) {
	.container-highlight-copy {
		margin-bottom: 0;
	}

  /* FOOTER */
	ul.footer-legal-links {
		display: block;
	}
	
	.footer-legal-links li {
		display: block;
		padding: 0;
	}
}


/* ================================= RESPONSIVE - @media &lt;360px ================================= */
@media screen and (max-width: 359px) {
	/* SIGN UP PAGE*/
	.form-abbr-input {
		max-width: 80px;
	}
}







</pre></body></html>