.page-title,
.breadcrumbs {
  display: none;
}

/* Hide the home link - Not required on the homepage */
.home-link {
  pointer-events: none;
}

/* Notice Block
=============== */
.notice-block {
  display:none;
}

@media (min-width:981px){

  /* Lock Screen */

  .screen-lock-remove:before,
  .screen-lock-remove .notice-block {
    display: none!important;
  }

  .screen-lock-remove {
    position:relative!important;
  }

  .screen-lock {
    position: fixed;
    height: 100%;
    width: 100%;
  }

  .screen-lock::before {
    position:fixed;
    left:0;
    top:0;
    content:'';
    display:block;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);  
    z-index:700;
  }


  /* Notice Block
  =================*/

  .screen-lock .notice-block {
    position: fixed;
    display: block;
    top: 50vh;
    right: 50%;
    transform: translate(50%, -50%);
    width: 980px;
    height: 400px;
    box-sizing: border-box;
    border: 8px solid #003399;
    border-radius: 20px;
    background: #fff;
    padding: 30px 40px;
    z-index: 1001;
    box-shadow: 0px 10px 21px 0px rgba(0, 0, 0, 0.93); 
  }

  .screen-lock .notice-block .heading {
    font-size: 2.6rem;
    text-align: center;
    color: #000;
    margin-bottom: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: normal;
  }

  .screen-lock .notice-block .heading:before,
  .screen-lock .notice-block .heading:after{
    content:'';
    width: 100%;
    max-width: 263px;
    height: 1px;
    background: #000;
    position: relative;
    left:0;
    display: inline-block;
  }

  .screen-lock .notice-block .heading:before {
    left: 0;
    margin: 0 40px;
  }

  .screen-lock .notice-block .heading:after {
    left: auto;
    right: 0;
    margin: 0 40px;
  }

  .screen-lock .notice-block .notice-text {
    font-size: 1.6rem;
    color: #000;
    text-align: center;
    width: 480px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
  }

  .screen-lock .cp-close {
    position: absolute;
    bottom: calc(100% - 40px);
    left: calc(100% - 40px);
    height: 60px;
    width: 60px;
    background: #fff;
    box-sizing: border-box;
    transition: ease 0.2s opacity;
    border: 5px solid #003399;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .screen-lock .cp-close .cp-font-icon {
    color: #000;
    font-size: 2.1rem;
  }

  .screen-lock .cp-close:focus,
  .screen-lock .cp-close:hover {
    opacity: 0.8;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
 .screen-lock .notice-block {
    width: 940px;
    padding: 30px 20px;
  }
}


/* Scroll Down
================= */
@-webkit-keyframes anchor-point {
  0% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
  }
}

@-moz-keyframes anchor-point {
  0% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
  }
}

@keyframes anchor-point {
  0% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
  }
}

/* Media Queries 
================ */

/* Desktop only */

@media (min-width: 981px) {
  
  .anchor-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 50%;
    transform: translateX(50%);
    bottom: 80px;
    color: #fff;
    z-index: 5;
  }
  
  .anchor-point .cp-font-icon {
    font-size: 5.5rem;
    text-align: center;
    transition: ease 0.2s color;
  }
  
  .anchor-point li {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-10%);
    -webkit-animation: anchor-point 4s infinite;
    -moz-animation: anchor-point 4s infinite;
    animation: anchor-point 4s infinite;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    transition: ease 0.2s fill;
  }
  
  .anchor-point a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    overflow: hidden;
  }
  
  .anchor-point span {
    font-size: 1.8rem;
    text-transform: uppercase;
    transition: ease 0.2s color;
  }
  
  .anchor-point:focus li,
  .anchor-point:hover li {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
  }
  
  .anchor-point:focus .cp-font-icon,
  .anchor-point:hover .cp-font-icon {
    color: #ddd;
    opacity: 1;
  }
  
}

/* School Details
================= */
@media (min-width: 981px) {
  .motto {
  	bottom: 80px;
  }
}

/* Side Bar
=====================*/
  
