html,
body,
.container {
  height: 100%;
}

.main-header {
  padding: 30px 0 0 30px;
}

/* Page Structure
================= */

.school-title h1 {
  color: #fff;
}

.school-title h2 {
  color: #fff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.school-title p {
  color: #fff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.content-container {
  height: 0;
  padding: 0;
  background: none;
  min-height: 0;
}

.container .notice-block {
  display:none;
}

/* 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 #1849b5;
  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 #1849b5;
  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 (max-width: 1200px) {
  .screen-lock .notice-block {
    width: 940px;
    padding: 30px 20px;
  }
}

/* Home Navigation
================== */

.main-nav li {
  position: absolute;
}

.main-nav .home-btn {
  display: none;
}

/* Home Text */

.home-text {
  position: absolute;
  top: 146px;
  left: 190px;
  width: 745px;
  height: 63px;
  overflow: hidden;
  padding: 10px;
  border: solid 2px #084989;
  border-radius: 5px;
  line-height: 1.3;
  text-align: left;
  color: #05325e;
  background-color: #add9fe;
}

/* Home Slideshow
================== */

.home-slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  overflow: hidden;
}

.home-slideshow::after {
  content: "";
  top: 0;
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

/* Bottom Feed
=============== */

.scrolling-banner {
  width: calc(100% - 220px);
}

/* Animations */

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

/* Quick Links */

.quick-links-wrap {
  position: fixed;
  left: 30px;
  bottom: 130px;
  perspective: 600px;
}

.quick-link span::before {
  transition: transform 0.5s linear;
}

.quick-link:hover span::before,
.quick-link:focus span::before {
  transform: rotateY(360deg);
}

/* Twitter */

.twitter-wrap {
  position: absolute;
  right: 55px;
  bottom: 175px;
}

@media (max-width: 1300px) {
  .main-header {
    padding: 120px 0 0 30px;
  }
}


