<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******
Do a find and replace to change all colours / fonts

Colour:
main dark grey #575757
Lighter grey #8f8f8f

Font:
'Quicksand' is the google font
********/

html,
body {
  height: 100%;
  font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode",
    "Lucida Sans", Tahoma, sans-serif;
  color: #8f8f8f;
  font-size: 16px;
}
/* Wrapper for page content to push down footer */
#wrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  /* Negative indent footer by it's height */
  /* ----- Margin for Single Column Sticky Footer -----*/
  margin: 0 auto -231px;
  /* ----- Margin for Two Column Sticky Footer -----*/
  /*margin: 0 auto -264px;*/
}

/* Set the fixed height of the footer here */
#push/*, #footer*/ {
  /* ----- Height for Single Column Sticky Footer -----*/
  height: 231px;
  /* ----- Height for Two Column Sticky Footer -----*/
  /*height: 264px;*/
}
h1 {
  color: #6a0415;
  padding: 0px 0px 10px;
  margin: 0px 0px 10px 0px;
}
h2,
h3 {
  color: #6a0415;
}

/* ----- IF One Column Header -----*/
header {
  background: #fff;
}
.navbar-header {
  text-align: center;
}
.navbar-brand {
  color: #6a0415;
  height: 100%;
  font-size: 18px;
  float: none;
  display: block;
  line-height: 28px;
}
.upper-head {
  font-weight: 500;
}
.lower-head {
  color: #000;
  font-weight: 500;
  font-size: 15px;
}
.navbar-brand:focus,
.navbar-brand:hover {
  color: #6a0415;
}
.navbar-brand &gt; img {
  margin: 0 auto 10px;
}
@media (min-width: 470px) {
  .upper-head {
    font-size: 24px;
  }
  .lower-head {
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .container &gt; .navbar-header {
    padding-right: 30px;
  }
  .navbar-brand {
    float: left !important;
    display: inline;
    line-height: 24px;
    width: 100%;
  }
  .navbar-brand &gt; img {
    display: inline-block;
    padding-right: 20px;
    margin: 0;
    float: left;
  }
  .navbar-brand &gt; span.nav-bold {
    display: inline-block;
    padding-top: 16px;
  }
  .upper-head {
    font-size: 20px;
    display: block;
    margin-top: 40px;
  }
  .lower-head {
    font-size: 20px;
    display: block;
    margin-top: -15px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: none;
  }
  .navbar-brand {
    text-align: center;
    line-height: 28px;
  }
  .upper-head {
    font-size: 24px;
  }
  .lower-head {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .upper-head {
    font-size: 34px;
  }
  .lower-head {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .upper-head {
    font-size: 44px;
    margin-bottom: 8px;
  }
  .lower-head {
    font-size: 30px;
  }
}
/* ----- One Column Header END -----*/
section#slogan {
  text-align: center;
  color: #fff;
  background: #6a0415;
  font-size: 18px;
  padding: 20px 0px;
}
section#main-text {
  background-color: #fff;
}
section#main-text a {
  color: #1e90ff;
}
section#main-text.home-text {
  border-top: 5px solid #6a0415;
}
section#main-text.home-text h2 {
  color: #000;
}
section#main-text .latest-tweets h2 {
  color: #6a0415;
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
section#buttons {
  display: none;
}
/* ----- Flip Tiles -----*/

section#flip-tiles {
  background-image: url(img/bg-tile.png);
  border-top: 8px solid #82a5bf;
}
.flip-tiles-column {
  margin-bottom: 40px;
  color: #fff;
}
.flip-tiles-column a {
  color: #fff;
}
.flip-tiles-column a:hover {
  color: #fff;
}
.flip-tiles-column h1 {
  color: #fff;
  position: absolute;
  bottom: 20px;
  width: 100%;
  font-size: 24px;
}

/* simple */
.flip-container {
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;

  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;

  border: 1px solid #ccc;
}

/* START: Accommodating for IE */
.flip-container:hover .back,
.flip-container.hover .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.flip-container:hover .front,
.flip-container.hover .front {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* END: Accommodating for IE */

.flip-container,
.front,
.back {
  width: 100%;
  height: 250px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 0.6s;

  -moz-transition: 0.6s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;

  transition: 0.6s;
  transform-style: preserve-3d;

  position: relative;
}

.front,
.back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);

  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -moz-transform: rotateY(0deg);

  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  -o-transform: rotateY(0deg);

  -ms-transition: 0.6s;
  -ms-transform-style: preserve-3d;
  -ms-transform: rotateY(0deg);

  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);

  position: absolute;
  top: 0;
  left: 0;
}

