@charset "UTF-8";
/* 

1. Variables
	- imports
	- colours
	- gradients
	- media queries
	- fonts
	- animation times
2. General
3. Banner
4. Home
5. Main Content
6. Modules
7. Custom Post Archives
8. Newsletter
9. Footer
*/
/*
	1. Variables
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Paytone+One&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
	2. General
*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*
  	@media only screen and (min-width: 769px) and (max-width: 1024px) {
  		font-size: 52.5%;
  	}
  	@media only screen and (min-width: 516px) and (max-width: 768px) {
  		font-size: 52.5%;
  	}
  */
}
body {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.8rem;
  line-height: 150%;
  overflow-x: hidden;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  body {
    font-size: 1.4rem;
  }
}
body.modal {
  overflow: hidden;
  height: 100vh;
}
body h1, body h2, body h3, body h4 {
  font-family: "Paytone One", sans-serif;
}
body h1,
body h2 {
  font-size: 6rem;
  line-height: 1.25em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  body h1,
  body h2 {
    font-size: 3.4rem;
  }
}
body h3 {
  font-size: 4.8rem;
}
body h4 {
  font-size: 2.8rem;
}
body p strong {
  font-weight: 600;
}
body p a {
  transition-duration: 0.2s;
}
body .gform_wrapper h2.gform_title {
  display: none !important;
}

.outer {
  width: 100vw;
  position: relative;
}
.outer.grey {
  background-color: #F5F5F5;
}
.outer.pale-purple {
  background-color: rgba(94, 13, 147, 0.2);
}
.outer.pale-green {
  background-color: rgba(0, 175, 181, 0.2);
}
.outer .inner {
  margin: 0 auto;
  position: relative;
  width: calc(100vw - 14rem);
  max-width: 159.2rem;
  min-width: 300px;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  .outer .inner {
    width: calc(100vw - 4rem);
  }
}
.outer .inner a {
  transition-duration: 0.25s;
}

div.grey-bg {
  background-color: #F5F5F5;
}
div.purple-bg {
  background-color: #5E0D93;
}

.link-button {
  display: inline-block;
}
.link-button a {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  height: 5.4rem;
  padding: 1.7rem 4rem;
  background-color: #00AFB5;
  color: #5E0D93;
  text-transform: uppercase;
  cursor: pointer;
  transition-duration: 0.25s;
  border-radius: 3rem;
  box-sizing: border-box;
  border-bottom: none;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  .link-button a {
    font-size: 1.3rem;
    line-height: 1.3rem;
    height: 3rem;
    padding: 2rem 1.6rem;
  }
}
.link-button a:hover {
  background-color: #FDE371;
}
.link-button.outline a {
  border: 2px solid #00AFB5;
  background-color: transparent;
}
.link-button.outline.purple a {
  border-color: #5E0D93;
}
.link-button.outline.purple a:hover {
  background-color: #5E0D93;
  color: white;
}
.link-button.purple-bg a {
  color: white;
}
.link-button.purple-bg a:hover {
  color: #00AFB5;
}
.link-button.teal-bg a {
  color: #7209B7;
  background-color: #00AFB5;
  border-bottom: none;
}
.link-button.teal-bg a:hover {
  background-color: #FDE371;
}

/*
	3. Banner
*/
#booking-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1052px;
  max-width: calc(100vw - 8rem);
  min-height: 482px;
  background: #5E0D93;
  border: 2px solid white;
  z-index: 999999;
  opacity: 1;
  transition-duration: 0.3s;
  transition-property: all;
  pointer-events: all;
  box-sizing: border-box;
  padding: 150px 150px 0 150px;
  text-align: center;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #booking-modal {
    max-width: calc(100vw - 4rem);
    padding: 80px 20px 0 20px;
  }
}
#booking-modal.hidden {
  pointer-events: none;
  opacity: 0;
}
#booking-modal h2 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 280px;
  height: 173px;
  background-image: url("../images/book-ticket.svg");
  text-indent: -99999px;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #booking-modal h2 {
    width: 200px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
#booking-modal p {
  color: #FDE371;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 2.4rem;
  line-height: 3.5rem;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #booking-modal p {
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 2rem;
  }
}
#booking-modal p a {
  font-family: "Paytone One", sans-serif;
  color: white;
  font-size: 2.6rem;
}
#booking-modal p a:hover {
  color: #FDE371;
}
#booking-modal .close {
  position: absolute;
  top: 24px;
  right: 10px;
  width: 50px;
  height: 60px;
  background-image: url("../images/modal-close.svg");
  text-indent: -99999px;
  cursor: pointer;
  transition-duration: 0.2s;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #booking-modal .close {
    text-indent: -99999px;
    width: 40px;
    height: 50px;
    background-repeat: no-repeat;
    top: 10px;
  }
}
#booking-modal .close:hover {
  transform: scale(1.04);
}

#search-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FDE371;
  z-index: 999999;
  transition-duration: 0.4s;
}
#search-modal.hidden {
  width: 0;
  height: 0;
  opacity: 0;
}
#search-modal .inner {
  position: relative;
  transition-duration: 0.2s;
  height: 100%;
  opacity: 1;
}
#search-modal .inner.hidden {
  opacity: 0;
}
#search-modal .inner #search-form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
}
#search-modal .inner #search-form #s {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #5E0D93;
  outline: none;
  padding: 1rem 0;
  width: 100%;
  font-size: 4rem;
  line-height: 4rem;
  font-family: "Be Vietnam Pro", sans-serif;
  color: #5E0D93;
  caret-color: #5E0D93;
}
#search-modal .inner #search-form #s::placeholder {
  color: #5E0D93;
  opacity: 0.25;
}
#search-modal .inner #search-form #searchsubmit {
  display: none;
}
#search-modal .close {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
  text-indent: -999999px;
  cursor: pointer;
  transition-duration: 0.25s;
}
#search-modal .close:before, #search-modal .close:after {
  width: 100%;
  height: 3px;
  background-color: #5E0D93;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}
