/* Layout */
/* Fonts */
/* Colours */
/* Breakpoints (max width) */
/* Box sizing rules */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600&family=Inter:wght@400;700&display=swap');
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove default margin */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"], ol[role="list"] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Skip to content link */
.skip-link {
  left: 50%;
  padding: 8px 16px;
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s;
  background: var(--footer-colour);
  border-top: none;
  border-radius: 0 0 4px 4px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.skip-link:focus {
  transform: translateY(0%);
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}
:root {
  font-size: 19px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #343a40;
}
@media (max-width: 1100px) {
  :root {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  :root {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  :root {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  :root {
    font-size: 15px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bolder;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 0.6em;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin-top: 0.8em;
}
h1.underlined, h2.underlined, h3.underlined, h4.underlined, h5.underlined, h6.underlined {
  padding-bottom: 0.3em;
  border-bottom: solid 1px #eee;
}
h1 {
  font-size: 3em;
}
h2 {
  font-size: 1.6em;
  color: var(--navigation-colour-alt);
}
h3 {
  font-size: 1.3em;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 0.85em;
}
h6 {
  font-size: 0.725em;
}
p {
  line-height: 1.6;
  margin-bottom: 1em;
}
p.lead {
  font-size: 1.2em;
  color: #212529;
}
a {
  color: var(--primary-colour);
}
/* Tables */
table {
  border: 1px solid #e9ecef;
  border-spacing: 0;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  padding: 0;
  white-space: nowrap;
  margin-top: 1rem;
}
table td, table th, table tr {
  padding: 0.6rem 0.8rem;
}
table thead {
  background-color: #343a40;
  border-collapse: collapse;
  color: white;
  margin: 0;
  text-align: left;
}
table tr:nth-child(even) {
  background-color: #e9ecef;
}
figcaption {
  opacity: 0.8;
  font-size: 0.8rem;
  text-align: center;
}
hr.wp-block-separator {
  border-bottom: none;
  margin: 3rem 0;
  opacity: 0.5;
}
.container {
  max-width: 72rem;
  margin: auto;
  padding: 0 1rem;
}
.container.with-sidebar {
  display: flex;
}
.container.with-sidebar aside {
  min-width: 25%;
  margin-left: 2rem;
  background: #eee;
  padding: 1.5rem;
}
@media (min-height: 700px) {
  .container.with-sidebar aside .sidebar-sticky {
    position: sticky;
    top: 1rem;
  }
}
@media (max-width: 950px) {
  .container.with-sidebar {
    flex-direction: column;
  }
  .container.with-sidebar main#content {
    padding-bottom: 0rem;
  }
  .container.with-sidebar aside {
    margin-left: 0;
    margin-top: 2rem;
  }
}
main#content {
  padding-bottom: 3rem;
}
.m-t--100 {
  margin-top: -100px !important;
}
.p-t--100 {
  padding-top: -100px !important;
}
.m-b--100 {
  margin-bottom: -100px !important;
}
.p-b--100 {
  padding-bottom: -100px !important;
}
.m-l--100 {
  margin-left: -100px !important;
}
.p-l--100 {
  padding-left: -100px !important;
}
.m-r--100 {
  margin-right: -100px !important;
}
.p-r--100 {
  padding-right: -100px !important;
}
.m-t--75 {
  margin-top: -75px !important;
}
.p-t--75 {
  padding-top: -75px !important;
}
.m-b--75 {
  margin-bottom: -75px !important;
}
.p-b--75 {
  padding-bottom: -75px !important;
}
.m-l--75 {
  margin-left: -75px !important;
}
.p-l--75 {
  padding-left: -75px !important;
}
.m-r--75 {
  margin-right: -75px !important;
}
.p-r--75 {
  padding-right: -75px !important;
}
.m-t--50 {
  margin-top: -50px !important;
}
.p-t--50 {
  padding-top: -50px !important;
}
.m-b--50 {
  margin-bottom: -50px !important;
}
.p-b--50 {
  padding-bottom: -50px !important;
}
.m-l--50 {
  margin-left: -50px !important;
}
.p-l--50 {
  padding-left: -50px !important;
}
.m-r--50 {
  margin-right: -50px !important;
}
.p-r--50 {
  padding-right: -50px !important;
}
.m-t--45 {
  margin-top: -45px !important;
}
.p-t--45 {
  padding-top: -45px !important;
}
.m-b--45 {
  margin-bottom: -45px !important;
}
.p-b--45 {
  padding-bottom: -45px !important;
}
.m-l--45 {
  margin-left: -45px !important;
}
.p-l--45 {
  padding-left: -45px !important;
}
.m-r--45 {
  margin-right: -45px !important;
}
.p-r--45 {
  padding-right: -45px !important;
}
.m-t--40 {
  margin-top: -40px !important;
}
.p-t--40 {
  padding-top: -40px !important;
}
.m-b--40 {
  margin-bottom: -40px !important;
}
.p-b--40 {
  padding-bottom: -40px !important;
}
.m-l--40 {
  margin-left: -40px !important;
}
.p-l--40 {
  padding-left: -40px !important;
}
.m-r--40 {
  margin-right: -40px !important;
}
.p-r--40 {
  padding-right: -40px !important;
}
.m-t--35 {
  margin-top: -35px !important;
}
.p-t--35 {
  padding-top: -35px !important;
}
.m-b--35 {
  margin-bottom: -35px !important;
}
.p-b--35 {
  padding-bottom: -35px !important;
}
.m-l--35 {
  margin-left: -35px !important;
}
.p-l--35 {
  padding-left: -35px !important;
}
.m-r--35 {
  margin-right: -35px !important;
}
.p-r--35 {
  padding-right: -35px !important;
}
.m-t--30 {
  margin-top: -30px !important;
}
.p-t--30 {
  padding-top: -30px !important;
}
.m-b--30 {
  margin-bottom: -30px !important;
}
.p-b--30 {
  padding-bottom: -30px !important;
}
.m-l--30 {
  margin-left: -30px !important;
}
.p-l--30 {
  padding-left: -30px !important;
}
.m-r--30 {
  margin-right: -30px !important;
}
.p-r--30 {
  padding-right: -30px !important;
}
.m-t--25 {
  margin-top: -25px !important;
}
.p-t--25 {
  padding-top: -25px !important;
}
.m-b--25 {
  margin-bottom: -25px !important;
}
.p-b--25 {
  padding-bottom: -25px !important;
}
.m-l--25 {
  margin-left: -25px !important;
}
.p-l--25 {
  padding-left: -25px !important;
}
.m-r--25 {
  margin-right: -25px !important;
}
.p-r--25 {
  padding-right: -25px !important;
}
.m-t--20 {
  margin-top: -20px !important;
}
.p-t--20 {
  padding-top: -20px !important;
}
.m-b--20 {
  margin-bottom: -20px !important;
}
.p-b--20 {
  padding-bottom: -20px !important;
}
.m-l--20 {
  margin-left: -20px !important;
}
.p-l--20 {
  padding-left: -20px !important;
}
.m-r--20 {
  margin-right: -20px !important;
}
.p-r--20 {
  padding-right: -20px !important;
}
.m-t--15 {
  margin-top: -15px !important;
}
.p-t--15 {
  padding-top: -15px !important;
}
.m-b--15 {
  margin-bottom: -15px !important;
}
.p-b--15 {
  padding-bottom: -15px !important;
}
.m-l--15 {
  margin-left: -15px !important;
}
.p-l--15 {
  padding-left: -15px !important;
}
.m-r--15 {
  margin-right: -15px !important;
}
.p-r--15 {
  padding-right: -15px !important;
}
.m-t--10 {
  margin-top: -10px !important;
}
.p-t--10 {
  padding-top: -10px !important;
}
.m-b--10 {
  margin-bottom: -10px !important;
}
.p-b--10 {
  padding-bottom: -10px !important;
}
.m-l--10 {
  margin-left: -10px !important;
}
.p-l--10 {
  padding-left: -10px !important;
}
.m-r--10 {
  margin-right: -10px !important;
}
.p-r--10 {
  padding-right: -10px !important;
}
.m-t--5 {
  margin-top: -5px !important;
}
.p-t--5 {
  padding-top: -5px !important;
}
.m-b--5 {
  margin-bottom: -5px !important;
}
.p-b--5 {
  padding-bottom: -5px !important;
}
.m-l--5 {
  margin-left: -5px !important;
}
.p-l--5 {
  padding-left: -5px !important;
}
.m-r--5 {
  margin-right: -5px !important;
}
.p-r--5 {
  padding-right: -5px !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.p-t-0 {
  padding-top: 0px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.p-b-0 {
  padding-bottom: 0px !important;
}
.m-l-0 {
  margin-left: 0px !important;
}
.p-l-0 {
  padding-left: 0px !important;
}
.m-r-0 {
  margin-right: 0px !important;
}
.p-r-0 {
  padding-right: 0px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.p-b-5 {
  padding-bottom: 5px !important;
}
.m-l-5 {
  margin-left: 5px !important;
}
.p-l-5 {
  padding-left: 5px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.p-r-5 {
  padding-right: 5px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.p-l-10 {
  padding-left: 10px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.p-r-10 {
  padding-right: 10px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.p-t-15 {
  padding-top: 15px !important;
}
.m-b-15 {
  margin-bottom: 15px !important;
}
.p-b-15 {
  padding-bottom: 15px !important;
}
.m-l-15 {
  margin-left: 15px !important;
}
.p-l-15 {
  padding-left: 15px !important;
}
.m-r-15 {
  margin-right: 15px !important;
}
.p-r-15 {
  padding-right: 15px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.m-b-20 {
  margin-bottom: 20px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.m-l-20 {
  margin-left: 20px !important;
}
.p-l-20 {
  padding-left: 20px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.p-r-20 {
  padding-right: 20px !important;
}
.m-t-25 {
  margin-top: 25px !important;
}
.p-t-25 {
  padding-top: 25px !important;
}
.m-b-25 {
  margin-bottom: 25px !important;
}
.p-b-25 {
  padding-bottom: 25px !important;
}
.m-l-25 {
  margin-left: 25px !important;
}
.p-l-25 {
  padding-left: 25px !important;
}
.m-r-25 {
  margin-right: 25px !important;
}
.p-r-25 {
  padding-right: 25px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.m-l-30 {
  margin-left: 30px !important;
}
.p-l-30 {
  padding-left: 30px !important;
}
.m-r-30 {
  margin-right: 30px !important;
}
.p-r-30 {
  padding-right: 30px !important;
}
.m-t-35 {
  margin-top: 35px !important;
}
.p-t-35 {
  padding-top: 35px !important;
}
.m-b-35 {
  margin-bottom: 35px !important;
}
.p-b-35 {
  padding-bottom: 35px !important;
}
.m-l-35 {
  margin-left: 35px !important;
}
.p-l-35 {
  padding-left: 35px !important;
}
.m-r-35 {
  margin-right: 35px !important;
}
.p-r-35 {
  padding-right: 35px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.p-t-40 {
  padding-top: 40px !important;
}
.m-b-40 {
  margin-bottom: 40px !important;
}
.p-b-40 {
  padding-bottom: 40px !important;
}
.m-l-40 {
  margin-left: 40px !important;
}
.p-l-40 {
  padding-left: 40px !important;
}
.m-r-40 {
  margin-right: 40px !important;
}
.p-r-40 {
  padding-right: 40px !important;
}
.m-t-45 {
  margin-top: 45px !important;
}
.p-t-45 {
  padding-top: 45px !important;
}
.m-b-45 {
  margin-bottom: 45px !important;
}
.p-b-45 {
  padding-bottom: 45px !important;
}
.m-l-45 {
  margin-left: 45px !important;
}
.p-l-45 {
  padding-left: 45px !important;
}
.m-r-45 {
  margin-right: 45px !important;
}
.p-r-45 {
  padding-right: 45px !important;
}
.m-t-50 {
  margin-top: 50px !important;
}
.p-t-50 {
  padding-top: 50px !important;
}
.m-b-50 {
  margin-bottom: 50px !important;
}
.p-b-50 {
  padding-bottom: 50px !important;
}
.m-l-50 {
  margin-left: 50px !important;
}
.p-l-50 {
  padding-left: 50px !important;
}
.m-r-50 {
  margin-right: 50px !important;
}
.p-r-50 {
  padding-right: 50px !important;
}
.m-t-75 {
  margin-top: 75px !important;
}
.p-t-75 {
  padding-top: 75px !important;
}
.m-b-75 {
  margin-bottom: 75px !important;
}
.p-b-75 {
  padding-bottom: 75px !important;
}
.m-l-75 {
  margin-left: 75px !important;
}
.p-l-75 {
  padding-left: 75px !important;
}
.m-r-75 {
  margin-right: 75px !important;
}
.p-r-75 {
  padding-right: 75px !important;
}
.m-t-100 {
  margin-top: 100px !important;
}
.p-t-100 {
  padding-top: 100px !important;
}
.m-b-100 {
  margin-bottom: 100px !important;
}
.p-b-100 {
  padding-bottom: 100px !important;
}
.m-l-100 {
  margin-left: 100px !important;
}
.p-l-100 {
  padding-left: 100px !important;
}
.m-r-100 {
  margin-right: 100px !important;
}
.p-r-100 {
  padding-right: 100px !important;
}
#top-bar {
  background: #F5F6F8;
  font-size: 0.95rem;
  padding: 0.7rem 0;
}
#top-bar .container {
  display: flex;
  justify-content: space-between;
}
#top-bar .container div:first-child ul li {
  margin-right: 1.5rem;
}
#top-bar .container div:last-child ul li {
  margin-left: 1.5rem;
}
#top-bar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}
#top-bar a {
  text-decoration: none;
}
#top-bar a:hover {
  text-decoration: underline;
}
#top-bar a.crst-link, #top-bar a.tc-link, #top-bar a.cplrd-link {
  display: flex;
  align-items: center;
}
#top-bar a.crst-link:before, #top-bar a.tc-link:before, #top-bar a.cplrd-link:before {
  content: '';
  height: 1.4em;
  width: 1.4em;
  margin-right: 0.4em;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 800ms ease;
}
#top-bar a.crst-link:hover:before, #top-bar a.tc-link:hover:before, #top-bar a.cplrd-link:hover:before {
  transform: rotate(45deg);
}
#top-bar a.crst-link:before {
  background-image: url('/wp-content/themes/rsa-central/scss/../images/icons/crst-icon.png');
}
#top-bar a.tc-link:before {
  background-image: url('/wp-content/themes/rsa-central/scss/../images/icons/teach-central-icon.png');
}
#top-bar a.cplrd-link:before {
  background-image: url('/wp-content/themes/rsa-central/scss/../images/icons/cplrd-icon.png');
}
@media (max-width: 900px) {
  #top-bar {
    display: none;
  }
}
#masthead {
  padding: 2rem 0;
}
#masthead nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#masthead nav .brand {
  margin-right: 1.5rem;
  height: 100%;
  min-width: 8rem;
}
#masthead nav .brand img {
  max-height: 8rem;
  max-width: 15rem;
  object-fit: contain;
}
#masthead nav .main-menu {
  flex: 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#masthead nav .menu-main-menu-container {
  background: var(--navigation-colour);
  width: 100%;
}
#masthead nav .menu-main-menu-container a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#masthead nav .menu-main-menu-container > ul {
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
  padding: 0;
}
#masthead nav .menu-main-menu-container > ul > li {
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  line-height: 1.1;
}
@media (min-width: 1400px) {
  #masthead nav .menu-main-menu-container > ul > li.menu-item-has-children > a:after {
    content: '▼';
    font-size: 0.7rem;
    opacity: 0.5;
    margin-left: 0.5rem;
    vertical-align: middle;
    transform: scaleY(0.7);
    display: inline-block;
    margin-top: -0.1rem;
  }
}
#masthead nav .menu-main-menu-container > ul > li > a {
  padding: 1rem;
  display: block;
}
#masthead nav .menu-main-menu-container > ul > li > ul {
  display: none;
  position: absolute;
  background: var(--navigation-colour-alt);
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
  width: 14rem;
  z-index: 100;
  text-align: left;
}
#masthead nav .menu-main-menu-container > ul > li > ul a {
  padding: 0.4rem 0;
  display: block;
}
#masthead nav .menu-main-menu-container > ul > li > ul ul {
  display: none;
}
#masthead nav .menu-main-menu-container > ul > li:hover, #masthead nav .menu-main-menu-container > ul > li:focus-within {
  background: var(--navigation-colour-alt);
}
#masthead nav .menu-main-menu-container > ul > li:hover > ul, #masthead nav .menu-main-menu-container > ul > li:focus-within > ul {
  display: block;
}
#masthead #main-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  #masthead {
    padding: 1rem 0;
    background: var(--primary-colour);
    margin-bottom: 2rem;
  }
  #masthead .search-form {
    display: none;
  }
  #masthead #main-menu-toggle {
    display: block;
  }
  #masthead #main-menu-toggle svg {
    fill: #fff;
    height: 2.4rem;
    width: auto;
    display: block;
  }
  #masthead #main-menu-close {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    z-index: 99999999;
  }
  #masthead #main-menu-close svg {
    fill: #fff;
    height: 2rem;
    width: auto;
    display: block;
  }
  #masthead nav .brand {
    background: #fff;
    padding: 0.5rem 1rem;
    margin-left: -1rem;
    min-width: auto;
  }
  #masthead nav .brand img {
    height: 2rem;
  }
  #masthead nav .menu-main-menu-container {
    position: fixed;
    height: 100%;
    width: 300px !important;
    right: -320px;
    top: 0;
    background: var(--navigation-colour);
    backdrop-filter: blur(10px);
    text-align: left;
    z-index: 100001;
    transition: 300ms ease;
    overflow-y: auto;
  }
  #masthead nav .menu-main-menu-container.visible {
    right: 0px;
  }
  #masthead nav .menu-main-menu-container a {
    color: #fff;
    text-decoration: none;
    font-family: "gotham ssm a", "gotham ssm b", sans-serif;
    line-height: 1;
  }
  #masthead nav .menu-main-menu-container > ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0.5rem 0 0;
  }
  #masthead nav .menu-main-menu-container > ul > li {
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    line-height: 1.1;
  }
  #masthead nav .menu-main-menu-container > ul > li.current_page_item > a {
    color: #fff;
    font-weight: bold;
  }
  #masthead nav .menu-main-menu-container > ul > li.current_page_item:hover > a {
    color: #fff;
  }
  #masthead nav .menu-main-menu-container > ul > li > a {
    padding: 1.5rem 2rem 1rem;
    display: block;
    font-size: 1.15rem;
  }
  #masthead nav .menu-main-menu-container > ul > li > ul {
    display: block;
    position: static;
    background: transparent;
    list-style: none;
    margin: 0;
    padding: 0rem 2rem;
    width: 100%;
    z-index: 100;
  }
  #masthead nav .menu-main-menu-container > ul > li > ul a {
    padding: 0.4rem 0;
    display: block;
  }
  #masthead nav .menu-main-menu-container > ul > li > ul a:before {
    content: '—';
    opacity: 0.5;
    margin-right: 0.3rem;
  }
  #masthead nav .menu-main-menu-container > ul > li > ul a:hover {
    font-weight: bold;
  }
  #masthead nav .menu-main-menu-container > ul > li > ul ul {
    display: none;
  }
  #masthead nav .menu-main-menu-container > ul > li:hover, #masthead nav .menu-main-menu-container > ul > li:focus-within {
    background: transparent;
  }
  #masthead nav .menu-main-menu-container > ul > li:hover > ul, #masthead nav .menu-main-menu-container > ul > li:focus-within > ul {
    display: block;
  }
}
@media (max-width: 900px) and (min-width: 1400px) {
  #masthead nav .menu-main-menu-container > ul > li.menu-item-has-children > a:after {
    content: '';
    font-size: 0.7rem;
    opacity: 0.5;
    margin-left: 0.5rem;
    vertical-align: middle;
    transform: scaleY(0.7);
    display: inline-block;
    margin-top: -0.1rem;
  }
}
.overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 100000;
  display: none;
}
.breadcrumbs {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
#site-footer {
  background: var(--footer-colour);
  padding: 2.5rem 0 0;
}
#site-footer h2 {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  padding: 0 0 1rem;
  margin: 0 0 1rem;
}
#site-footer p, #site-footer ul {
  color: rgba(255, 255, 255, 0.85);
}
#site-footer a {
  color: #fff;
  text-decoration: underline;
}
#site-footer a.telephone, #site-footer a.email {
  display: block;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 0.6em;
  word-break: break-word;
}
#site-footer a.telephone:before, #site-footer a.email:before {
  display: inline-block;
  height: 1em;
  width: 1em;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 0.4em;
  vertical-align: bottom;
  content: '';
}
#site-footer a.telephone:before {
  background-image: url('/wp-content/themes/rsa-central/scss/../images/icons/phone.svg');
}
#site-footer a.email:before {
  background-image: url('/wp-content/themes/rsa-central/scss/../images/icons/email.svg');
}
#site-footer a:empty {
  display: none;
}
#site-footer addr {
  display: block;
  margin-bottom: 1.5rem;
}
#site-footer addr p {
  margin-bottom: 1.5rem;
}
#site-footer addr p::first-line {
  font-weight: bold;
}
#site-footer #site-footer-contact .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#site-footer #site-footer-contact .widget {
  min-width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  margin-bottom: 2rem;
}
#site-footer #site-footer-contact .widget.site-footer-schools {
  min-width: calc(66.666% - 1rem);
  max-width: calc(66.666% - 1rem);
  flex: 1 0;
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a {
  min-width: calc(50% - 0.5rem);
  max-width: calc(50% - 0.5rem);
  border: solid 1px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  transition: all 300ms ease;
  margin: 0 0 1rem 0;
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a img {
  width: 2.5rem;
  height: auto;
  margin-right: 1rem;
  mix-blend-mode: luminosity;
  filter: brightness(150%);
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a div {
  flex: 1 0;
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a div span {
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  line-height: 1;
  transition: all 500ms ease;
  font-size: 0.9rem;
  color: var(--primary-colour);
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:hover, #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:focus {
  background: #fff;
  border: solid 1px rgba(0, 0, 0, 0.6);
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:hover h3, #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:focus h3 {
  color: var(--primary-colour);
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:hover span, #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:focus span {
  height: 1.1em;
  opacity: 0.8;
}
#site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:hover img, #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a:focus img {
  mix-blend-mode: normal;
  filter: brightness(100%);
}
@media (max-width: 1300px) {
  #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a {
    padding: 0.8rem;
  }
  #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a h3 {
    font-size: 1rem;
  }
  #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a img {
    width: 2rem;
  }
}
@media (max-width: 1100px) {
  #site-footer #site-footer-contact .widget.site-footer-schools .site-footer-schools-list a {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  #site-footer #site-footer-contact .widget {
    min-width: calc(40% - 1rem);
    max-width: calc(40% - 1rem);
  }
  #site-footer #site-footer-contact .widget.site-footer-schools {
    min-width: calc(60% - 1rem);
    max-width: calc(60% - 1rem);
  }
}
@media (max-width: 900px) {
  #site-footer #site-footer-contact .widget, #site-footer #site-footer-contact .widget.site-footer-schools {
    min-width: 100%;
    max-width: 100%;
  }
}
#site-footer #site-footer-contact .social-icons {
  margin-top: 2rem;
}
#site-footer #site-footer-contact .social-icons a {
  margin-right: 1rem;
}
#site-footer #site-footer-contact .social-icons a svg {
  fill: #fff;
  height: 1.5rem;
  width: auto;
  transition: 300ms ease;
}
#site-footer #site-footer-contact .social-icons a.twitter:hover svg {
  fill: #1DA1F2;
}
#site-footer #site-footer-contact .social-icons a.facebook:hover svg {
  fill: #1877F2;
}
#site-footer #site-footer-contact .social-icons a.instagram:hover svg {
  fill: #E4405F;
}
#site-footer #site-footer-widgets {
  padding: 0.5rem 0 1rem;
}
#site-footer #site-footer-widgets .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: wrap;
}
#site-footer #site-footer-widgets .container > div {
  min-width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  #site-footer #site-footer-widgets .container > div {
    min-width: 100%;
    max-width: 100%;
  }
}
#site-footer #site-footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
}
#site-footer #site-footer-copyright .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  #site-footer #site-footer-copyright .container {
    flex-direction: column;
  }
}
#site-footer #site-footer-copyright a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 300ms ease;
  display: block;
}
#site-footer #site-footer-copyright a:hover {
  transform: scale(1.05);
  color: #e04f6b;
}
.single-post h1 {
  line-height: 1;
  margin-bottom: 1rem;
}
.single-post h1 a {
  text-decoration: none;
  font-weight: bold;
}
.single-post .post-thumbnail {
  width: 100%;
  margin: 0 0 1rem;
}
.single-post .post-thumbnail img {
  width: 100%;
  height: auto;
}
.single-post .entry-meta {
  font-weight: bold;
  margin: 0 0 1rem;
}
.entry-preview {
  display: flex;
  align-items: flex-start;
  border-bottom: solid 1px #eee;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.entry-preview .entry-preview-thumbnail {
  position: relative;
  min-width: 25%;
  max-width: 25%;
  background: #eee;
  margin-right: 2rem;
  display: grid;
  aspect-ratio: 1.3333333333;
  place-items: center;
}
.entry-preview .entry-preview-thumbnail img {
  height: auto;
  width: 100%;
  aspect-ratio: 1.3333333333;
  object-fit: cover;
  object-position: center center;
}
.entry-preview .entry-preview-thumbnail .placeholder-logo {
  max-width: 60%;
  max-height: 60%;
  filter: grayscale(1);
  object-fit: contain;
  opacity: 0.4;
  aspect-ratio: unset;
}
.entry-preview a {
  text-decoration: none;
}
.entry-preview .date {
  font-weight: bold;
  margin: -0.2rem 0 0.8em;
}
@media (max-width: 1000px) {
  .entry-preview {
    flex-direction: column;
  }
  .entry-preview .entry-preview-thumbnail {
    margin-bottom: 1rem;
    margin-right: 0;
    max-width: 600px;
  }
}
#nav-below {
  display: flex;
  justify-content: space-between;
}
.search-form {
  max-width: max-content;
  width: 100%;
  padding: 0 0 0.8rem;
  position: relative;
}
.search-form .search-field {
  padding-right: 2rem;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  transition: 400ms ease;
  caret-color: var(--primary-colour);
  width: 15rem;
  appearance: none;
}
.search-form .search-field::-webkit-search-cancel-button {
  display: none;
}
.search-form .search-field:focus {
  border-bottom: solid 1px var(--primary-colour);
  outline: none;
}
.search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  right: 0;
  appearance: none;
  border: 0;
  outline: 0;
  background: none;
  cursor: pointer;
}
.search-form svg {
  width: 1em;
  height: 1em;
  fill: var(--primary-colour);
}
.alignfull {
  position: relative;
  max-width: 100vw;
  width: 100vw;
  left: calc(-50vw + 50%);
}
.alignfull .wp-block-columns:not(.alignfull) {
  margin: auto;
  max-width: 1220px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.wp-block-image img {
  height: auto;
}
.wp-block-button__link {
  border-radius: 0;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.8em 1.5em !important;
  min-width: 10em;
  margin: 0.8em 0;
  transition: 300ms ease;
}
.wp-block-button__link:not(.has-background) {
  background: var(--button-colour) !important;
}
.wp-block-button__link:hover {
  filter: contrast(1.5);
}
.wp-block-embed.is-type-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7777777778;
}
.wp-block-quote {
  padding: 2rem 0 2rem 2rem;
  border-left: 0.0625rem solid #000;
}
.wp-block-quote p {
  font-style: italic;
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}
.wp-block-quote cite {
  font-size: 0.875em;
}
@media (min-width: 48em) {
  .wp-block-quote {
    padding: 2.5rem 0 2.5rem 3rem;
  }
}
.hero-banner {
  height: 40rem;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
}
.hero-banner > h1 {
  background: var(--primary-colour);
  padding: 2rem;
  color: #fff;
  font-size: 2.6rem;
  max-width: 50%;
}
.hero-banner > img {
  height: 100%;
  width: 85%;
  object-fit: cover;
  object-position: center cener;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.hero-banner .hero-banner-accreditations {
  position: absolute;
  width: fit-content;
  display: flex;
  right: 2rem;
  bottom: -2rem;
  background: #fff;
  padding: 0.5rem 0 0.5rem 1rem;
}
.hero-banner .hero-banner-accreditations img {
  height: 4rem;
  margin-right: 1rem;
}
@media (max-width: 950px) {
  .hero-banner {
    height: 28rem;
    align-items: flex-end;
  }
  .hero-banner > h1 {
    max-width: 100%;
  }
  .hero-banner > img {
    width: 100%;
  }
  .hero-banner .hero-banner-accreditations {
    right: 0;
  }
  .hero-banner .hero-banner-accreditations img {
    height: 2rem;
  }
}
.latest-tweets {
  position: relative;
  background: var(--primary-colour-light);
  padding: 1rem;
}
.latest-tweets .skip-twitter-link {
  height: 0;
  overflow: hidden;
  display: block;
}
.latest-tweets .skip-twitter-link:focus {
  height: auto;
}
.latest-tweets h2 {
  background: var(--primary-colour);
  margin-left: -1rem;
  width: 90%;
  padding: 0.4rem 1rem;
  color: #fff;
  margin-bottom: 1rem;
  margin-top: 0;
}
.latest-tweets iframe.twitter-timeline {
  margin: 0 -0.3rem;
}
.feature-section {
  background-size: cover;
  background-position: center center;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  padding: 5rem 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.feature-section:before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--primary-colour);
  opacity: 0.7;
}
.feature-section .feature-section-content {
  max-width: 900px;
  padding: 2rem;
  color: #fff;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
}
.feature-section .feature-section-content h2 {
  margin-top: 0;
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 0.3em;
}
.feature-section .feature-section-content p {
  opacity: 0.9;
}
.feature-section .feature-section-content .wp-block-button__link {
  background: #fff !important;
  color: var(--primary-colour) !important;
}
.icon-block {
  padding: 1.5rem;
  height: 100%;
  border-bottom: solid white 1.5rem;
}
.icon-block h3 {
  display: flex;
  align-items: center;
  color: #fff;
}
.icon-block h3 img {
  height: 2.5rem;
  margin-right: 0.7rem;
}
.icon-block .icon-block-content {
  color: #fff;
  opacity: 0.9;
}
/*# sourceMappingURL=https://centralregionschoolstrust.co.uk/gospeloak/wp-content/build/scss_library/2/8aa7451c70e7dc70b5e04a8de965c373ed4a69d3.css.map */