.front {
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  /*background: #963591;*/
  z-index: 2;
}

.back {
  /*background: #842e80;*/
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.front .icon {
  margin-top: 40px;
}

.front .icon.fa {
  font-size: 60px;
  background: #fff;
  padding: 25px 10px 10px;
  color: #008746;
  z-index: 1;
  border-radius: 50%;
  width: 110px;
  height: 110px;
}

.mission-block .front {
  background: #f00;
}
.mission-block .back {
  background: #e60000;
}
.vision-block .front {
  background: #6c5aac;
}
.vision-block .back {
  background: #6855aa;
}
.newsletter-block .front {
  background: #9acd31;
}
.newsletter-block .back {
  background: #8ab92d;
}
.calendar-block .front {
  background: #1e90ff;
}
.calendar-block .back {
  background: #1a8cff;
}
.payment-block .front {
  background: #00ced1;
}
.payment-block .back {
  background: #00c9cc;
}
.gallery-block .front {
  background: #ff69b4;
}
.gallery-block .back {
  background: #ff66b3;
}

.back p {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 20px;
  font-size: 28px;
  font-family: "Quicksand", sans-serif;
}

/* vertical */
.vertical.flip-container {
  position: relative;
}

.vertical .back {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.vertical.flip-container .flipper {
  -webkit-transform-origin: 100% 213.5px;
  -moz-transform-origin: 100% 213.5px;
  -ms-transform-origin: 100% 213.5px;
  transform-origin: 100% 213.5px;
}

/* START: Accommodating for IE */
.vertical.flip-container:hover .back,
.vertical.flip-container.hover .back {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.vertical.flip-container:hover .front,
.vertical.flip-container.hover .front {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
/* END: Accommodating for IE */

/* ----- Flip Tiles END -----*/

section#social-media {
  background-image: url(img/social-media-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #000;
}
section#social-media a:hover,
section#social-media a:focus {
  text-decoration: none;
}
.social-media-column {
  margin-bottom: 40px;
}
.social-media-wrap {
  padding: 0 8px 8px;
  color: #000;
}
.social-media-head {
  position: relative;
  padding-top: 15px;
  margin-bottom: 30px;
}
#social-media h1 {
  font-weight: 700;
  margin-top: 90px;
  margin-bottom: 30px;
  padding: 0;
  font-size: 28px;
  color: #000;
}
#social-media h1:before {
  font-family: FontAwesome;
  position: absolute;
  font-size: 50px;
  color: #fff;
  top: 0px;
  left: 0px;
  background: #1e90ff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
}
#social-media .twitter-col h1:before {
  content: "\f099";
}
#social-media .facebook-col h1:before {
  content: "\f09a";
}
.social-media-head p {
  font-size: 18px;
  color: #6a0415;
  text-transform: uppercase;
}
.tweet-col {
  margin-bottom: 20px;
  overflow: hidden;
  background: #6a0415;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
.tweet-col .tweet .Emoji {
  height: 16px;
}
.tweet-holder {
  /*padding: 0 0 0 140px;*/
  position: relative;
}
.tweet-col .twitter-img {
  height: 200px;
  background-position: center;
  background-size: cover;
  margin: 10px 0px;
  border-radius: 8px;
}
.tweet-col .time {
  font-weight: 700;
}
.tweet-col .time a {
  color: #fff !important;
}
.tweet-col .tweet a {
  color: #fff !important;
}
.tweet-col .tweet a:hover {
  text-decoration: underline !important;
}
#social-media h2 {
  display: none;
}
#social-media p.work,
#social-media p.event,
#social-media p.news {
  font-size: 16px;
  padding: 0 20px 0 0px;
  text-align: left;
  margin-left: 20px;
}
#social-media p.event a {
  color: #000;
  line-height: 10px;
}
#social-media p.event a:hover {
  text-decoration: none;
  color: #355ea8;
}
#social-media p.event a::before {
  content: "\f111";
  color: #355ea8;
  font-size: 12px;
  margin-right: 10px;
  font-family: FontAwesome;
}
.social-media-footer {
  margin-top: 30px;
  padding: 10px;
  text-align: right;
}
.social-media-footer a {
  color: #000;
  text-transform: uppercase;
  margin-right: 10px;
  font-size: 18px;
}
.social-media-footer a:hover .s-m-arrow {
  background: #3d6cc2;
}
.social-media-footer .s-m-arrow {
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
  background: #355ea8;
  color: #fff;
  font-size: 36px;
  border-radius: 10%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  text-align: center;
}

