.container {
  background: none;
}

.inner-container {
  background: none;
}

.content-container {
  padding: 0;
  border: none;
  background: none;
}

.welcome-wrap {
  background: #113191;
  text-align: center;
  padding-top: 5px;
}

.welcome-wrap h2 {
  font-size: 3rem;
}

.welcome-wrap h1 {
  font-size: 3rem;
}

.home-text {
  padding: 10px 15px;
  line-height: 1.3;
  color: #fff;
  font-size: 2rem;
}

.cp-revealing-content {
  background: #091c54;
}

.cp-responsive-wrap {
  position: relative;
  width: 200px;
  margin: 0 auto;
  display: block;
}

.cp-font-icon {
  display: block;
  padding-top: 6px;
  left: 10px;
}

.cp-screen-reader,
.cp-icon-font {
  line-height: 27px;
}

.cp-content-trigger {
  width: 100%;
  height: 81px;
  font-size: 1.6rem;
  border-bottom: 1px solid #113191;
  line-height: 50px;
}

/* Updates Area */

.updates-area {
  padding: 15px 15px;
  font-size: 0;
  text-align: center;
}

/* House Points */

.house-points {
  text-align: center;
  background: #fff;
}

.house-points li {
  padding: 20px;
}

/* Attendance
==============*/

.attendance {
  text-align: center;
}

.attendance li {
  padding: 20px;;
}

/* Content Link
=================*/

.content-link {  
  display: block;  
  text-align: center;  
  width: 100%;  
  height: 66px;  
  padding: 15px 0;
}

/* Scrolling Awards Bar */
@-webkit-keyframes awards-move {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-565px);
    transform: translateX(-565px);
  }
}

@-moz-keyframes awards-move {
  from {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -moz-transform: translateX(-565px);
    transform: translateX(-565px);
  }
}

@keyframes awards-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-565px);
  }
}

.cp-awards-wrap {
  position: relative;
  height: 80px;
  background: #fff;
  overflow: hidden;
}

.cp-awards-move {
  z-index: 100;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: -565px;/* width of awards.png graphic */
  background: url(awards.png) left center repeat-x;
  -webkit-animation: awards-move 30s linear infinite;/* You might need to change the speed depending on awards bar dimensions */
  -mozt-animation: awards-move 30s linear infinite;/* You might need to change the speed depending on awards bar dimensions */
  animation: awards-move 30s linear infinite; /* You might need to change the speed depending on awards bar dimensions */
}

.cp-awards-wrap:focus .cp-awards-move,
.cp-awards-wrap:hover .cp-awards-move {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused;
}

/* Additional Media Queries (Images etc.)
====================================== */
@media (max-width: 640px) {
  .updates-area li {
    display: block;
    width: 100%;
  }
}