.page-title,
.breadcrumbs,
.main-nav .home-btn {
  display: none;
}

.home-link {
  pointer-events: none;
}

.inner-container,
.content-container {
  padding: 0;
  height: 0;
  min-height: 0;
  margin: 0;
}

/* Interactive Bar
=================== */
.interactive-bar {
	padding: 0 10px 20px;
}

.interactive-bar .ceop-link {
	display: block;
}

/* Navigation
============= */
@media (min-width: 981px) and (max-width: 1366px) {
  .main-nav > ul {
  	max-width: 714px;
  }
}

/* Slideshow
====================== */
@media (min-width: 981px) {
  .img-wrap {
    height: calc(100vh - 106px);
    width: calc(100% - 240px);
    margin-left: auto;
   }
  
  @-moz-document url-prefix() {
    .img-wrap {
      height: calc(100vh - 107px);
    }
  }
  
  .home-full-width-slideshow {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .img-wrap {
    display: block;
  }
}

/* Scrolling Banner
===================== */
.scrolling-banner {
  position: relative;
  font-size: 1.8rem;
  color: var(--light-col);
  background: var(--secondary-col);
  padding: 13px 0;
  box-sizing: border-box;
}

@media (min-width: 981px) {
  .scrolling-banner {
    width: calc(100% - 240px);
    margin-left: auto;
  }
}

@media (max-width: 980px) {
  .scrolling-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 106;
  }
}

/* CTA
===========*/
.cta {
  position: relative;
  border-radius: 22px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  box-sizing: border-box;
  transition: ease 0.2s opacity;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--light-col);
  background: var(--secondary-col);
}

.cta:focus,
.cta:hover {
  color: var(--light-col);
  opacity: 0.8;
}

.cta .cta-svg-icon {
  height: 16px;
  width: 16px;
  fill: var(--light-col);
  margin-left: 10px;
}

@media (max-width: 640px) {
  .cta {
    font-size: 1.4rem;
  }

  .cta .cta-svg-icon {
    height: 14px;
    width: 14px;
  }

}

/* Popout Block
==================*/

.popouts-block {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pb-item-wrap {
  flex: 1;
}

/* Triggers */
.pb-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  border: none;
  padding: 20px;
  box-sizing: border-box;
  z-index: 5;
}

/* Individual Trigger Image */
.pb-item-wrap:nth-child(1) .pb-trigger {
  background: url(pb-trigger-1.jpg) center no-repeat;
  background-size: cover;
}

.pb-item-wrap:nth-child(2) .pb-trigger {
  background: url(pb-trigger-2.jpg) center no-repeat;
  background-size: cover;
}

.pb-item-wrap:nth-child(3) .pb-trigger {
  background: url(pb-trigger-3.jpg) center no-repeat;
  background-size: cover;
}

.pb-item-wrap:nth-child(4) .pb-trigger {
  background: url(pb-trigger-4.jpg) center no-repeat;
  background-size: cover;
}

.pb-item-wrap:nth-child(5) .pb-trigger {
  background: url(pb-trigger-5.jpg) center no-repeat;
  background-size: cover;
}

/* Trigger Overlays */
.pb-trigger:before,
.pb-trigger:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: ease 0.2s background;
}

/* Primary Colour Overlay */
.pb-trigger:before {
  background: var(--primary-col);
  opacity: 0.85;
  z-index: 2;
}

/* Black Colour Overlay */
.pb-trigger:after {
  background: var(--black-col);
  opacity: 0.32;
  z-index: 1;
}

.pb-item-wrap:nth-child(even) .pb-trigger:after {
  opacity: 0.15;
}

.pb-trigger.pb-active:before,
.pb-trigger:focus:before,
.pb-trigger:hover:before {
  background: var(--secondary-col);
}

/* Icon Styling */
.pb-svg-icon {
  position: relative;
  width: 40px;
  height: 40px;
  fill: var(--light-col);
  z-index: 3;
  transition: ease 0.2s fill;
  margin-bottom: 10px;
}

.pb-trigger.pb-active .pb-svg-icon,
.pb-trigger:focus .pb-svg-icon,
.pb-trigger:hover .pb-svg-icon{
  fill: var(--primary-col);
}