#search-modal .close:hover {
  transform: scale(1.2);
}
#search-modal .close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#search-modal .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#banner {
  position: fixed;
  box-sizing: border-box;
  height: 18.2rem;
  background-color: #5E0D93;
  z-index: 9999;
  top: 0;
  transition-duration: 0.4s;
}
.banner-hide #banner {
  top: -18.2rem;
}
#banner.transparent {
  background-color: transparent;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner {
    height: 8rem;
  }
}
#banner .inner {
  padding: 2.6rem 0 5rem 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner {
    padding: 1.4rem 0;
  }
}
#banner .inner #website-title a {
  display: block;
  width: 23.2rem;
  height: 11rem;
  text-indent: -9999px;
  background-image: url("../images/simply-schools-logo.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #website-title a {
    width: 11rem;
    height: 4.65rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #banner-links #main-links {
    display: none;
  }
}
#banner .inner #banner-links #main-links li {
  font-family: "Paytone One", sans-serif;
  font-size: 2.8rem;
  display: inline-block;
  padding-left: 4rem;
}
#banner .inner #banner-links #main-links li a {
  color: white;
  display: block;
  transition-duration: 0.25s;
}
#banner .inner #banner-links #main-links li a:hover {
  color: #FDE371;
}
#banner .inner #menu-control {
  position: relative;
  display: none;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #menu-control {
    display: block;
  }
}
#banner .inner #menu-control #main-menu-button {
  border: none;
  text-indent: -99999px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  width: 30px;
  height: 24px;
  transform: translate(0, 4px);
  background-color: transparent;
  cursor: pointer;
  transition-duration: 0.2s;
}
.mobile-menu-open #banner .inner #menu-control #main-menu-button {
  border-color: rgba(255, 255, 255, 0);
}
#banner .inner #menu-control:before, #banner .inner #menu-control:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: white;
  top: 15px;
  left: 0;
  pointer-events: none;
  transition-duration: 0.2s;
}
.mobile-menu-open #banner .inner #menu-control:before {
  transform: rotate(45deg);
}
.mobile-menu-open #banner .inner #menu-control:after {
  transform: rotate(-45deg);
}
#banner .inner #quick-links {
  text-align: right;
  height: 5.4rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: flex-end;
}
#banner .inner #quick-links #booking-link {
  display: inline-block;
  height: 5.4rem;
  margin-right: 4rem;
  background-color: transparent;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #quick-links #booking-link {
    height: 3rem;
    margin-right: 1rem;
  }
}
#banner .inner #quick-links #booking-link a {
  height: 5.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #quick-links #booking-link a {
    box-sizing: inherit;
    font-size: 1.1rem;
    line-height: 1.1rem;
    height: 1.1rem;
    padding: 0.8rem 1rem;
  }
}
#banner .inner #quick-links #banner-search {
  display: block;
  width: 5.4rem;
  height: 5.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #quick-links #banner-search {
    width: 3rem;
    height: 3rem;
  }
}
#banner .inner #quick-links #banner-search a {
  text-align: left;
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  background-color: #FDE371;
  text-indent: -9999px;
  border-radius: 50%;
  position: relative;
  transition-duration: 0.25s;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #quick-links #banner-search a {
    width: 3rem;
    height: 3rem;
  }
}
#banner .inner #quick-links #banner-search a:hover {
  background-color: #00AFB5;
}
#banner .inner #quick-links #banner-search a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), calc(-50% - 0.2rem));
  border: 3px solid #5E0D93;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  box-sizing: border-box;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #quick-links #banner-search a:before {
    width: 1.4rem;
    height: 1.4rem;
    border-width: 2px;
    transform: translate(-50%, -50%);
  }
}
#banner .inner #quick-links #banner-search a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.5rem;
  transform: translate(0.35rem, 0.65rem) rotate(45deg);
  background-color: #5E0D93;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #banner .inner #quick-links #banner-search a:after {
    width: 0.7rem;
    height: 0.2rem;
    transform: translate(0.25rem, 0.55rem) rotate(45deg);
  }
}

#mobile-menu {
  display: none;
}
#mobile-menu.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #5E0D93;
  z-index: 9995;
}
#mobile-menu.open ul {
  margin-top: 100px;
}
#mobile-menu.open ul li {
  text-align: center;
}
#mobile-menu.open ul li a {
  color: white;
  font-size: 3rem;
  line-height: 4.5rem;
}

#breadcrumb-bar {
  border-top: 18.2rem solid #5E0D93;
  background-color: #00AFB5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #breadcrumb-bar {
    border-top-width: 6rem;
  }
}
#breadcrumb-bar .inner {
  padding: 3rem 0 2rem;
  height: 1.8rem;
  line-height: 1.8rem;
}
#breadcrumb-bar .inner p {
  color: white;
}
#breadcrumb-bar .inner p a {
  color: #FDE371;
}
#breadcrumb-bar .inner p a:hover {
  color: #5E0D93;
}
#breadcrumb-bar .inner p .separator {
  display: inline-block;
  width: 12px;
  height: 18px;
  margin: 0 1rem;
  text-indent: -99999px;
  position: relative;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #breadcrumb-bar .inner p .separator {
    width: 5px;
    height: 8px;
    margin: 0 0.5rem;
  }
}
#breadcrumb-bar .inner p .separator:after {
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #5E0D93;
  border-bottom: 2px solid #5E0D93;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #breadcrumb-bar .inner p .separator:after {
    top: 120%;
    left: calc(50% - 2px);
    width: 5px;
    height: 5px;
  }
}

#title-bar {
  padding: 9rem 0 3rem 0;
}
#title-bar h1 {
  font-size: 6rem;
  color: #5E0D93;
}

/*
	4. Home
*/
#carousel {
  height: calc(100vh - 18.2rem);
  max-height: 60vw;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel {
    max-height: none;
    height: 100vh;
  }
}
.home #carousel {
  height: 100vh;
}
#carousel .slide {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel .slide {
    background-image: none !important;
  }
}
#carousel .slide .image {
  display: none;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel .slide .image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 27.3rem);
    background-position: center center;
    background-size: cover;
  }
}
#carousel .slide .inner {
  height: 100%;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel .slide .inner {
    width: 100%;
  }
}
#carousel .slide .inner .description {
  z-index: 999;
  width: 40%;
  height: 42rem;
  box-sizing: border-box;
  padding: 6rem 4.8rem;
  background-color: #5E0D93;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel .slide .inner .description {
    width: 100%;
    height: 27.3rem;
    padding: 5rem 2.6rem;
  }
}
#carousel .slide .inner .description.venue {
  background-color: #00AFB5;
}
#carousel .slide .inner .description.venue .link-button a {
  background-color: #FDE371;
}
#carousel .slide .inner .description.venue .link-button a:hover {
  background-color: #5E0D93;
  color: #FDE371;
}
#carousel .slide .inner .description .post-type {
  position: absolute;
  top: -3.2rem;
  width: 6.4rem;
  height: 6.4rem;
  box-sizing: border-box;
  border: 1rem solid transparent;
  border-radius: 50%;
  text-indent: -99999px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