/* ----- Social Media END -----*/

/* ----- Quick Links -----*/

section#quick-links {
  position: relative;
  border-top: 5px solid #fff;
}
section#quick-links a {
  color: #fff;
}
.sm-column {
  padding: 0;
  float: left;
}
#quick-links a:hover,
#quick-links a:focus {
  text-decoration: none;
}
.sm-container {
  background-color: #6a0415;
  padding: 36px 20px;
  text-align: center;
}
.sm-container:hover .avatar-flip {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.sm-container:hover .avatar-flip img:first-child {
  opacity: 0;
}
.sm-container:hover .avatar-flip img:last-child {
  opacity: 1;
}
.re-column {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.avatar-flip {
  border-radius: 100px;
  overflow: hidden;
  height: 90px;
  width: 90px;
  position: relative;
  margin: auto;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  background-color: #94b8e0;
}
.avatar-flip img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.avatar-flip img:first-child {
  z-index: 1;
}
.avatar-flip img:last-child {
  z-index: 0;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  opacity: 0;
}
.avatar-flip .fa-globe,
.avatar-flip .fa-star,
.avatar-flip .fa-heart {
  color: #fff;
  font-size: 54px;
  margin-top: 17px;
}
#quick-links h2 {
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 0;
  color: #fff;
}

/* ----- Quick Links END -----*/

.card {
  /*width: 220px;*/
  height: 261px;
  background: #6a0415;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /*box-shadow: 0 14px 26px rgba(0,0,0,0.04);*/
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.card:hover .overlay {
  transform: scale(8) translateZ(0);
}

.card:hover .circle {
  border-color: #6a0415;
  background: #fff;
}

#quick-links .card:hover h2 {
  color: #6a0415;
}

.card:active {
  transform: scale(1) translateZ(0);
}

#quick-links .card h2 {
  font-size: 26px;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 0;
  z-index: 1000;
  transition: color 0.3s ease-out;
}

.circle {
  /*width: 182px;
  height: 120px;*/
  /*border-radius: 50%;*/
  /*background: #fff;*/
  border: 2px solid #6a0415;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.overlay {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #fff;
  top: 50px;
  /*left: 50px;*/
  z-index: 0;
  transition: transform 0.3s ease-out;
}

section#bottom-logos img {
  display: block;
  margin: auto;
  height: 80px;
}
/********** CONTACT STYLES ********/

section#contact {
}
.contact-wrap {
  background-color: #6a0415;
}
#contact_details {
  background-color: #6a0415;
}
#contact_details .main-contact {
  font-size: 18px;
}
#contact_details span {
  color: #51aee6;
  display: block;
}
#contact_details .pad_out {
  padding: 34px 0;
  color: #fff;
}
#contact_details h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  color: #fff;
}
#contact_details p {
  font-size: 18px;
}
#contact_details p {
  margin-bottom: 10px;
}
#contact_details .contact-phone,
#contact_details .contact-email {
  color: #fff;
  font-size: 18px;
}
#contact_details .contact-address,
#contact_details .contact-phone {
  margin-bottom: 20px;
}
#contact_details .contact-phone a,
#contact_details .contact-email a {
  color: #fff;
}
.logo-row {
  margin-top: 20px;
}
.logo-wrap {
  text-align: center;
}
#contact_details .logo-wrap img {
  margin-bottom: 30px;
}
.col-contact-3,
.col-contact-6,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.map-wrap {
  padding-right: 0;
  padding-left: 0;
}
.inner-map a.circle-link {
  border-radius: 320px;
  height: 320px;
  width: 320px;
  margin: 40px auto 0;
  background-color: rgba(106, 4, 21, 0.8);
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: none;
}
.inner-map a.circle-link:hover {
  background-color: rgba(106, 4, 21, 0.9);
}

/* ----- Mobile Black Bar Styles -----*/
#mobile_black_bar a {
  display: block;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 20px;
}
#mobile_black_bar .staff_login,
#mobile_black_bar .blogs {
  background: #000;
}
#mobile_black_bar .parent_login {
  background: #666;
}

/* ----- Footer Styles -----*/