@media (min-width: 981px){
  .cp-side-bar {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    top: calc(50vh);
    transform: translateY(-50%);
    right: 0;
    z-index: 5;
  }
  
  .cp-side-bar .cp-content-wrap {
    position: relative;
    display: inline-flex;
    margin: 0 0 10px;
  }
  
  /* Trigger
  ============*/
  
  .cp-side-bar .cp-content-wrap .i-bar-trigger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: ease 0.2s width;
    cursor: pointer;
    height: 71px;
    width: 50px;
    background: #003399;
    overflow:hidden;
    z-index: 1;
  }
  
  .cp-side-bar .cp-content-wrap .i-bar-trigger.cp-trigger-active {
    background: #003399;
  }
  
  .cp-side-bar .cp-content-wrap:focus .i-bar-trigger,
  .cp-side-bar .cp-content-wrap:hover .i-bar-trigger {
    background: #112662;
  }
  
  .cp-side-bar .cp-content-wrap:focus .cp-icon-text,
  .cp-side-bar .cp-content-wrap:hover .cp-icon-text,
  .cp-side-bar .cp-content-wrap .i-bar-trigger:focus .cp-icon-text,
  .cp-side-bar .cp-content-wrap .i-bar-trigger:hover .cp-icon-text {
    display: none;
  }
  
  .cp-side-bar .cp-content-wrap .i-bar-trigger .cp-font-icon {
    font-size: 2.8rem;
  }
  
  .cp-side-bar .cp-content-wrap .i-bar-trigger .cp-icon-text {
    font-size: 1.8rem;
    display: none;
    width: 104px;
    white-space: nowrap;
    transition: none;
  }
  
  /* Content Block
  =================*/
  .cp-side-bar .cp-content-block {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 100%;
    width: 0;
    height: 71px;
    transition: ease 0.2s width;
    background: #003399;
    overflow: hidden;
  }
  
  .cp-side-bar .cp-content-wrap:focus .cp-content-block,
  .cp-side-bar .cp-content-wrap:hover .cp-content-block {
    width: 255px;
  }
  
  .cp-side-bar .money-wrap:focus .cp-content-block,
  .cp-side-bar .money-wrap:hover .cp-content-block {
     width: 135px;
  }
  
  .cp-side-bar .clubs-wrap:focus .cp-content-block,
  .cp-side-bar .clubs-wrap:hover .cp-content-block {
     width: 125px;
  }
  
  .cp-side-bar .term-wrap:focus .cp-content-block,
  .cp-side-bar .term-wrap:hover .cp-content-block {
    width: 103px;
  }
  
  .cp-side-bar .staff-wrap:focus .cp-content-block,
  .cp-side-bar .staff-wrap:hover .cp-content-block {
    width: 60px;
  }
  
  .cp-side-bar .cp-content-block>a {
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    display: block;
    white-space: nowrap;
    box-sizing: border-box;
    padding-left: 10px;
    transition: ease 0.2s opacity;
  }
  
  .cp-side-bar .cp-content-block>a:focus,
  .cp-side-bar .cp-content-block>a:hover {
    opacity: 0.8;
  }
  
}

@media (max-width:980px) {
  
  .cp-side-bar {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .cp-side-bar .i-bar-trigger {
    display: none;
  }
  
  .cp-side-bar a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 2rem;
    text-align: center;
    padding: 14px 20px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    transition: ease 0.2s opacity;
  }
  
  .cp-side-bar .cp-content-wrap:nth-child(odd) a {
    background: #1b3171;
    color: #fff;
  }
  
  .cp-side-bar .cp-content-wrap:nth-child(even) a {
    background: #fff;
    color: #1b3171;
  }

  .cp-side-bar a:focus,
  .cp-side-bar a:hover {
    opacity: 0.8;
  }
  
}

@media (max-width:640px) {
  .cp-side-bar a {
    font-size: 1.6rem;
  }
}

/* WELCOME BLOCK
================== */
.welcome-text-wrap {
  background: #003399;
  color: #fff;
  padding: 30px;
  box-sizing:border-box;
}

.welcome-text-wrap a {
  color: #fff;
}

.welcome-text-wrap span {
  display: block;
}

.welcome-text-welcome {
  font-size: 3rem;
  line-height:1.2;
}

.welcome-text-name {
  font-size: 3.4rem;
  line-height: 1.2;
  padding-bottom: 20px;
}

.welcome-text-wrap .cta {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  border: 1px solid #fff;
  width: 140px;
  height: 45px;
  padding: 16px 14px;
  box-sizing: border-box;
  transition: ease 0.2s background;
  margin-top: 40px;
}

.welcome-text-wrap .cta:after {
  content:'\004c';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.welcome-text .cta a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent:-9999px;
}

.welcome-text-wrap .cta:focus,
.welcome-text-wrap .cta:hover {
  background: #fff;
  color: #000;
}