#carousel .slide .inner .description .post-type.session {
  background-color: #FDE371;
  background-image: url("../images/session.svg");
}
#carousel .slide .inner .description .post-type.venue {
  background-color: #5E0D93;
  background-image: url("../images/venue.svg");
}
#carousel .slide .inner .description h3 {
  font-size: 4.2rem;
  line-height: 4.8rem;
  color: white;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel .slide .inner .description h3 {
    font-size: 2.7rem;
    line-height: 3.1rem;
    margin-bottom: 1.6rem;
  }
}
#carousel .slide .inner .description p {
  color: #FDE371;
  font-size: 2.4rem;
  line-height: 3.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #carousel .slide .inner .description p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
#carousel .slide .inner .description .link-button {
  margin-top: 3rem;
}

/*
	5. Main Content
*/
#introduction .inner {
  padding: 11rem 0;
}
#introduction .inner h2 {
  color: #585858;
  margin-bottom: 2rem;
}
#introduction .inner p {
  color: #585858;
  font-size: 2.4rem;
}
#introduction.events-introduction .inner #events-banner-image {
  width: 100%;
  height: auto;
}
#introduction.events-introduction .inner p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 1.8rem;
}
#introduction.events-introduction .inner p.large {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 2.4rem;
}
#introduction.events-introduction .inner .columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
}
#introduction.events-introduction .inner .columns .column {
  width: calc(50% - 40px);
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #introduction.events-introduction .inner .columns .column {
    width: 100%;
  }
}

#resource-banner {
  display: flex;
  flex-wrap: wrap;
}
#resource-banner #resource-banner-image {
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #resource-banner #resource-banner-image {
    width: 100%;
    height: 320px;
  }
}
#resource-banner #resource-banner-image img {
  display: none;
}
#resource-banner #resource-introduction {
  width: 50%;
  background-color: #FDE371;
  padding: 6rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #resource-banner #resource-introduction {
    width: 100%;
    padding: 3rem 0;
  }
}
#resource-banner #resource-introduction h1,
#resource-banner #resource-introduction .text {
  width: calc(50vw - 12.6rem);
  max-width: 74rem;
  min-width: 300px;
  margin-left: 5.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #resource-banner #resource-introduction h1,
  #resource-banner #resource-introduction .text {
    width: calc(100% - 5.2rem);
    margin: 0 auto;
  }
}
#resource-banner #resource-introduction h1 {
  color: #5E0D93;
  font-size: 6rem;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #resource-banner #resource-introduction h1 {
    font-size: 3.4rem;
  }
}
#resource-banner #resource-introduction p {
  margin-bottom: 1.5em;
}
#resource-banner #resource-introduction p.large {
  font-size: 1.333em;
}
#resource-banner #resource-introduction p a {
  color: black;
  font-weight: 600;
}
#resource-banner #resource-introduction h4 {
  font-size: 2.4rem;
  color: #5E0D93;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #resource-banner #resource-introduction h4 {
    font-size: 1.8rem;
  }
}

#venue-banner {
  display: flex;
  flex-wrap: wrap;
}
#venue-banner #venue-banner-image {
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #venue-banner #venue-banner-image {
    width: 100%;
    height: 320px;
  }
}
#venue-banner #venue-banner-image img {
  display: none;
}
#venue-banner #venue-introduction {
  width: 50%;
  background-color: #FDE371;
  padding: 6rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #venue-banner #venue-introduction {
    width: 100%;
    padding: 3rem 0;
  }
}
#venue-banner #venue-introduction h1,
#venue-banner #venue-introduction .text {
  width: calc(50vw - 12.6rem);
  max-width: 74rem;
  min-width: 300px;
  margin-left: 5.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #venue-banner #venue-introduction h1,
  #venue-banner #venue-introduction .text {
    width: calc(100% - 5.2rem);
    margin: 0 auto;
  }
}
#venue-banner #venue-introduction h1 {
  color: #5E0D93;
  font-size: 6rem;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #venue-banner #venue-introduction h1 {
    font-size: 3.4rem;
  }
}
#venue-banner #venue-introduction p {
  margin-bottom: 1.5em;
}
#venue-banner #venue-introduction p.large {
  font-size: 1.333em;
}
#venue-banner #venue-introduction p a {
  color: black;
  font-weight: 600;
}
#venue-banner #venue-introduction h4 {
  font-size: 2.4rem;
  color: #5E0D93;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #venue-banner #venue-introduction h4 {
    font-size: 1.8rem;
  }
}

#anchor-links {
  text-align: center;
  padding: 2rem 0;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 182px;
  background-color: white;
  z-index: 9999;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #anchor-links {
    display: none;
  }
}
#anchor-links li {
  display: inline-block;
  margin: 0 2rem 2rem 2rem;
}
#anchor-links li a {
  font-size: 2.8rem;
  font-family: "Paytone One", sans-serif;
  color: #5E0D93;
  transition-duration: 0.2s;
}
#anchor-links li a:hover {
  color: #00AFB5;
}

.anchor {
  display: block;
  position: relative;
  top: -380px;
  visibility: hidden;
}

