<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Button hover animations */

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}


/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: rgb(44, 62, 80);
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* End of button hover animations */
#section-show-btn {
        display: inline-block;
}

#counting-text {
        display: none;
}
#numbers-text {
    display: none;
}
#adding-text {
    display: none;
}

@media (min-width: 1601px) {
    #counting-text {
        display: block;
    }
    #numbers-text {
        display: block;
    }
    #adding-text {
        display: block;
    }
    #section-show-btn {
        display: none;
    }
}

.bg-orange {
    color: #fff;
    background: rgb(254, 95, 85);
}

.bg-blue {
    background-color: #2c3e50;
}

.text-orange{
    color: rgb(254, 95, 85);
}

.text-blue{
    color: #2c3e50;
}

.dark-overlay {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.cta-banner h3 {
    text-transform: none;
}

.cta-btn {
    background-color: rgb(254, 95, 85);
    color: white;
    border: 2px solid rgb(254, 95, 85);
}

#login-btn {
    background-color: rgba(0, 0, 0, 0.33);
    padding: 10px 13px;
}

#login-btn:hover{
    background-color: rgba(0, 0, 0, 0.6);
}

#announcements-banner {
    color: white;
    text-align: center;
    /*background-color: #61afff;*/
    background-image: linear-gradient(to right, #61afff, rgb(254, 95, 85));

    /* our old green-blue #15a589 */
    /* green-blue #8FB996 */
    /* our orange rgb(254, 95, 85) */
    padding-top: 5px;
    padding-bottom: 5px;
}

.bio-container {
    color: white;
    min-width: 325px;
    padding-bottom: 2%;
    text-align: center;
}

.team-buttons {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 400px;
    opacity: 0.8;
    border: none;
    padding: 0;
    width: 80%;
}

.team-buttons:hover {
    opacity: 1;
}

.section-icon {
    max-height: 100px;
}

.alert ul {
    list-style-type: none;
}

ul {
    list-style-type: none;
}

.member-container {
	text-align: center;
	display: block;
	margin: auto;
}

.member-container h3 {
	text-transform: none
}

.member-container img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.member-container p {
    color: rgb(254, 95, 85);
    font-style: italic;
}

.headshot {
    border-radius: 2px;
    box-shadow: 3px 7px 10px #888888;
    width: 200px;
    max-height: 230px;
}

#contact-button{
    margin-top: 2%;
}

#contact-form-container{
    box-shadow: 5px 10px 18px #888888;
    padding: 5%;
    text-align: center;
    border-radius: 10px;
}

#contact-header-container{
    text-align:center;
    background-color: #2c3e50;
    color: white;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-top: 0;
    padding-top: 4%;
    margin-bottom: 0;
}

#contact-header-container p {
    color: yellow;
}

#contact-name{
    width: 60%;
    padding: 8px 20px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact-email{
    width: 60%;
    padding: 8px 20px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact-message{
    width: 60%;
    height: 200px;
    padding: 8px 20px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#about {
    background-color: #2c3e50;
    /*background: -webkit-linear-gradient(rgba(254, 95, 85, 0.8), rgba(44, 62, 80, 0.8));
    background: linear-gradient(rgba(254, 95, 85, 0.8), rgba(44, 62, 80, 0.8)); The least supported option. */
}


#about-container{
   width: 55%;
   text-align: center;
}

@media (max-width: 900px){
#about-container{
   width: 90%;
}
}

#about-container p{
   text-align: left;
}


header .container {
    padding-top: 150px;
}

#reasoningVideo {
  display: none;
}
#numbersVideo {
  display: none;
}
#exploringVideo {
  display: none;
}

.sample-video {
    width: 90%;
    height: 450px;
}

@media (max-width: 575px) {
    .sample-video {
        height: 300px;
    }
}

.sample-video-img{
  position: relative;
}

.sample-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: .8;
  border-bottom: 3px solid #2c3e50;
  border-left: 3px solid #2c3e50;
  border-right: 3px solid #2c3e50;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.sample-img:hover{
    opacity: 1;
}