footer {
  padding: 20px;
  background-color: #6a0415;
  color: #fff;
  text-align: center;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ----- IF Two Column Footer -----*/
.footer-right {
  margin-top: 16px;
}
.footer-right a {
  color: #fff;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer-right a:hover {
  color: #9cf;
}
.footer-right span {
  width: 50px;
  font-size: 22px;
}

/* ----- Common Styles -----*/

.top-buffer {
  padding-top: 40px;
}
.bottom-buffer {
  padding-bottom: 20px;
}

/* ----- Responsive Styles -----*/

@media (min-width: 470px) {
  section#bottom-logos img {
    height: 100px;
  }
  #contact_details .pad_out {
    padding: 34px 22px;
  }
}
@media (max-width: 575px) {
  .col-xxs-12 {
    width: 100%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 576px) {
  .col-ssm-3 {
    width: 25%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .card:hover .overlay {
    transform: scale(9) translateZ(0);
  }
  #contact_details .pad_out {
    padding: 34px 42px;
  }
  #contact_details h2 {
    font-size: 28px;
  }
  #contact_details p:nth-child(2) {
  }
  .col-contact-3 {
    width: 25%;
    float: left;
  }
  .col-contact-6 {
    width: 50%;
    float: left;
  }
  #contact_details .logo-wrap img {
    margin-bottom: 15px;
  }
  /* ----- Wrap and Push for Two Column Sticky Footer -----*/
  #wrap {
    margin: 0 auto -249px;
  }
  #push {
    height: 249px;
  }
}
@media (min-width: 768px) {
  .card:hover .overlay {
    transform: scale(11) translateZ(0);
  }
  section#slogan {
    font-size: 20px;
  }
  section#bottom-logos img {
    height: 110px;
  }
  #contact_details .pad_out {
    padding: 34px 52px;
  }
  #contact_details h2 {
    font-size: 30px;
  }
  /* ----- Wrap and Push for Two Column Sticky Footer -----*/
  #wrap {
    margin: 0 auto -210px;
  }
  #push {
    height: 210px;
  }
}

@media (min-width: 992px) {
  .col-ssm-3 {
    padding-right: 5px;
    padding-left: 5px;
  }
  .col-md-9th {
    width: calc(100% / 9);
  }
  section#buttons img {
    height: 70px;
  }
  section#slogan {
    font-size: 22px;
  }
  .re-column {
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
    border-top: none;
    border-bottom: none;
  }
  section#social-media .content {
    width: 80%;
  }
  .card {
    height: 231px;
  }
  .overlay {
    top: 38px;
  }
  .card:hover .overlay {
    transform: scale(6) translateZ(0);
  }
  section#quick-links img {
    height: 100px !important;
  }
  .contact-wrap {
    background-color: transparent;
    padding: 0;
  }
  #contact_details .pad_out {
    padding: 70px 57px;
  }
  #contact_details h2 {
    font-size: 32px;
  }
  #contact_details p {
    font-size: 18px;
  }
  #contact_details p:nth-child(2) {
  }
  #contact_details p.contact-address {
    margin-bottom: 30px;
  }
  #contact_details .contact-phone,
  #contact_details .contact-email {
    font-size: 18px;
  }
  #contact_details .logo-wrap img {
    margin-bottom: 0;
  }
  .map-wrap {
    padding: 0;
  }
  .inner-map a.circle-link {
    display: block;
  }
  .inner-map iframe {
    display: none;
  }
  section#bottom-logos img {
    height: 55px;
  }
  section#bottom_login {
    display: none;
  }
  section#mobile_black_bar {
    display: none;
  }
  /* ----- IF Two Column Footer -----*/
  .footer-right {
    margin-top: 0;
  } /* ----- Wrap and Push for Two Column Sticky Footer -----*/
  #wrap {
    margin: 0 auto -64px;
  }
  #push {
    height: 64px;
  }
}
@media (min-width: 1200px) {
  section#buttons img {
    height: 85px;
  }
  section#bottom-logos img {
    height: 75px;
  }
  #contact_details .pad_out {
    padding: 50px 60px;
  }
  section#slogan {
    font-size: 24px;
  }
}
@media (min-width: 1500px) {
  .card:hover .overlay {
    transform: scale(7) translateZ(0);
  }
}
@media (min-width: 1800px) {
  .card:hover .overlay {
    transform: scale(11) translateZ(0);
  }
}
</pre></body></html>