.resource-tiles {
  padding: 6rem 0;
}
.resource-tiles h3 {
  font-size: 4.8rem;
  color: #5E0D93;
  margin-bottom: 4.8rem;
}
.resource-tiles .tile-group.tiles-4 {
  display: flex;
  padding-bottom: 4.8rem;
  border-bottom: 2px solid rgba(0, 175, 181, 0.4);
  flex-wrap: wrap;
}
.resource-tiles .tile-group.tiles-4 .tile {
  width: calc(25% - 40px);
  background-color: white;
  justify-content: flex-start;
  margin-right: 40px;
  margin-bottom: 4.8rem;
  padding-bottom: 4rem;
  position: relative;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  .resource-tiles .tile-group.tiles-4 .tile {
    width: 100%;
  }
}
.resource-tiles .tile-group.tiles-4 .tile .image {
  width: 100%;
  margin-bottom: 4rem;
}
.resource-tiles .tile-group.tiles-4 .tile .image img {
  width: 100%;
  height: auto;
}
.resource-tiles .tile-group.tiles-4 .tile p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 600;
  padding: 0 2.5rem 4rem 2.5rem;
}
.resource-tiles .tile-group.tiles-4 .tile .link-button {
  position: absolute;
  left: 2.5rem;
  bottom: 0;
  transform: translate(0, 50%);
}
.resource-tiles .tile-group.tiles-4 .tile.suggestion {
  padding-top: 8rem;
}
.resource-tiles .tile-group.tiles-4 .tile.suggestion:before {
  content: "";
  width: 100%;
  height: 6rem;
  background: transparent linear-gradient(90deg, #00AFB5 0%, #FDE371 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
}
.resource-tiles .tile-group.tiles-4 .tile.suggestion h4 {
  padding: 0 2.5rem 1rem 2.5rem;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Be Vietnam Pro", sans-serif;
  text-transform: uppercase;
}
.resource-tiles .tile-group.tiles-4 .tile.suggestion p {
  font-weight: 400;
}

#events-table {
  width: 100%;
  margin-bottom: 12rem;
}
#events-table tr {
  border-bottom: 1px solid #5E0D93;
}
#events-table tr th {
  text-align: left;
  font-size: 4rem;
  font-weight: 500;
  color: #00AFB5;
  font-family: "Paytone One", sans-serif;
  padding: 2rem 0 4rem 0;
}
#events-table tr td {
  padding: 2rem 0;
}
#events-table tr td strong {
  font-weight: 600;
}
#events-table tr td a {
  color: black;
  border-bottom: 1px solid #00AFB5;
}
#events-table tr td.event-name {
  width: 50%;
  padding: 2rem 6rem 2rem 0;
}
#events-table tr td.event-dates {
  font-size: 1.8rem;
  padding: 2rem 6rem 2rem 0;
  font-family: "Paytone One", sans-serif;
  color: #5E0D93;
}
#events-table tr td.event-contact {
  font-size: 1.8rem;
}

#facilities-booking {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking {
    display: block;
  }
}
#facilities-booking div {
  padding: 7rem 0;
}
#facilities-booking .text {
  width: calc(50vw - 12.6rem);
  max-width: 74rem;
  min-width: 300px;
  margin-left: 5.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking .text {
    width: calc(100% - 5.2rem);
    max-width: none;
    margin: 0 auto;
  }
}
#facilities-booking .text h3 {
  font-size: 4.8rem;
  line-height: 5.2rem;
  margin-bottom: 0.65em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking .text h3 {
    font-size: 3rem;
  }
}
#facilities-booking #facilities {
  background-color: #5E0D93;
  width: 50%;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking #facilities {
    width: 100%;
  }
}
#facilities-booking #facilities .text {
  margin-left: calc(50vw - 79.6rem);
}
@media only screen and (min-width: 1025px) and (max-width: 1742px) {
  #facilities-booking #facilities .text {
    margin-left: 7rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking #facilities .text {
    margin-left: 2rem;
  }
}
#facilities-booking #facilities h3 {
  color: #FDE371;
}
#facilities-booking #facilities ul {
  columns: 2;
  column-gap: 6rem;
}
#facilities-booking #facilities ul li {
  color: #00AFB5;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 600;
  margin-bottom: 0.6em;
  display: block;
  position: relative;
}
#facilities-booking #facilities ul li span {
  color: white;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking #facilities ul li {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
#facilities-booking #booking-details {
  background-color: #00AFB5;
  width: 50%;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #facilities-booking #booking-details {
    width: 100%;
  }
}
#facilities-booking #booking-details h3 {
  color: #5E0D93;
}
#facilities-booking #booking-details h4 {
  color: #FDE371;
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
#facilities-booking #booking-details p {
  color: white;
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 1.5em;
  font-weight: 500;
}
#facilities-booking #booking-details p a {
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
#facilities-booking #booking-details p a:hover {
  border-bottom-color: white;
}

#sessions-filter {
  padding-bottom: 10rem;
}
#sessions-filter .dropmenus {
  width: calc(100% - 40px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sessions-filter .dropmenus .dropdown {
  width: 50%;
}
#sessions-filter .dropmenus .button {
  width: calc(25% - 30px);
  padding-left: 30px;
  box-sizing: border-box;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #sessions-filter .dropmenus .button {
    width: 100%;
  }
}
#sessions-filter .dropmenus .button button {
  width: calc(100% - 50px);
  height: 5.4rem;
  border: 1px solid #5E0D93;
  background-color: white;
  padding: 1.5rem 4.5rem 2rem 2.5rem;
  text-align: left;
  font-size: 2rem;
  text-transform: uppercase;
  color: #5E0D93;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border-radius: 2.7rem;
  transition-duration: 0.2s;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #sessions-filter .dropmenus .button button {
    width: 100%;
  }
}
#sessions-filter .dropmenus .button button:before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 3rem;
  height: 2px;
  background-color: #5E0D93;
  transform: translate(0, -50%) rotate(-45deg);
}
#sessions-filter .dropmenus .button button:after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 3rem;
  height: 2px;
  background-color: #5E0D93;
  transform: translate(0, -50%) rotate(45deg);
}
#sessions-filter .dropmenus .button button:hover {
  background-color: #5E0D93;
  color: white;
}
#sessions-filter .dropmenus .button button:hover:before, #sessions-filter .dropmenus .button button:hover:after {
  background-color: white;
}
#sessions-filter .dropmenus .dropdown {
  width: calc(25% - 40px);
  position: relative;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #sessions-filter .dropmenus .dropdown {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#sessions-filter .dropmenus .dropdown button {
  width: 100%;
  height: 5.4rem;
  border: 1px solid #5E0D93;
  background-color: white;
  padding: 1.5rem 2.5rem 2rem 2.5rem;
  text-align: left;
  font-size: 2rem;
  text-transform: uppercase;
  color: #5E0D93;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