@media (min-width:981px) {
  .welcome-text-wrap {
    padding: 45px 0;
    height: 355px;
  }
  
  .welcome-text {
    width: 900px;
    margin: 0 auto;
  }
  
  .welcome-text p {
    font-size: 1.8rem;
    width: 900px;
    height: 85px;
    overflow:hidden;
  }
}

@media (max-width:980px) {

  .welcome-text-wrap {
    background: #1f387f;
  }

  .welcome-text p {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .welcome-text-welcome {
    font-size: 2rem;
  }
  
  .welcome-text-name {
    font-size: 2.4rem;
  }
  
  .welcome-text-wrap .cta {
    width: 280px;
    font-size: 1.4rem;
  }

  .welcome-text-wrap .cta:after {
    right: 5px;
  }
}

/* UPDATE FEEDS
=============== */
/* Animation keyframes */

@-webkit-keyframes swipe-ani {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  25% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}

@-moz-keyframes swipe-ani {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  25% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}

@keyframes swipe-ani {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  25% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}

/* Media Queries 
================ */
/* Updates Area
=============== */

.updates-area ul {
  list-style: none;
  list-style-position: outside;
}

.updates-area li {
  position: relative;
  text-align: center;
}

.updates-area a {
  display: block;
  line-height: 1.7;
}

.updates-area li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}

.ps_activity_compact-author {
  display: none;
}

.ps_activity_compact-date,
.ps_date {
  display: block;
  padding-bottom: 8px;
  line-height: 1.3;
}

.ps_event {
  position: relative;
  min-height: 1px;
  padding: 0;
  border-radius: 0;
  margin: 0;
  background: none;
  border: none;
}

/* Desktop only */