#sample-vids-header {
    border: 3px solid transparent;
    border-radius: 7px;
}

#sample-videos a:hover{
    cursor: pointer;
}

#hide-samples-btn {
    display: none;
    color: white;
}

#show-samples-btn{
    color: white;
}


#home-video {
    display: none;
}
@media (min-width: 768px) {
  #home-video {
    display: inline-block;
  }
}

.centered{
    text-align: center;
    width: 100%;
    padding-top: 25px;
}

.pricing{
    text-align: center;
    /**background: #efefef;**/
}

.pricing-box{
    height: 100%;
    margin: 7%;
    box-shadow: 5px 10px 18px #888888;
    background: white;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.pricing-box p{
    font-size: 16px;
}

.pricing-details{
    padding: 25px 7px 0px 20px;
    background: white;
    color: #2c3e50;
    text-align: left;
}

.pricing-button{
    margin-top: 0;
    padding-bottom: 20px;
    text-align: center;
    border: 3px solid transparent;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background: white;
}

.pricing-info{
    background: #2c3e50;
    color: white;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    padding-top: 7px;
    padding-bottom: 7px;
}

#facebook-page{
    padding: 7px 0px 50px 0px;
    text-align: center;
    background-image: url('/images/home/chalkboard.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 375px;
    height: 475px;
    margin: 0 auto;
}

/**#facebook-page h3{
    font-family: 'Fredericka the Great', cursive;
}**/

body {
    overflow-x: hidden;
    position: relative;
}

p {
    font-size: 17px;
}

p.small {
    font-size: 12px;
}

#footer-links a, #footer-links a:active, #footer-links a:focus, #footer-links a:hover {
    color: #2c3e50;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    color: rgb(254, 95, 85);
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

hr.star-light,
hr.star-primary {
    margin: 25px auto 30px;
    padding: 0;
    max-width: 250px;
    border: 0;
    border-top: solid 5px;
    text-align: center;
}

hr.star-light:after,
hr.star-primary:after {
    content: "\f005";
    display: inline-block;
    position: relative;
    top: -.8em;
    padding: 0 .25em;
    font-family: FontAwesome;
    font-size: 2em;
}

hr.star-light {
    border-color: #fff;
}

hr.star-light:after {
    color: #fff;
}

hr.star-primary {
    border-color: #2c3e50;
}

hr.star-primary:after {
    color: #2c3e50;
}

.img-centered {
    margin: 0 auto;
}

header {
    text-align: center;
}

header img {
    display: block;
    margin: 0 auto 20px;
}

.current-menu-item a {
    color: white !important;
    /*color: rgb(254, 95, 85) !important;*/
    font-weight: bold;
}

.navbar-default .navbar-nav &gt; li &gt; a {
    color: lightgrey;
}
.navbar-default .navbar-nav &gt; li &gt; a:hover {
    color: white !important;
}

@media(min-width:768px) {
    .navbar-fixed-top {
        padding: 10px 0 0;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

    .navbar-fixed-top .navbar-brand {
        font-size: 2em;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .navbar-fixed-top.navbar-shrink {
        padding: 10px 0 0;
    }

    .navbar-fixed-top.navbar-shrink .navbar-brand {
        font-size: 1.5em;
    }
}

.navbar {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
}

.navbar a:focus {
    outline: 0;
}

.navbar .navbar-nav li a:focus {
    outline: 0;
}

.navbar-default,
.navbar-inverse {
    border: 0;
}

.dropdown-menu {
    background-color: rgb(44, 62, 80);
    color: lightgrey !important;
    padding: 10px 5px;
}

.dropdown-menu a {
    color: lightgrey !important;
}


.dropdown-menu a:hover {
    color: white !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.dropdown-item {
    margin-bottom: 15px;
}

section {
    padding: 100px 0;
}

section h2 {
    margin: 0;
    font-size: 1.5em;
}

section.success {
    color: #fff;
    background: rgb(254, 95, 85);
}

@media(max-width:767px) {
    section {
        padding: 75px 0;
    }

    section.first {
        padding-top: 75px;
    }
}

#portfolio .portfolio-item {
    right: 0;
    margin: 0 0 15px;
}

#portfolio .portfolio-item .portfolio-link {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 400px;
}

#portfolio .portfolio-item .portfolio-link .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(24,188,156,.9);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}

#portfolio .portfolio-item .portfolio-link .caption:hover {
    opacity: 1;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
    margin-top: -12px;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
    margin: 0;
}

#portfolio * {
    z-index: 2;
}