#sessions-filter .dropmenus .dropdown button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -75%) rotate(135deg);
  width: 16px;
  height: 16px;
  border-top: 2px solid #5E0D93;
  border-right: 2px solid #5E0D93;
}
#sessions-filter .dropmenus .dropdown ul {
  display: block;
  position: absolute;
  top: 5.4rem;
  left: 0;
  z-index: 99999;
  background-color: white;
  width: 100%;
  border-left: 1px solid #5E0D93;
  border-right: 1px solid #5E0D93;
  border-bottom: 1px solid #5E0D93;
  box-sizing: border-box;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: all;
  height: auto;
  max-height: 1px;
  overflow: hidden;
}
#sessions-filter .dropmenus .dropdown ul li {
  border-top: 1px solid rgba(0, 175, 181, 0.35);
  box-sizing: border-box;
  padding: 1.5rem 2.5rem 2rem 2.5rem;
  min-height: 5.4rem;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  color: rgba(0, 175, 181, 0.7);
  cursor: pointer;
  transition-duration: 0.3s;
}
#sessions-filter .dropmenus .dropdown ul li:hover {
  color: #00afb5;
}
#sessions-filter .dropmenus .dropdown ul li.selected {
  color: #5E0D93;
}
#sessions-filter .dropmenus .dropdown.open button {
  border-bottom: none;
}
#sessions-filter .dropmenus .dropdown.open button:after {
  transform: translate(0, -25%) rotate(315deg);
}
#sessions-filter .dropmenus .dropdown.open ul {
  max-height: 999999px;
  opacity: 1;
}

#main-content {
  padding-top: 2.5rem;
}
.archive #main-content {
  padding: 0;
}
#main-content.no-padding {
  padding-top: 0;
}
#main-content h1 {
  font-size: 6rem;
  color: #7209B7;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content h1 {
    font-size: 3.4rem;
  }
}
#main-content h2 {
  font-size: 4.8rem;
  color: #585858;
}
#main-content h3 {
  font-size: 4rem;
  line-height: 120%;
  color: #585858;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content h3 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
}
#main-content h4 {
  font-size: 2.4rem;
  color: #7209B7;
  margin: 4rem 0 2rem 0;
}
#main-content p {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 1.5em;
}
#main-content p.large {
  font-size: 2.4rem;
  line-height: 3rem;
}
#main-content p.small {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
#main-content p strong {
  font-weight: 600;
}
#main-content p em {
  font-style: italic;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content p {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
#main-content img {
  max-width: 100%;
  height: auto;
}
#main-content ul:not(.tag-list, #anchor-links) li {
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
}
#main-content ul:not(.tag-list, #anchor-links) li:before {
  content: "– ";
  color: #00AFB5;
  margin-right: 1rem;
}
#main-content .meta {
  margin-top: 2rem;
}
#main-content .meta ul li {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid #707070;
  color: #707070;
  margin-right: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
#main-content .meta ul li.type {
  color: #5E0D93;
  border-color: #5E0D93;
}
#main-content .venue-columns,
#main-content .venue-archive-tiles {
  padding: 12rem 0 6rem 0;
  border-bottom: 1px solid #5E0D93;
}
#main-content .venue-columns:last-child,
#main-content .venue-archive-tiles:last-child {
  border-bottom: none;
}
#main-content .venue-columns .inner h3 {
  margin-bottom: 6rem;
}
#main-content .venue-columns .inner .columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#main-content .venue-columns .inner .columns .column {
  width: calc(50% - 2rem);
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .venue-columns .inner .columns .column {
    width: 100%;
  }
}
#main-content #session-content a {
  color: #585858;
  border-bottom: 2px solid rgba(0, 175, 181, 0.5);
}
#main-content #session-content a:hover {
  color: #00AFB5;
}
#main-content #session-content .venue {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-family: "Be Vietnam Pro", sans-serif;
  line-height: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #585858;
}
#main-content #session-content #session-details #introduction {
  margin-top: 4rem;
}
#main-content #session-content #session-details img {
  max-width: calc(100% - 4rem);
  height: auto;
}
#main-content #session-content #session-details img#intro-image {
  margin: 4rem 0;
}
#main-content #session-content #session-details .section {
  width: calc(100% - 4rem);
  padding: 3rem 0;
  margin: 6rem 0;
  border-top: 2px solid rgba(0, 175, 181, 0.5);
}
#main-content #session-content #session-details .section:last-child {
  border-bottom: none;
}
#main-content #session-content #session-details .section h3 {
  margin-bottom: 3rem;
}
#main-content #session-content #session-details .section h3.icon {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6rem;
  padding: 2rem 0 2rem 8rem;
}
#main-content #session-content #session-details .section .link-button a {
  background-color: transparent;
  border: 2px solid #7209B7;
  color: #7209B7;
}
#main-content #session-content #session-details .section .link-button a:hover {
  background-color: #7209B7;
  color: #00AFB5;
}
#main-content #session-content #session-booking h2 {
  margin-bottom: 1.5rem;
}
#main-content #session-content #session-booking .gfield {
  position: relative;
}
#main-content #session-content #session-booking .gfield .gfield_label {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  top: 1rem;
  font-size: 1.8rem;
  color: #585858;
  font-weight: 300;
  transition-duration: 0.2s;
}
#main-content #session-content #session-booking .gfield .gfield_label.input-focus {
  top: -0.4rem;
  font-size: 0.9rem;
}
#main-content #session-content #session-booking .gfield .gfield_label.input-focus .gfield_required:before {
  opacity: 0;
}
#main-content #session-content #session-booking .gfield .gfield_label .gfield_required .gfield_required_text {
  display: none;
}
#main-content #session-content #session-booking .gfield .gfield_label .gfield_required:before {
  display: block;
  content: "*";
  color: #585858;
  transform: translate(0.3rem, -0.5rem);
  opacity: 1;
  transition-duration: 0.2s;
}
#main-content #session-content #session-booking .gfield .ginput_container {
  position: relative;
  z-index: 1;
}
#main-content #session-content #session-booking .gfield .ginput_container input {
  font-size: 1.8rem;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  outline: none;
  border: none;
}
#main-content #session-content #session-booking .gfield .ginput_container textarea {
  font-size: 1.8rem;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  outline: none;
  border: none;
}
#main-content #session-content #session-booking .gform_button {
  width: 100%;
  background-color: #00AFB5;
  border: none;
  color: #7209B7;
  text-transform: uppercase;
  height: 5.4rem;
  border-radius: 2.7rem;
  font-weight: 700;
  font-size: 2rem;
  cursor: pointer;
  transition-duration: 0.2s;
  margin-top: 3rem;
}
#main-content #session-content #session-booking .gform_button:hover {
  background-color: #7209B7;
  color: #00AFB5;
}
#main-content .outer.module .inner.single-column.left .column {
  width: calc(100% - 320px);
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #main-content .outer.module .inner.single-column.left .column {
    width: calc(100% - 120px);
  }
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .outer.module .inner.single-column.left .column {
    width: 100%;
  }
}
#main-content .columns-2 {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 12rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .columns-2 {
    display: block;
  }
}
#main-content .columns-2 .column {
  width: 50%;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .columns-2 .column {
    width: 100%;
  }
}
#main-content .columns-2 .column.grey {
  box-sizing: border-box;
  background-color: #F5F5F5;
  padding: 6rem 5.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .columns-2 .column.grey {
    padding: 1rem;
  }
}
#main-content .tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 0 5rem 0;
  width: calc(100vw - 9.6rem);
  max-width: 163.2rem;
  min-width: 320px;
}
#main-content .tile-group .tile {
  background-color: white;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