/* Text Styling */
.pb-icon-text {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--light-col);
  z-index: 3;
  transition: ease 0.2s color;
  font-family: Montserrat, 'Segoe UI', Tahoma, 'Helvetica Neue', Helvetica, sans-serif;
}

.pb-trigger.pb-active .pb-icon-text,
.pb-trigger:focus .pb-icon-text,
.pb-trigger:hover .pb-icon-text{
  color: var(--light-col);
}

@media (min-width: 981px) {
  .popouts-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: calc(100vh - 52px);
  }

  /* Content */
  .pb-content {
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 100%;
    transition: ease 0.2s width;
    overflow: hidden;
    z-index: 106;
  }

  .pb-content:before,
  .pb-content:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .pb-content:before {
    background: var(--black-col);
    opacity: 0.2;
    z-index: 3;
  }

  .pb-content:after {
    background: var(--primary-col);
    opacity: 0.95;
    z-index: 2;
  }


  .pb-content.pb-active {
    width: 500px;
  }

}

@media (min-width: 981px) and (max-height: 650px) {
  .pb-svg-icon {
    width: 20px;
    height: 20px;
  }
}

/* Individual Popout Content Styling */
/* Welcome Block */
.welcome-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 5;
  padding: 40px 30px;
  box-sizing: border-box;
  background: var(--primary-col);
}

.welcome-wrap {
  max-width: 422px;
}

.welcome-block .heading {
  position: relative;
  font-size: 3rem;
  color: var(--light-col);
  line-height: 1.2;
}

.welcome-block .heading:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--light-col);
  margin: 10px 0;
}

.welcome-text {
  color: var(--light-col);
  font-size: 1.6rem;
  margin-bottom: 60px;
}

@media (min-width: 981px) {
  .welcome-block {
    background: none;
    padding: 40px;
  }

  .welcome-wrap {
    min-width: 422px;
  }

  .welcome-block .heading:after {
    margin: 30px 0;
  }

  .welcome-text {
    max-height: 125px;
    overflow: hidden;
  }

}

@media (max-width: 640px) {
  .welcome-block {
    padding: 40px 20px;
  }

  .welcome-block .heading {
    font-size: 2rem;
  }

  .welcome-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

}


/* Updates Block */
.updates-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 5;
  padding: 40px 30px;
  box-sizing: border-box;
  background: var(--primary-col);
}

.updates-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--black-col);
  opacity: 0.3;
  z-index: 1;
}

.updates-wrap {
  position: relative;
  max-width: 422px;
  width: 100%;
  z-index: 1;
}

.updates-block .heading {
  position: relative;
  font-size: 3rem;
  color: var(--light-col);
  line-height: 1.2;
}

.updates-block .heading:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--light-col);
  margin: 10px 0;
}

/* Updates Area */
.updates-area ul {
  list-style: none;
  list-style-position: outside;
}

.updates-area li {
  position: relative;
  color: var(--light-col);
  font-size: 2rem;
  margin-bottom: 20px;
}

.updates-area li:last-child {
  margin-bottom: 60px;
}

.updates-area li a {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--light-col);
  font-size: 2rem;
  font-weight: 600;
  transition: ease 0.2s opacity;
  max-width: 100%;
}

.updates-area li a:focus,
.updates-area li a:hover {
  opacity: 0.7;
}

.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;
}

@media (min-width: 981px) {
  .updates-block {
    background: none;
    padding: 40px;
  }

  .updates-block:before {
    display: none;
  }

  .updates-wrap {
    min-width: 422px;
  }

  .updates-block .heading:after {
    margin: 20px 0;
  }

}

@media (max-width: 640px) {
  .updates-block {
    padding: 40px 20px;
  }

  .updates-wrap {
    width: 100%;
  }

  .updates-block .heading {
    font-size: 2rem;
  }

  .updates-area li {
    font-size: 1.6rem;
  }

  .updates-area li a {
    font-size: 1.6rem;
  }

  .updates-area li:last-child {
    margin-bottom: 30px;
  }

  .updates-area li {
    margin-bottom: 10px;
  }

}

/* House points Block */
.housepoints-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 5;
  padding: 40px 30px;
  box-sizing: border-box;
  background: var(--primary-col);
}

.housepoints-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--black-col);
  opacity: 0.2;
  z-index: 1;
}

.housepoints-wrap {
  position: relative;
  max-width: 422px;
  width: 100%;
  z-index: 1;
}