@media ( min-width: 981px) {
  
  .updates-area-blocks {
    position: relative;
    width: 100%;
    height: 380px;
    text-align: center;
  }
  
  .updates-block-wrap {
    font-size: 0;
  }
  
  .updates-block {
    color: #fff;
  }
  
  .updates-area {
    position: relative;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    z-index:5;
  }
  
  .updates-area ul {
    padding: 20px 0;
    text-align: center;
  }
  
  .updates-area ul:before {
    top: 41px;
  }
  
  .updates-area ul:after {
    bottom: 0;
  }
  
  .updates-area h2 {
    position: relative;
    text-align: center;
  }
  
  .updates-area h2 a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    font-size: 2.6rem;
    transition: ease 0.2s opacity;
    font-weight: normal;
  }
  
  .updates-area h2 a:focus,
  .updates-area h2 a:hover {
    opacity: 0.8;
    color: #fff;
  }
  
  .updates-area h2 a:before,
  .updates-area h2 a:after{
    content:'';
    width: 100%;
    max-width: 263px;
    height: 1px;
    background: #fff;
    position: relative;
    left:0;
    display: inline-block;
  }
  
  .updates-area h2 a:before {
    left: 0;
    margin: 0 40px;
  }
  
  .updates-area h2 a:after {
    left: auto;
    right: 0;
    margin: 0 40px;
  }
  
  .updates-area a {
    font-size: 1.6rem;
    color: #003399;
  }
  
  .updates-area a:focus,
  .updates-area a:hover {
    color: #000;
  }
  
  .updates-area li {
    position: relative;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    font-size: 1.4rem;
    text-align: center;
    max-width: 229px;
    width: 100%;
    height: 160px;
    box-sizing: border-box;
    border: 4px solid #003399;
    background :#fff;
    color: #003399;
    margin: 0 30px;
    transition: ease 0.2s opacity;
  }

  .updates-area li:focus,
  .updates-area li:hover {
    opacity: 0.8;
  }
  
  .updates-area li:after {
    content:'';
    width: 91px;
    height: 111px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background: url(school-logo.png) center no-repeat;
    background-size: cover;
    opacity: 0.18;
  }
  
  .ps_activity_compact-date, .ps_date {
    z-index: 2;
  }
  
  .updates-area li a {
    display: block;
    width: 100%;
  }
  .updates-area li a:after {
    content:'';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  
  .updates-block-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .updates-block {
    position:relative;
    display:inline-flex;
    background: url(calendar.jpg) top center no-repeat;
    width: 50%;
    height:100%;
    background-size: cover;
    padding: 36px 0;
    box-sizing:border-box;
    background-size: cover;
  }
  
  .updates-block:nth-child(2) {
    background: url(news.jpg) top center no-repeat;
    background-size: cover;
  }

  .updates-block:after {
    content: '';
    background: rgba(0,0,0,0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }
  
  .updates-area .read-more a {
    position: relative;
    margin: 20px auto 0;
    width: 241px;
    height: 45px;
    display: flex;
    align-items: center;
    background: #ffcc33;
    box-sizing: border-box;
    color: #000;
    padding: 0 10px;
    transition: ease 0.2s;
  }
  
  .updates-area .read-more a:after {
    content:'\004c';
    margin-left: auto;
  }
  
  .updates-area .read-more a:focus,
  .updates-area .read-more a:hover {
    background: #fff;
    color: #000;
  }
  
}

@media (min-width: 981px) and (max-width:1770px) {
  .updates-area li {
    margin: 0 15px;
  }
}

@media (min-width: 981px) and (max-width:1580px) {
  .updates-area li {
    margin: 0 15px;
    max-width: 200px;
  }
}

@media (min-width: 981px) and (max-width:1450px) {
  .updates-area li {
    margin: 0 10px;
    max-width: 180px;
  }
}

@media (min-width: 981px) and (max-width:1250px) {
  .updates-area li {
    margin: 0 5px;
    max-width: 160px;
  }
}


@media (min-width: 981px) and (max-width:1050px) {
  .updates-area li {
    max-width: 140px;
  }
}

/* Responsive */

@media ( max-width:980px) {
  
  .updates-area-blocks {
    background: #1f387f;
  }
  
  .updates-block {
    text-align: center;
  }
  
  .block-title {
    box-sizing: border-box;
    padding: 20px;
    position: relative;
  }
  
  .block-title h2 {
    font-weight: bold;
    color: #fff;
    font-size: 1.8rem;
  }
  
  .block-title p {
    color: #fff;
    margin-top: 5px;
    font-size: 1.4rem;
  }
  
  .cta-swipe {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 20px;
    height: 25px;
    background: url(swipe-to-right.svg) center center no-repeat;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
    -webkit-animation: swipe-ani 3s linear infinite;
    -moz-animation: swipe-ani 3s linear infinite;
    animation: swipe-ani 3s linear infinite;
    transform-origin: 50% 50%;
  }
  
  /* DOTS 
  ========*/
  
  .cp-controls {
    position: relative;
  }
  
  .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
  }
  
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    background: #ffffff;
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
  }
  
  .updates-area-blocks .swiper-container {
    width: 100%;
  }
  
  .updates-area-blocks .updates-area ul {
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 20px;
    box-sizing:border-box;
    text-align: center;
  }
  
  .updates-area-blocks .swiper-container {
    width: calc(100% - 80px);
    margin: 0 auto;
    z-index: 0;
  }
  
  .updates-area-blocks .swipe-content {
    background: #1f387f;
  }
  
  .updates-area-blocks .updates-area h2 a{
    color: #fff;
    font-size: 1.8rem;
    font-weight: normal;
    padding-bottom: 10px;
    display: inline-block;
  }
  
  .updates-area-blocks .updates-area h2 a:focus,
  .updates-area-blocks .updates-area h2 a:hover {
    color: #ddd;
  }
  
  .updates-area-blocks .updates-area ul li {
    font-size: 1.4rem;
    color: #595959;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
    margin: 0 auto;
  }
  
  .updates-area-blocks .updates-area ul li a {
    font-size: 1.5rem;
    color: #003399;
    display:inline-block;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
    margin: 0 auto;
    width: 100%;
  }  
  
  .updates-area-blocks .updates-area ul li a:focus,
  .updates-area-blocks .updates-area ul li a:hover {
    color: #000;
  }
  
  .updates-area-blocks .read-more {
    position: relative;
    display: block;
    width: 100%;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1); 
    padding-top: 20px;
    z-index:20;
  }
  
  .updates-area-blocks .read-more a {
    color:#000;
    font-size: 1.4rem;
    box-sizing: border-box;
    padding: 12px 0;
    background:#ffcc33;
    border-radius: 3px;
    width: 100%;
    transition: ease 0.2s background;
  }
  
  .updates-area-blocks .read-more a:focus,
  .updates-area-blocks .read-more a:hover {
    background: #fff;
  }
}

@media (max-width:640px) {
  
  .updates-area-blocks .swiper-container {
    width: calc(100% - 40px);
  }  
  
}


/* HOUSE POINTS
================ */
.house-points {
  position: relative;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  background:#0f1f4d;
  height: auto;
}