#main-content .tile-group .tile.hidden, #main-content .tile-group .tile.key-stage-filter-hidden, #main-content .tile-group .tile.topic-filter-hidden, #main-content .tile-group .tile.location-filter-hidden, #main-content .tile-group .tile.type-filter-hidden {
  display: none;
}
#main-content .tile-group .tile .image {
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#main-content .tile-group .tile .image img {
  transition-property: all;
  transition-duration: 0.25s;
  width: 100%;
  height: auto;
}
#main-content .tile-group .tile .type {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 0.3rem 0.5rem;
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #7209B7;
}
#main-content .tile-group .tile .type.activity {
  background-color: #00AFB5;
}
#main-content .tile-group .tile .description {
  padding: 3.6rem;
  position: relative;
  padding-bottom: 6rem;
}
#main-content .tile-group .tile .description h4 {
  color: #7209B7;
  margin: 0 0 1.2rem 0;
}
#main-content .tile-group .tile .description h5 {
  font-family: "Be Vietnam Pro", sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 900;
  color: #707070;
}
#main-content .tile-group .tile .description p {
  color: #707070;
  font-size: 1.6rem;
}
#main-content .tile-group .tile .link-button {
  position: absolute;
  left: 3.6rem;
  bottom: 0;
  transform: translate(0, 50%);
}
#main-content .tile-group .tile:hover .image img {
  transform: scale(1.1);
}
#main-content .tile-group .tile:hover .link-button a {
  background-color: #5E0D93;
  color: #00AFB5;
}
#main-content .tile-group.tiles-3 .tile {
  width: calc(33.33333333% - 4rem);
  margin: 2rem 2rem 6rem 2rem;
}
@media only screen and (min-width: 516px) and (max-width: 768px), only screen and (min-width: 769px) and (max-width: 1024px) {
  #main-content .tile-group.tiles-3 .tile {
    width: calc(50% - 4rem);
  }
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group.tiles-3 .tile {
    width: 100%;
    margin: 0 0 6rem 0;
  }
}
#main-content #venue-list .tile-group .tile {
  background-color: #5E0D93;
}
#main-content #venue-list .tile-group .tile .description {
  color: white;
}
#main-content #venue-list .tile-group .tile .description h4 {
  color: white;
}
#main-content #venue-list .tile-group .tile .description h5 {
  color: #FDE371;
}
#main-content #venue-list .tile-group .tile:hover .link-button a {
  background-color: #FDE371;
  color: #5E0D93;
}

#main-content .tile-group-2,
#modules .tile-group-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2,
  #modules .tile-group-2 {
    display: block;
  }
}
#main-content .tile-group-2 .tile,
#modules .tile-group-2 .tile {
  min-width: 300px;
  width: calc(50% - 2rem);
  position: relative;
  padding-bottom: 14.4rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2 .tile,
  #modules .tile-group-2 .tile {
    width: 100%;
  }
}
#main-content .tile-group-2 .tile .tile-type,
#modules .tile-group-2 .tile .tile-type {
  font-family: "Paytone One", sans-serif;
  font-size: 4.8rem;
  color: #585858;
  margin-bottom: 6rem;
  position: relative;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2 .tile .tile-type,
  #modules .tile-group-2 .tile .tile-type {
    font-size: 3rem;
  }
}
#main-content .tile-group-2 .tile .tile-type:after,
#modules .tile-group-2 .tile .tile-type:after {
  content: "";
  position: absolute;
  left: 3.2rem;
  bottom: -9rem;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: #5E0D93;
  background-repeat: no-repeat;
  background-position: center center;
}
#main-content .tile-group-2 .tile img,
#modules .tile-group-2 .tile img {
  max-width: 100%;
  height: auto;
}
#main-content .tile-group-2 .tile .description,
#modules .tile-group-2 .tile .description {
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 82.4742%;
  min-height: 28rem;
  background-color: #5E0D93;
  padding: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.5em;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2 .tile .description,
  #modules .tile-group-2 .tile .description {
    position: relative;
    width: calc(100% - 2rem);
    bottom: auto;
    transform: translateY(-2rem);
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}
#main-content .tile-group-2 .tile .description h4,
#modules .tile-group-2 .tile .description h4 {
  font-size: 2.8rem !important;
  color: white;
  margin: 0 0 1rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2 .tile .description h4,
  #modules .tile-group-2 .tile .description h4 {
    font-size: 1.8rem !important;
  }
}
#main-content .tile-group-2 .tile .description .venue,
#modules .tile-group-2 .tile .description .venue {
  font-weight: 600;
  font-size: 1.8rem;
  color: #585858;
  text-transform: uppercase;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2 .tile .description .venue,
  #modules .tile-group-2 .tile .description .venue {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}