.housepoints-block .heading {
  position: relative;
  font-size: 3rem;
  color: var(--light-col);
  line-height: 1.2;
}

.housepoints-block .heading:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--light-col);
  margin: 10px 0 30px;
}

/* House Point Item */
.housepoint-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 22px;
  padding: 10px 20px;
  box-sizing: border-box;
  background: var(--black-col);
}

.housepoint-item:not(:last-child) {
  margin-bottom: 10px;
}

.house-name,
.house-point{
  font-size: 2rem;
  font-weight: 600;
  color: var(--light-col);
}

.house-point {
  max-width: 108px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Individual House Points */
.housepoint-item:nth-child(1) {
  background: var(--housepoints-1);
}

.housepoint-item:nth-child(2) {
  background: var(--housepoints-2);
}

.housepoint-item:nth-child(3) {
  background: var(--housepoints-3);
}

.housepoint-item:nth-child(4) {
  background: var(--housepoints-4);
}

.housepoint-item:nth-child(5) {
  background: var(--housepoints-5);
}

.housepoint-item:nth-child(6) {
  background: var(--housepoints-6);
}

.housepoint-item:nth-child(7) {
  background: var(--housepoints-7);
}

.housepoint-item:nth-child(8) {
  background: var(--housepoints-8);
}

.housepoint-item:nth-child(9) {
  background: var(--housepoints-9);
}

.housepoint-item:nth-child(10) {
  background: var(--housepoints-10);
}

@media (min-width: 981px) {
  .housepoints-block {
    background: none;
    padding: 40px;
  }

  .housepoints-block:before {
    display: none;
  }

  .housepoints-wrap {
    min-width: 422px;
    max-width: 100%;
  }

  .housepoints-block .heading:after {
    margin: 20px 0;
  }

}

@media (min-width: 981px) and (max-height: 790px) {
  .housepoint-item {
    padding: 5px 10px;
  }
  
  .house-name,
  .house-point{
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .housepoints-block {
    padding: 40px 20px;
  }

  .housepoints-wrap {
    width: 100%;
  }

  .housepoints-block .heading {
    font-size: 2rem;
  }

  .housepoints-block .heading:after {
    margin: 10px 0 20px;
  }

  .housepoint-item {
    padding: 10px 10px;
  }

  .house-point {
    max-width: 76px;
  }

  .house-name,
  .house-point{
    font-size: 1.6rem;
  }

}

/* Contact Block */
.contact-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 5;
  padding: 40px 30px;
  box-sizing: border-box;
  background: var(--primary-col);
}

.contact-wrap {
  max-width: 422px;
  width: 100%;
}

.contact-block .heading {
  position: relative;
  font-size: 3rem;
  color: var(--light-col);
  line-height: 1.2;
}

.contact-block .heading:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--light-col);
  margin: 10px 0 20px;
}

/* Contact Items Styling */
.contact-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  line-height: 1.2;
}

.contact-item:not(:last-child) {
  margin-bottom: 30px;
}

.cb-svg-icon {
  width: 17px;
  height: 17px;
  fill: var(--light-col);
  margin-right: 10px;
}

.cb-link {
  font-size: 2rem;
  font-weight: 600;
  color: var(--light-col);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  transition: ease 0.2s opacity;
}

.cb-link:focus,
.cb-link:hover {
  color: var(--light-col);
  opacity: 0.7;
}

.ci-phone .cb-link {
  max-width: 142px;
}

.address-line {
  display: block;
  color: var(--light-col);
  font-size: 2rem;
}

@media (min-width: 981px) {
  .contact-block {
    background: none;
    padding: 40px;
  }

  .contact-wrap {
    min-width: 422px;
  }

  .contact-block .heading:after {
    margin: 20px 0;
  }

  .contact-item:last-child {
    margin-bottom: 60px;
  }

  .ci-phone {
    pointer-events: none;
  }

}

@media (max-width: 640px) {
  .contact-block {
    padding: 40px 20px;
  }

  .contact-block .heading {
    font-size: 2rem;
  }

  .cb-svg-icon {
    width: 14px;
    height: 14px;
  }

  .cb-link {
    font-size: 1.6rem;
    max-width: 220px;
  }

  .ci-phone .cb-link {
    max-width: 115px;
  }

  .address-line {
    font-size: 1.6rem;
  }

}