.house-points .swiper-wrapper:after {
  content:'';
  height: 1px;
  width: 100%;
  background: #fff;
  display: inline-block; 
}

.house-points .house-points-header {
  position: relative;
  font-size: 2.6rem;
  color: #fff;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
}

.house-points-header p {
  white-space: nowrap;
}

.house-points .house-points-header:before,
.house-points .house-points-header:after {
  content:'';
  height: 2px;
  width: 100%;
  background: #fff;
  display: inline-block;
}

.house-points .house-points-header:before {
  left: 0;
  margin-right: 20px;
}
.house-points .house-points-header:after {
  right: 0;
  margin-left: 20px;
}

.house-points-block {
  width: 274px;
  height: 129px;
  box-sizing: border-box;
  border:10px solid #0f4d27;
  color: #fff;
  background: none;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.house-points-block:nth-of-type(1) {
  border-color: #35a803;
}

.house-points-block:nth-of-type(2) {
  border-color: #ffd200;
}

.house-points-block:nth-of-type(3) {
  border-color: #0040c1;
}

.house-points-block:nth-of-type(4) {
  border-color: #f72206;
}

.house-points-block span {
  display: block;
  line-height: 1;
}

.house-points-block .housename {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10px;
}

.house-points-block .housenumber {
  font-size: 2.6rem;
  padding-bottom: 10px;
  white-space: nowrap;
  width: 90px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  margin:  0 auto;
}

/* Media Queries 
================ */

/* Desktop only */

@media ( min-width: 981px) {
  
  .house-points {
    padding-bottom: 40px;
  }
  
  .swiper-container {
    position: relative;
    width: 100%;
    text-align: center;
  }
  
  .house-points-wrapper {
    max-width: 1276px;
    width: 100%;
    margin: 0 auto;
  }
  
  .house-points-block {
    margin: 30px 15px;
  }
}

@media (min-width: 981px) and (max-width:1366px) {
  .house-points-block .housename {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }
  
  .house-points-block .housenumber {
    font-size: 2rem;
    padding: 0;
  }  
  
  .house-points-block {
    width: 200px;
    height: 100px;
    margin: 60px 10px;
  }
}

/* Responsive */

@media ( max-width:980px) {
  .house-points {
    height: auto;
    background: #1f387f;
    z-index: 0;
  }
  
  .house-points .swiper-wrapper {
    padding: 20px 0;
  }
  
  .house-points .cp-controls::after {
    content: '';
    display: block;
    height: 1px;
    background: #fff;
    width: 100%;
    position:relative;
    bottom: 50px;
  }
  
}


/* CONTACT BLOCK / MAP
=================== */
/* Contact and Map */

/* School Address */
.school-address .cp-font-icon {
  font-size: 2rem;
}

.school-address {
  font-size: 1.8rem;
  padding-top: 18px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
  background: #1f387f;
  text-align: center;
  color: #fff;
}

.school-address-line {
  padding-bottom: 18px;
}

.school-address-email,
.school-address-phone {
  height: 55px;
  display: block;
}

.school-address-email a,
.school-address-phone a {
  display: block;
  line-height: 55px;
  font-size: 2rem;
  color: #fcfcfc!important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.school-address-phone {
  background: #002266;
}

.school-address-email {
  background: #002a80;
  transition: ease 0.2s background;
}

.school-address-email:focus,
.school-address-email:hover {
  background: #091431;
}

.school-address li span {
  display: block;
}


/* Media Queries 
================ */
/* Desktop only */

@media ( min-width: 981px) {

  .location-wrap {
    position: relative;
    height: 370px;
    background: #1b1b1b;
  }

  .location-wrap .google-map {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
  } 
  

  .school-address {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 104px;
    left: 5.4vw;
    width: 390px;
    z-index: 10;
    font-size: 1.8rem;
    padding-top: 18px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
    background: #003399;
    text-align: center;
    color: #fff;
  }

  .school-address-phone {
    pointer-events: none;
  }

  .google-maps-wrap.is-disabled {
    height: 100%;
  }

}

/* AWARDS
============== */
/* end of Global */

.cp-awards-wrap {
  width: 100%;
  height: 100px;
  margin: 10px auto 0;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.cp-awards-wrap > div {
  width: 100%;
  background: url(awards.png) center no-repeat;
  position: absolute;
  background-size: 809px; /* Get the full size of the image and divide it by 2 */
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
	@-webkit-keyframes moveAwards {
      from { background-position: 0 50%; }
      to { background-position: -1391px 50%; }
  }

  @-moz-keyframes moveAwards {
      from { background-position: 0 50%; }
      to { background-position: -1391px 50%; }
  }

  @keyframes moveAwards {
      from { background-position: 0 50%; }
      to { background-position: -1391px 50%; }
  }

  .cp-awards-wrap:focus .cp-awards-move,
  .cp-awards-wrap:hover .cp-awards-move{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
  }
  
  .cp-awards-wrap .cp-awards-move {
    -webkit-animation: moveAwards 30s linear infinite;
    -moz-animation: moveAwards 30s linear infinite;
    animation: moveAwards 30s linear infinite;
  }
  
  .cp-awards-wrap > div {
    width: 100%;
    background: url(awards.png) center repeat-x;
    position: absolute;
    background-size: 809px; /* Get the full size of the image and divide it by 2 */
    top: 0;
    left: 0;
    height: 100%;
    transform: translate3d(0, 0, 0);
  }
}

/* SCROLLING BANNER
==================== */
.banner-wrap {
  width: 100%;
}

.banner-wrap .cp-content-wrap .cp-content-trigger {
  position: relative;
  width: 45px;
  height: 45px;
  background: #ffcc33;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease 0.2s background;
  pointer-events: none;
}

.banner-wrap .cp-content-wrap .cp-content-trigger:after {
  content:'';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #ffcc33;
  border-bottom: 10px solid transparent;
  transition: ease 0.2s border-color;
  z-index: 2;
}

.banner-wrap .cp-content-wrap .cp-content-trigger:focus,
.banner-wrap .cp-content-wrap .cp-content-trigger:hover {
  background: #1f387f;
}

.banner-wrap .cp-content-wrap .cp-content-trigger:focus:after,
.banner-wrap .cp-content-wrap .cp-content-trigger:hover:after {
  border-left-color: #1f387f;
}

.banner-wrap .cp-content-wrap .cp-content-trigger .cp-font-icon{
  font-size: 1.5rem;
  color: #000;
}

.banner-wrap .cp-content-wrap .cp-content-block {
  position: absolute;
  top: 0;
  display: block;
  left: 45px;
  background: #fff;
  width: calc(100% - 45px);
  height: 45px;
  transition: ease 0.2s width;
}

.banner-wrap .cp-content-wrap .cp-content-block.cp-content-active {
  width: calc(100% - 45px);
}

.banner-wrap .scrolling-banner {
  font-size: 1.7rem;
  color: #000;
  width: 100%;
  line-height: 45px;
}

@media (min-width:981px) {
  .banner-wrap {
    position: absolute;
    top: calc(100vh - 45px);
    right: 0;
    z-index: 6;
    overflow: hidden;
  }
}

@media (max-width:980px) {
  .banner-wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 106;
  }

  .banner-wrap .cp-content-block {
    border-top: 1px solid #000;
  }
}


@media (min-width: 981px) {
  
  .main-nav .home-btn {
    visibility: hidden;
  }

  .content-container {
    padding: 0;
    min-height: 0;
  }

  /* Slideshow
  ============ */

  .img-wrap {
    height: calc(100vh - 59px);
  } 

  .home-full-width-slideshow {
    position: absolute;
    left: 0;
    top: 59px;
    height: calc(100% - 59px);
    width: 100%;
  }
  
  .img-wrap:after {
    bottom: 65px;
  }

}

@media (min-width: 981px) and (max-width: 1200px) {
  .img-wrap:after {
    
font-size: 42rem;
  }
}

@media (max-width: 980px) {
  
  .container {
    display: flex;
    flex-direction: column;
  }

  .top-bar {
    order: 1;
  }

  .main-header {
    order: 2;
  }

  .contact-trigger {
    order: 3;
  }

  .get-in-touch {
    order: 4;
  }

  .img-wrap {
    order: 8;
  }

  .cp-side-bar {
    order: 6;
  }

  .welcome-text-wrap {
    order: 7;
  }

  .updates-area-blocks {
    order: 5;
  }

  .house-points {
    order: 9;
  }

  .cp-awards-wrap {
    order: 10;
  }

  .main-footer {
    order: 11;
  }

  .content-container {
    padding: 0;
  }

  /* Slideshow */
  .img-wrap {
    display: block;
  }

  .main-footer {
    padding-bottom: 40px;
  }

}