#main-content .tile-group-2 .tile .description .date,
#modules .tile-group-2 .tile .description .date {
  font-weight: 500;
  color: #5E0D93;
  font-family: "Paytone One", sans-serif;
  font-size: 1.8rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #main-content .tile-group-2 .tile .description .date,
  #modules .tile-group-2 .tile .description .date {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}
#main-content .tile-group-2 .tile .description .link-button,
#modules .tile-group-2 .tile .description .link-button {
  position: absolute;
  bottom: 0;
  left: 3.2rem;
  transform: translateY(50%);
}
#main-content .tile-group-2 .tile.venue .description,
#modules .tile-group-2 .tile.venue .description {
  color: #FDE371;
}
#main-content .tile-group-2 .tile.venue .tile-type:after,
#modules .tile-group-2 .tile.venue .tile-type:after {
  background-color: #7209B7;
  background-image: url("../images/venue.svg");
}
#main-content .tile-group-2 .tile.event .description,
#modules .tile-group-2 .tile.event .description {
  background-color: #FDE371;
}
#main-content .tile-group-2 .tile.event .description h4,
#modules .tile-group-2 .tile.event .description h4 {
  color: #5E0D93;
}
#main-content .tile-group-2 .tile.event .tile-type:after,
#modules .tile-group-2 .tile.event .tile-type:after {
  background-color: #00AFB5;
  background-image: url("../images/event.svg");
}

/*
	6. Modules
*/
#modules.search-columns .single-column {
  padding-bottom: 10rem;
}
#modules.search-columns .single-column ol {
  list-style: decimal;
  color: #585858;
  list-style-position: inside;
}
#modules.search-columns .single-column ol li {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
#modules .module.featured-posts-slider {
  background-color: #F5F5F5;
  padding: 8rem 0;
}
#modules .module.featured-posts-slider .panel-title {
  padding-bottom: 1rem;
}
#modules .module.featured-posts-slider .swiper {
  position: relative;
  padding-top: 4rem;
}
#modules .module.featured-posts-slider .swiper-wrapper {
  height: auto;
}
#modules .module.featured-posts-slider .swiper-slide {
  background-color: white;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  min-width: 320px;
  max-width: 504px;
  height: auto;
  overflow: visible !important;
  border-bottom: 3rem solid #F5F5F5;
}
#modules .module.featured-posts-slider .swiper-slide.hidden, #modules .module.featured-posts-slider .swiper-slide.key-stage-filter-hidden, #modules .module.featured-posts-slider .swiper-slide.topic-filter-hidden, #modules .module.featured-posts-slider .swiper-slide.location-filter-hidden, #modules .module.featured-posts-slider .swiper-slide.type-filter-hidden {
  display: none;
}
#modules .module.featured-posts-slider .swiper-slide .image {
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#modules .module.featured-posts-slider .swiper-slide .image img {
  transition-property: all;
  transition-duration: 0.25s;
  width: 100%;
  height: auto;
}
#modules .module.featured-posts-slider .swiper-slide .type {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 0.3rem 0.5rem;
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #7209B7;
}
#modules .module.featured-posts-slider .swiper-slide .type.activity {
  background-color: #00AFB5;
}
#modules .module.featured-posts-slider .swiper-slide .description {
  padding: 3.6rem 3.6rem 5rem 3.6rem;
  position: relative;
}
#modules .module.featured-posts-slider .swiper-slide .description h4 {
  color: #7209B7;
  margin: 0 0 1.2rem 0;
}
#modules .module.featured-posts-slider .swiper-slide .description h5 {
  font-family: "Be Vietnam Pro", sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 900;
  color: #707070;
}
#modules .module.featured-posts-slider .swiper-slide .description p {
  color: #707070;
  font-size: 1.6rem;
}
#modules .module.featured-posts-slider .swiper-slide .link-button {
  position: absolute;
  z-index: 99999;
  left: 3.6rem;
  bottom: 0rem;
  transform: translate(0, 50%);
}
#modules .module.featured-posts-slider .swiper-slide:hover .image img {
  transform: scale(1.1);
}
#modules .module.featured-posts-slider .swiper-slide:hover .link-button a {
  background-color: #5E0D93;
  color: #00AFB5;
}
#modules .module.featured-posts-slider .panel-controls {
  position: absolute;
  top: 0;
  right: 10rem;
  width: 90px;
}
#modules .module.featured-posts-slider .panel-controls .panel-button {
  display: block;
  width: 40px;
  height: 35px;
  position: absolute;
  top: 0;
}
#modules .module.featured-posts-slider .panel-controls .panel-button.button-next {
  right: 0;
}
#modules .module.featured-posts-slider .panel-controls .panel-button.button-prev {
  left: 0;
}
#modules .module.columns a {
  color: #585858;
  border-bottom: 2px solid rgba(0, 175, 181, 0.5);
}
#modules .module.columns a:hover {
  color: #00AFB5;
}
#modules .module.columns .two-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#modules .module.columns .two-columns .column {
  width: calc(50% - 2rem);
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #modules .module.columns .two-columns .column {
    width: 100%;
  }
}
#modules .module.columns .two-columns .column img {
  max-width: 100%;
  height: auto;
}
#modules .module.latest-posts, #modules .module.featured-posts {
  padding: 14rem 0;
}
#modules .module.latest-posts .archive-link {
  text-align: center;
}
#modules .module.testimonial {
  padding: 24rem 0 12rem 0;
  background: transparent linear-gradient(90deg, #00AFB5 0%, #5E0D93 100%) 0% 0% no-repeat padding-box;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #modules .module.testimonial {
    padding: 14rem 0 8rem 0;
  }
}
#modules .module.testimonial .testimonial-text,
#modules .module.testimonial .testimonial-attribution {
  width: 66.66667%;
  margin: 0 auto;
  text-align: center;
}
#modules .module.testimonial .testimonial-text {
  color: #FDE371;
  margin-bottom: 4rem;
  position: relative;
  font-family: "Paytone One", sans-serif;
  font-size: 2.8rem;
  line-height: 4.8rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #modules .module.testimonial .testimonial-text {
    font-size: 1.8rem;
    line-height: 3.1rem;
  }
}
#modules .module.testimonial .testimonial-text p {
  margin-bottom: 2.8rem;
}
#modules .module.testimonial .testimonial-text:before {
  content: "";
  position: absolute;
  top: -16rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 9.2rem;
  height: 10.5rem;
  background-image: url("../images/quotes.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #modules .module.testimonial .testimonial-text:before {
    font-size: 8.1rem;
    height: 7rem;
    top: -10rem;
  }
}
#modules .module.testimonial .testimonial-attribution {
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #modules .module.testimonial .testimonial-attribution {
    font-size: 1.3rem;
  }
}
#modules .module.testimonial .testimonial-attribution p {
  display: block;
}
#modules .module.testimonial .testimonial-attribution p span {
  padding: 5px 8px;
  display: inline-block;
  background-color: #00AFB5;
}