@media(min-width:767px) {
    #portfolio .portfolio-item {
        margin: 0 0 30px;
    }
}

.btn-outline {
    margin-top: 15px;
    border: solid 2px #fff;
    font-size: 20px;
    background: 0 0;
    transition: all .3s ease-in-out;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
    border: solid 2px #fff;
    color: #0f7864;
    background: #fff;
}

.floating-label-form-group {
    position: relative;
    margin-bottom: 0;
    padding-bottom: .5em;
    border-bottom: 1px solid #eee;
}

.floating-label-form-group input,
.floating-label-form-group textarea {
    z-index: 1;
    position: relative;
    padding-right: 0;
    padding-left: 0;
    border: 0;
    border-radius: 0;
    font-size: 1.5em;
    background: 0 0;
    box-shadow: none!important;
    resize: none;
}

.floating-label-form-group label {
    display: block;
    z-index: 0;
    position: relative;
    top: 2em;
    margin: 0;
    font-size: .85em;
    line-height: 1.764705882em;
    vertical-align: middle;
    vertical-align: baseline;
    opacity: 0;
    -webkit-transition: top .3s ease,opacity .3s ease;
    -moz-transition: top .3s ease,opacity .3s ease;
    -ms-transition: top .3s ease,opacity .3s ease;
    transition: top .3s ease,opacity .3s ease;
}

.floating-label-form-group::not(:first-child) {
    padding-left: 14px;
    border-left: 1px solid #eee;
}

.floating-label-form-group-with-value label {
    top: 0;
    opacity: 1;
}

.floating-label-form-group-with-focus label {
    color: rgb(254, 95, 85);
}

form .row:first-child .floating-label-form-group {
    border-top: 1px solid #eee;
}

footer {
    color: #fff;
}

footer h3 {
    margin-bottom: 30px;
}

footer .footer-above {
    padding-top: 50px;
    background-color: #2c3e50;
}

footer .footer-col {
    margin-bottom: 50px;
}

footer .footer-below {
    padding: 25px 0;
    color: #2c3e50;
}

.btn-social {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 45px;
}

.btn:focus,
.btn:active,
.btn.active {
    outline: 0;
}

.scroll-top {
    z-index: 1049;
    position: fixed;
    right: 2%;
    bottom: 2%;
    width: 50px;
    height: 50px;
}

.scroll-top .btn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 20px;
    line-height: 28px;
}

.scroll-top .btn:focus {
    outline: 0;
}

.portfolio-modal .modal-content {
    padding: 100px 0;
    width: 80%;
    margin-left: 10%;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    text-align: left;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portfolio-modal .modal-content h2 {
    margin: 0;
    font-size: 3em;
}

.portfolio-modal .modal-content img {
    margin-bottom: 30px;
}

.item-details{
    margin-top: 40px;
    list-style: none;
}

.portfolio-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 75px;
    height: 75px;
    background-color: transparent;
    cursor: pointer;
}

.portfolio-modal .close-modal:hover {
    opacity: .3;
}

.portfolio-modal .close-modal .lr {
    z-index: 1051;
    width: 1px;
    height: 75px;
    margin-left: 35px;
    background-color: #2c3e50;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.portfolio-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 1px;
    height: 75px;
    background-color: #2c3e50;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.portfolio-modal .modal-backdrop {
    display: none;
    opacity: 0;
}

.topdivitems{
    width: 500px;
    height: 375px;
    display:inline-block;
}

footer table {
    min-width: 600px;
    margin: 10px auto;
}

footer table td img {
    width: 50px;
}

footer table td a {
    color: #000000;
}

footer table td a:hover {
    color: rgb(254, 95, 85);
}
</pre></body></html>