/*
	7. Custom Post Archives
*/
/*
	8. Newsletter & Socials
*/
#keep-in-touch {
  background-color: #00AFB5;
  display: flex;
  flex-wrap: wrap;
}
#keep-in-touch .image {
  width: 50vw;
  height: 33.3333vw;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .image {
    width: 100%;
    height: 50vh;
  }
}
#keep-in-touch .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
#keep-in-touch .text {
  width: 50vw;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text {
    width: 100%;
  }
}
#keep-in-touch .text .text-inner {
  text-align: center;
  width: calc(50vw - 14rem);
  margin: 7.5rem auto 0 auto;
  max-width: 79.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner {
    margin: 4rem auto 0 auto;
    width: calc(100% - 5.2rem);
    padding-bottom: 4rem;
  }
}
#keep-in-touch .text .text-inner h3 {
  font-size: 4.8rem;
  color: #FDE371;
  margin-bottom: 3.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner h3 {
    font-size: 3.2rem;
  }
}
#keep-in-touch .text .text-inner h4 {
  font-size: 4.8rem;
  color: #5E0D93;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner h4 {
    font-size: 3.2rem;
  }
}
#keep-in-touch .text .text-inner p {
  color: white;
}
#keep-in-touch .text .text-inner form {
  margin-bottom: 6rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner form {
    margin-bottom: 3rem;
  }
}
#keep-in-touch .text .text-inner form .form-inputs {
  display: flex;
  margin: 3.6rem 0;
}
#keep-in-touch .text .text-inner form .form-inputs #newsletter-email {
  width: calc(100% - 12rem);
  height: 7.2rem;
  border: 3px solid rgba(94, 13, 147, 0);
  background: white;
  padding: 2.8rem 3.4rem;
  font-size: 2rem;
  font-family: "Be Vietnam Pro", sans-serif;
  outline: none;
  caret-color: #5E0D93;
  color: purple;
  transition-duration: 0.25s;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner form .form-inputs #newsletter-email {
    width: calc(100% - 7rem);
    height: 4.6rem;
    font-size: 1.4rem;
    padding: 1.8rem 2.3rem;
  }
}
#keep-in-touch .text .text-inner form .form-inputs #newsletter-email:focus {
  border: 3px solid #5e0d93;
}
#keep-in-touch .text .text-inner form .form-inputs #newsletter-submit {
  border: none;
  background-color: #7209B7;
  width: 12rem;
  color: white;
  font-size: 2rem;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition-duration: 0.25s;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner form .form-inputs #newsletter-submit {
    font-size: 1.4rem;
    width: 7.8rem;
  }
}
#keep-in-touch .text .text-inner form .form-inputs #newsletter-submit:hover {
  color: #5E0D93;
  background-color: #FDE371;
}
#keep-in-touch .text .text-inner .socials li {
  width: 5.5rem;
  height: 5.5rem;
  display: inline-block;
  margin: 3rem 2rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #keep-in-touch .text .text-inner .socials li {
    width: 3.6rem;
    height: 3.6rem;
    margin: 2.6rem 1.4rem;
  }
}
#keep-in-touch .text .text-inner .socials li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -99999px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
#keep-in-touch .text .text-inner .socials li a.facebook {
  background-image: url("../images/fb-logo.svg");
}
#keep-in-touch .text .text-inner .socials li a.twitter {
  background-image: url("../images/x-logo.svg");
}
#keep-in-touch .text .text-inner .socials li a.instagram {
  background-image: url("../images/ig-logo.svg");
}
#keep-in-touch .text .text-inner .socials li a.youtube {
  background-image: url("../images/yt-logo.svg");
}

/*
	9. Footer
*/
#footer {
  width: 100vw;
  padding: 9rem 0;
  background-color: #FDE371;
  box-shadow: 0 50vh 0 50vh #FDE371;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #footer {
    padding: 4.2rem 0;
  }
}
#footer #ss-footer {
  width: 17.4rem;
  height: 7.4rem;
  text-indent: -99999px;
  background-position: center center;
  background-size: contain;
  background-image: url("../images/simply-schools-logo.svg");
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #footer #ss-footer {
    margin-bottom: 4rem;
  }
}
#footer .columns {
  display: flex;
  flex-wrap: wrap;
}
#footer .columns .column {
  width: 8.3333333333%;
  box-sizing: border-box;
  padding-right: 2rem;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #footer .columns .column {
    width: 33.3333333333%;
    margin-bottom: 2rem;
  }
}
#footer .columns .column.double-column {
  width: 16.6666666667%;
}
@media only screen and (min-width: 1px) and (max-width: 515px) {
  #footer .columns .column.double-column {
    width: 100%;
  }
}
#footer .columns .column:last-child {
  margin-left: auto;
}
#footer .columns .column .arts-council-logo {
  background-image: url("../images/ace-logo.png");
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 27.3rem;
  max-width: 100%;
  height: 6rem;
  text-indent: -99999px;
}
#footer .columns .column p {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 2.2rem;
}
#footer .columns .column p a {
  color: #585858;
}
#footer .columns .column p a strong {
  color: #5E0D93;
}
#footer .columns .column p strong {
  font-family: "Paytone One", sans-serif;
  font-size: 2.2rem;
  line-height: 2.2rem;
}
