@charset "UTF-8";
/* Global CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove default list styles */
ul, ol {
  margin: 0;
  padding: 0;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default image border */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

/* Reset heading and paragraph margins */
h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
  font-weight: normal;
}

/* Reset form elements */
input, button, textarea, select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
}

/* Buttons inherit cursor and remove weird defaults */
button {
  cursor: pointer;
  background: transparent;
  border: none;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.g-has-icon {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}

.g-heading-underline-animation {
  background-image: linear-gradient(#342631, #342631);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 0.125rem;
  transition: background-size 0.3s, background-position 0s 0.3s;
}

.g-trigger-heading-animation:hover .g-heading-underline-animation {
  background-position: 0 100%;
  background-size: 100% 0.125rem;
}

.g-cpt-detail-image {
  height: 15.625rem;
  object-fit: cover;
  object-position: center;
  width: 25rem;
  margin: 0 0 1.25rem 0;
}

.hero--dark .g-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

ul.two-columns {
  display: grid;
  column-gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
}
ul.two-columns li {
  min-width: 0;
}
@media (max-width: 48rem) {
  ul.two-columns {
    grid-template-columns: 1fr;
  }
}

body {
  background: #fbfbfb;
}

.container {
  margin: 0 auto;
  overflow: visible !important;
  padding: 2.5rem 1.875rem;
  position: relative;
  width: 100%;
}
@media (min-width: 48rem) {
  .container {
    padding: 5rem 3.75rem;
  }
}

/* WIDTH */
/*** CONTAINER WIDTH CONFIGURATION ***/
.container {
  max-width: 87.5rem;
}

.container--width-full {
  width: 100%;
}
@media (min-width: 48rem) {
  .container--width-full {
    max-width: calc(100% - 5rem);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.container--width-wide {
  max-width: 78.125rem;
}

.container--width-standard {
  max-width: 62.5rem;
}

.container--width-narrow {
  max-width: 50rem;
}

/* BOTTOM PADDING */
.container--bottom-padding-double {
  padding-bottom: 10rem;
}

.container--bottom-padding-three-quarters {
  padding-bottom: 3.75rem;
}

.container--bottom-padding-half {
  padding-bottom: 2.5rem;
}

.container--bottom-padding-quarter {
  padding-bottom: 1.25rem;
}

.container--bottom-padding-none {
  padding-bottom: 0.0625rem;
  /*& > *:last-of-type {
  	margin-bottom: 0;
  }*/
}

/*#main > div:first-of-type .container {
	padding-top: 2.5rem;
}*/
.background--grey + .background--grey .container,
.background--gradient + .background--gradient .container,
.background--white + .background--white .container {
  padding-top: 0;
}

.split--container {
  display: flex;
}
@media (max-width: 48rem) {
  .split--container {
    flex-wrap: wrap;
  }
}

.container--vertically-center {
  align-items: center;
}

@media (min-width: 48rem) {
  .container--thirty-seventy .split__child:first-of-type {
    flex: 0 0 30%;
  }
  .container--thirty-seventy .split__child:last-of-type {
    flex: 0 0 70%;
  }
  .container--forty-sixty .split__child:first-of-type {
    flex: 0 0 40%;
  }
  .container--forty-sixty .split__child:last-of-type {
    flex: 0 0 60%;
  }
  .container--fifty-fifty .split__child {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .container--sixty-forty .split__child:first-of-type {
    flex: 0 0 60%;
  }
  .container--sixty-forty .split__child:last-of-type {
    flex: 0 0 40%;
  }
  .container--seventy-thirty .split__child:first-of-type {
    flex: 0 0 70%;
  }
  .container--seventy-thirty .split__child:last-of-type {
    flex: 0 0 30%;
  }
}
.container[class*=g-container-columns-] {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0 auto;
  /*overflow: hidden;
  padding: 1.25rem;*/
  position: relative;
  row-gap: 2.5rem;
  /*width: calc(100% - 2.5rem);*/
  width: 100%;
}
@media (min-width: 48rem) {
  .container[class*=g-container-columns-] {
    gap: 2.5rem;
    grid-template-columns: repeat(12, 1fr);
    /*padding: 1.25rem;*/
    width: 100%;
  }
}

/*** CONTAINER COLUMN CONFIGURATION ***/
.container.g-container-columns-1,
.container--carousel {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 48rem) {
  .container.g-container-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 62.5rem) {
  .container.g-container-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .container.g-container-columns-2-seventy-thirty {
    grid-template-columns: repeat(2, 30% 70%);
  }
  .container.g-container-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 87.5rem) {
  .container.g-container-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*** MASONRY LAYOUT ***/
.container.g-container-masonry {
  display: block;
  font-size: 0; /* Remove whitespace between inline-block items */
}
.container.g-container-masonry .g-card,
.container.g-container-masonry a.g-card {
  display: inline-block;
  font-size: 1rem; /* Reset font-size */
  margin-bottom: 2.5rem;
  margin-right: 0;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
}

.g-heading-underline-animation {
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 0.125rem;
  transition: background-size 0.4s ease;
}

.card:hover .g-heading-underline-animation {
  background-size: 100% 0.125rem;
}

/* COLOUR VARIATIONS */
.background--red .g-heading-underline-animation {
  background-image: linear-gradient(#0066cc, #0066cc);
}

.background--gradient .g-heading-underline-animation {
  background-image: linear-gradient(#ffffff, #ffffff);
}

.background--white .g-heading-underline-animation {
  background-image: linear-gradient(#ffffff, #ffffff);
}

.background--grey {
  background: #f0f0f0;
}
.background--grey a,
.background--grey p,
.background--grey li,
.background--grey h1,
.background--grey h2,
.background--grey h3,
.background--grey h4 {
  color: #011627;
}

.background--gradient {
  background: #f0f0f0;
  background: #c0392b; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #8e44ad, #c0392b); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #48ffbf, #28abab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.background--gradient a,
.background--gradient p,
.background--gradient li,
.background--gradient h1,
.background--gradient h2,
.background--gradient h3,
.background--gradient h4 {
  color: #011627;
}

.background--white {
  background: #ffffff;
}
.background--white a,
.background--white p,
.background--white li {
  color: #011627;
}
.background--white h1,
.background--white h2,
.background--white h3,
.background--white h4 {
  color: #011627;
  line-height: 1.2;
  padding-bottom: 0.08em;
}

a,
h2 a,
p,
li,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 100;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
  max-width: 75ch;
}

a,
p,
li,
.button__text,
input[type=submit] {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

p[style="text-align: center"] {
  margin: 0 auto 1.25rem auto;
}

h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  padding: 0;
}
@media (min-width: 48rem) {
  h1 {
    font-size: 3.75rem;
    line-height: 4.0625rem;
  }
}

.split h1 {
  font-size: 2.1875rem;
  line-height: 2.1875rem;
  margin-bottom: 2.8125rem;
  padding: 0;
}
@media (min-width: 48rem) {
  .split h1 {
    font-size: 2.8125rem;
    line-height: 3.125rem;
  }
}

h2,
h2 a {
  font-size: 1.75rem;
  line-height: 1.9375rem;
}
@media (min-width: 48rem) {
  h2,
  h2 a {
    font-size: 2.8125rem;
    line-height: 3.0625rem;
  }
}

h3,
h3 span {
  font-size: 1.5625rem;
  line-height: 1.75rem;
}
@media (min-width: 48rem) {
  h3,
  h3 span {
    font-size: 2.1875rem;
    line-height: 2.375rem;
  }
}

h4,
h4 span {
  font-weight: 800;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.3125rem;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  transition: color 0.3s ease;
}

.pre-heading {
  font-weight: 600;
  letter-spacing: 0.25rem;
}

/*** COLOUR CONFIGURATION ***/
/*#main .background--white a:not(a.g-card):not(.page-numbers):not(td a):not(.g-button) {
  background-image: $gradient;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
  -webkit-text-fill-color: transparent;

  &:hover {
    background-image: none;
    color: $black;
    -webkit-text-fill-color: $black;
  }
}*/
#main .background--grey a:not(a.g-card):hover,
#main .background--white a:not(a.g-card):hover {
  color: #ffffff;
}

.background--gradient a:not(.g-button):not(.g-card),
.background--grey a:not(.g-button):not(.g-card),
.background--white a:not(.g-button):not(.g-card) {
  box-shadow: inset 0 -0.1rem 0 0 #011627;
  color: #011627;
  text-decoration: none;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.background--gradient a:not(.g-button):not(.g-card):hover,
.background--grey a:not(.g-button):not(.g-card):hover,
.background--white a:not(.g-button):not(.g-card):hover {
  box-shadow: inset 0 -3.5rem 0 0 #011627;
  color: #ffffff;
}

.header__top-bar--container {
  max-width: 100%;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
  text-align: center;
  width: 100%;
}

.header__top-bar--container p {
  margin: 0;
  max-width: 100%;
}

.header--container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 1.875rem;
}
@media (min-width: 48rem) {
  .header--container {
    padding: 1.25rem 3.75rem;
  }
}

/*.header-style--on-hero {
	background: none;
	position: absolute;
	width: 100%;
	z-index: 4;
}*/
.header__logo {
  align-items: center;
  display: flex;
  margin: 0;
  text-decoration: none;
  width: 12rem;
}
@media (min-width: 48rem) {
  .header__logo {
    width: 13.5rem;
  }
}

header a {
  box-shadow: none !important;
}

/* COLOUR CONFIGURATION */
.background--red .header__top-bar--container {
  background: #ffffff;
}
.background--red .header__top-bar--container p {
  color: #011627;
}

.background--gradient .header__top-bar--container,
.background--white .header__top-bar--container {
  background: linear-gradient(to right, #48ffbf, #28abab);
}
.background--gradient .header__top-bar--container p,
.background--white .header__top-bar--container p {
  color: #011627;
}

footer {
  text-align: center;
}

.footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__columns .footer__columns > div {
  box-sizing: border-box;
  min-width: 0;
  /* Prevent empty columns collapsing */
  min-height: 0.0625rem; /* or some small value */
}
.footer__columns--1 > div {
  flex: 1 1 100%;
}
.footer__columns--2 > div {
  flex: 1 1 100%;
}
@media (min-width: 37.5rem) {
  .footer__columns--2 > div {
    flex: 1 1 calc(50% - 2rem);
  }
}
.footer__columns--3 > div {
  flex: 1 1 100%;
}
.footer__columns--3 > div:nth-child(n+2) {
  flex-basis: calc(50% - 1rem);
}
@media (min-width: 48rem) {
  .footer__columns--3 > div {
    flex: 1 1 calc(33.333333% - 2rem);
  }
  .footer__columns--3 > div:nth-child(n+2) {
    flex-basis: calc(33.333333% - 2rem);
  }
}
.footer__columns--4 > div {
  flex: 1 1 100%;
}
@media (min-width: 37.5rem) {
  .footer__columns--4 > div {
    flex: 1 1 calc(50% - 2rem);
  }
}
@media (min-width: 48rem) {
  .footer__columns--4 > div {
    flex: 1 1 calc(25% - 2rem);
  }
}

footer ul {
  list-style-type: none;
}

footer li,
footer p,
footer a {
  margin-bottom: 0.625rem;
}

footer p {
  max-width: none;
}

footer p + h4 {
  margin-top: 1.875rem;
}

footer img {
  margin: 0 auto 0.625rem auto;
  width: auto;
}

.footer__bottom {
  padding-top: 5rem;
}

.footer__accreditations {
  align-items: center;
  /* background: rgba(255, 255, 255, 0.2);*/
  border-radius: 1.25rem;
  display: flex;
  flex-wrap: wrap; /* keep on one row */
  gap: 2rem;
  justify-content: space-around;
  margin-top: 2.5rem;
  padding: 2.5rem;
}
@media (max-width: 48rem) {
  .footer__accreditations {
    justify-content: center;
  }
  .footer__accreditations > * {
    flex: 1 1 100%;
  }
  .footer__accreditations > *:nth-child(-n+2) {
    flex-basis: calc(50% - 1rem);
  }
}

.footer__accreditations__link {
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.footer__accreditations__logo {
  display: block;
  height: 9.375rem;
  margin-bottom: 0;
  width: auto;
}

.primary-menu {
  align-items: center;
  display: flex;
  list-style-type: none;
}

.menu-item {
  margin-bottom: 0;
  margin-left: 1.875rem;
  position: relative;
}
@media (max-width: 78.125rem) {
  .menu-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    margin-left: 0;
  }
}

.primary-menu,
.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 78.125rem) {
  .primary-menu a {
    color: #011627;
    display: block;
    font-size: 1.25rem;
  }
}

@media (min-width: 78.1875rem) {
  .primary-menu > li:first-of-type {
    display: none;
  }
}

.sub-menu {
  border-radius: 0.625rem;
  display: none;
  flex-basis: 100%;
  left: 0;
  min-width: 100%;
  order: 99;
  top: 100%;
  white-space: nowrap;
  width: 100%;
  z-index: 10;
}
@media (min-width: 78.1875rem) {
  .sub-menu {
    background: white;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
    position: absolute;
    width: max-content;
    white-space: nowrap;
  }
}

.submenu-toggle {
  display: none;
}

@media (min-width: 78.1875rem) {
  .primary-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

.primary-menu .sub-menu .menu-item {
  margin-bottom: 0;
  margin-left: 0;
  padding: 0.625rem;
  position: relative;
}

.primary-menu .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

/* HIGHLIGHT LAST ITEM */
@media (min-width: 78.1875rem) {
  .primary-menu > li:last-of-type > a {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1.25rem);
    border-radius: 0.625rem;
    padding: 0.625rem 1.25rem;
  }
}

@media (min-width: 78.1875rem) {
  .primary-menu > li:last-of-type > a:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

/* BURGER */
.burger {
  align-items: center;
  box-sizing: border-box;
  background: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 1.5rem;
  justify-content: space-between;
  padding: 0.25rem 0;
  width: 1.875rem;
  z-index: 100;
}
@media (max-width: 78.125rem) {
  .burger {
    display: flex;
  }
}

.burger.open {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}

.burger span {
  border-radius: 0.125rem;
  display: block;
  height: 0.125rem;
  margin-bottom: 0;
  width: 100%;
}

.burger.open span {
  background: #011627;
}

.burger span {
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(0.1875rem) translateX(0.25rem);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-0.375rem) translateX(0.4375rem);
}

/* MOBILE MENU */
.mobile-menu-wrapper {
  align-items: center;
}
@media (min-width: 78.1875rem) {
  .mobile-menu-wrapper {
    display: flex;
  }
}

@media (max-width: 78.125rem) {
  header {
    z-index: 4;
  }
  .burger {
    display: flex;
  }
  .mobile-menu-wrapper {
    flex-direction: column;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    width: 100%;
  }
  .mobile-menu-wrapper.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 100;
  }
  .primary-menu {
    flex-direction: column;
  }
  .primary-menu > li:last-of-type > a {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #011627;
    padding: 0;
  }
  .primary-menu > li:last-of-type > a:hover {
    color: #28abab;
  }
  .background--gradient .primary-menu > li:last-of-type.current-menu-ancestor > a,
  .background--gradient .primary-menu > li:last-of-type.current-menu-item > a,
  .background--gradient .primary-menu > li:last-of-type.current_page_item > a,
  .background--grey .primary-menu > li:last-of-type.current-menu-ancestor > a,
  .background--grey .primary-menu > li:last-of-type.current-menu-item > a,
  .background--grey .primary-menu > li:last-of-type.current_page_item > a,
  .background--white .primary-menu > li:last-of-type.current-menu-ancestor > a,
  .background--white .primary-menu > li:last-of-type.current-menu-item > a,
  .background--white .primary-menu > li:last-of-type.current_page_item > a {
    box-shadow: none;
    color: #28abab;
  }
  .background--gradient .primary-menu > li:last-of-type > a:not(.g-button):not(.g-card):hover,
  .background--grey .primary-menu > li:last-of-type > a:not(.g-button):not(.g-card):hover,
  .background--white .primary-menu > li:last-of-type > a:not(.g-button):not(.g-card):hover {
    box-shadow: none;
    color: #28abab;
  }
  .main-navigation {
    background: #f0f0f0;
    height: 100vh;
    overflow: auto;
    position: relative;
    padding: 6.25rem 3.75rem 0 3.75rem;
    width: 100%;
    z-index: 120123;
  }
}
@media (max-width: 78.125rem) {
  /* Add arrow to toggle button */
  .submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.5rem;
  }
  .submenu-toggle::before {
    color: #011627;
    content: "next";
    font-family: swiper-icons;
    font-size: 1.25rem;
    display: inline-block;
    transform: rotate(90deg);
    transition: transform 0.3s;
  }
  /* Rotate when open */
  .menu-item-has-children.open > .submenu-toggle::before {
    transform: rotate(-90deg);
  }
  /* Hide submenus by default */
  .menu-item-has-children .sub-menu {
    display: none;
  }
  /* Show submenu when open */
  .menu-item-has-children.open .sub-menu {
    display: block;
    margin: 0.625rem 0 -0.625rem 0;
  }
}
/* COLOUR VARIATIONS */
/*.header-style--on-hero {
	.burger span {
		background: $white;
	}

	.burger.open span {
		background: $black;
	}

	@media (min-width: 78.1875rem) {
		.primary-menu a {
			color: $white;
		}
	}
}*/
.header-style--on-hero .sub-menu a,
.background--red .sub-menu a {
  color: #011627;
}
.header-style--on-hero .sub-menu a:hover,
.background--red .sub-menu a:hover {
  background-image: linear-gradient(to right, #48ffbf, #28abab);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.background--gradient .sub-menu a:hover {
  background-image: linear-gradient(to right, #48ffbf, #28abab);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 78.1875rem) {
  header:not(.header-style--on-hero) .primary-menu > li:last-of-type > a {
    border-radius: 0.625rem;
    padding: 0.625rem 1.25rem;
  }
}

.background--red .burger span {
  background: #ffffff;
}
.background--red .burger.open span {
  background: #011627;
}
@media (min-width: 78.1875rem) {
  .background--red .primary-menu > li:last-of-type > a {
    background-color: #ffffff;
    color: #011627;
  }
}
.background--red .primary-menu > li:not(:last-of-type).current-menu-ancestor > a,
.background--red .primary-menu > li:not(:last-of-type).current-menu-item > a,
.background--red .primary-menu > li:not(:last-of-type).current_page_item > a {
  color: #28abab;
}
.background--red .primary-menu > li:not(:last-of-type) > a:hover {
  background-image: linear-gradient(to right, #48ffbf, #28abab);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.background--red .sub-menu .current-menu-item > a {
  color: #28abab;
}
.background--red .sub-menu a:hover {
  background-image: linear-gradient(to right, #48ffbf, #28abab);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.background--gradient .burger span,
.background--white .burger span {
  background: #011627;
}
@media (min-width: 78.1875rem) {
  .background--gradient .primary-menu > li:last-of-type > a,
  .background--white .primary-menu > li:last-of-type > a {
    background-color: #28abab;
    border: 0.125rem solid #f0f0f0;
    color: #ffffff;
    transition: background-color 0.3s ease 0.1s, border-color 0.3s ease 0.1s, color 0.3s ease 0.1s;
  }
  .background--gradient .primary-menu > li:last-of-type > a:hover,
  .background--white .primary-menu > li:last-of-type > a:hover {
    background-color: #ffffff;
    border-color: #28abab;
    color: #28abab;
  }
}
.background--gradient .primary-menu > li:not(:last-of-type).current-menu-ancestor > a,
.background--gradient .primary-menu > li:not(:last-of-type).current-menu-item > a,
.background--gradient .primary-menu > li:not(:last-of-type).current_page_item > a,
.background--white .primary-menu > li:not(:last-of-type).current-menu-ancestor > a,
.background--white .primary-menu > li:not(:last-of-type).current-menu-item > a,
.background--white .primary-menu > li:not(:last-of-type).current_page_item > a {
  color: #28abab;
}
.background--gradient .primary-menu > li:not(:last-of-type) > a:hover,
.background--white .primary-menu > li:not(:last-of-type) > a:hover {
  color: #28abab;
}
.background--gradient .sub-menu .current-menu-item > a,
.background--white .sub-menu .current-menu-item > a {
  color: #28abab;
}
.background--gradient .sub-menu a:hover,
.background--white .sub-menu a:hover {
  color: #28abab;
}

@media (min-width: 78.1875rem) {
  .background--gradient:not(.header-style--on-hero) .primary-menu > li:last-of-type > a:hover {
    color: #f0f0f0;
  }
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.container [style*="text-align: center"] ~ .buttons {
  gap: 0.625rem;
  justify-content: center;
}

.g-button,
.button {
  border-radius: 0.625rem;
  box-shadow: none !important;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.125rem;
  margin-top: 0.625rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease 0.1s, color 0.3s ease 0.1s;
}
.g-button:hover,
.button:hover {
  background-color: #011627;
}

.g-button__text {
  font-size: 1rem;
  position: relative;
  text-transform: uppercase;
  z-index: 10;
}

/* COLOUR VARIATIONS */
.background--grey .g-button {
  background: #f0f0f0;
  border: 0.125rem solid #011627;
  color: #011627;
}
.background--grey .g-button .button__text {
  color: #011627;
}
.background--grey .g-button:after {
  background: #011627;
}
.background--grey .g-button:hover {
  background: black;
  color: #ffffff;
}
.background--grey .g-button:hover .button__text {
  color: #ffffff;
}
.background--grey .button__text {
  color: #011627;
}
.background--grey .g-card:hover .g-button {
  background: none;
  color: #011627;
}
.background--grey .g-card:hover .g-button .button__text {
  color: #011627;
}

.background--gradient .g-button {
  background: none;
  border: 0.125rem solid #011627;
  color: #011627;
}
.background--gradient .g-button .button__text {
  color: #011627;
}
.background--gradient .g-button:after {
  background: #011627;
}
.background--gradient .g-button:hover {
  background: black;
  color: #ffffff;
}
.background--gradient .g-button:hover .button__text {
  color: #ffffff;
}
.background--gradient .button__text {
  color: #011627;
}
.background--gradient .g-card:hover .g-button {
  background: none;
  color: #011627;
}
.background--gradient .g-card:hover .g-button .button__text {
  color: #011627;
}

.background--white .g-button {
  background: #ffffff;
  border: 0.125rem solid #011627;
  color: #011627;
}
.background--white .g-button .button__text {
  color: #011627;
}
.background--white .g-button:after {
  background: #011627;
}
.background--white .g-button:hover {
  background: #011627;
  color: #ffffff;
}
.background--white .g-button:hover .button__text {
  background: #011627;
  color: #ffffff;
}
.background--white .button__text {
  color: #ffffff;
}
.background--white .g-card:hover .g-button {
  background: none;
  color: #011627;
}
.background--white .g-card:hover .g-button .button__text {
  color: #011627;
}

/*** CENTER BUTTONS UNDERNEATH CARDS ***/
[class*=g-container-columns-] .g-button {
  grid-column: 1/-1;
  justify-self: center;
}

#main img {
  border-radius: 2.5rem;
}

.anchor-list ul {
  margin-left: 1.25rem;
}

.anchor-list__nav {
  margin-bottom: 1.25rem;
}

.anchor-list__link {
  font-weight: 800;
}

.g-card {
  background: none;
  border-radius: 1.25rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.22);
  color: inherit;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g-card:hover {
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.33);
}

.g-card__image {
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}

.g-card__image img {
  border-radius: 1.25rem 1.25rem 0 0 !important;
  transition: transform 0.4s ease;
  will-change: transform;
}

.g-card__image-restricted {
  height: 18.75rem !important;
}

/*.g-card__date {
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: 0.0625rem;
  margin-top: 0.625rem !important;
}*/
.g-card__text {
  /*margin-top: 1.25rem;*/
  padding: 1.875rem;
}

.g-card__heading-wrapper {
  margin-top: -0.625rem;
}

.g-card__heading-wrapper + div,
.g-card__heading-wrapper + p {
  margin-top: 0.625rem;
}

.g-pre-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1875rem;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}

.g-card__heading {
  background-image: linear-gradient(black 0 0.125rem, transparent 0.125rem 100%);
  background-size: 0% 0.125rem;
  background-position: 0 100%;
  background-repeat: no-repeat;
  display: inline;
  transition: background-size 0.35s ease;
}

.g-card__button {
  align-self: start;
}

.g-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.g-read-more {
  bottom: 1.875rem;
  font-weight: 800;
  left: 1.875rem;
  margin-bottom: 0;
  position: absolute;
}

.card {
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  text-align: center;
}

/* Masonry card layout - column-based masonry */
.g-container-masonry .card {
  grid-column: auto;
}

/* Masonry item styling */
.masonry-item {
  grid-column: auto;
  grid-row: auto;
}

.g-card img,
.card__image {
  /*height: 100%;
  margin-bottom: 1.25rem;
  object-fit: cover;
  width: 100%;*/
}

.venues__list {
  display: grid;
  gap: 1.25rem;
  grid-column: 1/-1;
  grid-template-columns: repeat(12, 1fr);
}

.venues__list-item {
  grid-column: span 3;
  list-style-type: none;
}

.swiper-container {
  width: 100vw;
}

/*** ANIMATIONS ***/
.g-card:not(.google-reviews__item):not(img.masonry-item):hover {
  transform: translateY(-0.3125rem);
}

.g-card:hover .g-card__image img {
  transform: scale(1.1);
}

.g-card:hover .g-card__heading {
  background-size: 100% 0.125rem;
}

/*** BORDER ***/
.g-card--image-padding {
  padding: 1.875rem;
}
.g-card--image-padding .g-card__text {
  padding: 1.875rem 0 0 0;
}

.g-card--image-no-padding .g-card__image,
.g-card--image-no-padding img {
  border-radius: 1.25rem 1.25rem 0 0 !important;
}
.g-card--image-no-padding .g-card__text {
  padding-top: 1.875rem;
}

.venues .g-card--image-no-padding .g-card__text {
  padding-top: 1.875rem;
}

.venues .g-card__heading-wrapper {
  margin-bottom: 0;
}

/*** IMAGE CURVE ***/
.g-card--curve .g-card__image {
  border-radius: 1.375rem 1.375rem 0 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-image: url(/wp-content/themes/swim-expert/img/image-curve.svg);
  mask-image: url(/wp-content/themes/swim-expert/img/image-curve.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
.g-card--curve .g-card__image img {
  height: 100%;
  margin-bottom: 1.25rem;
  object-fit: cover;
  width: 100%;
}

/*** SHADOW ***/
.g-card--shadow {
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.0012);
}

.g-card:not(.google-reviews__item):hover {
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.22);
}

/*** BUTTON POSITION ***/
.g-card--vertical.g-card--natural {
  padding-bottom: 0;
}

@media (min-width: 48rem) {
  .g-card--bottom .g-button {
    bottom: 1.875rem;
    left: 1.875rem;
    position: absolute !important;
  }
}
/*** VERTICAL SETUP ***/
@media (min-width: 48rem) {
  .g-card--show.g-card--bottom {
    padding-bottom: 5rem;
  }
  /*.g-card--vertical .cards__text,
  .cards__item.cards--vertical .cards__text {
  	margin-top: 1.875rem;
  }*/
}
/*** CASE STUDIES CARD TEMP FIX AS BUTTON BOTTOM TO FAR AWAY FROM TEXT ***/
@media (min-width: 48rem) {
  .case-studies .g-card--show.g-card--bottom {
    padding-bottom: 3.125rem;
  }
}

/*** HORIZONTAL SETUP ***/
.g-card--horizontal .g-card__text {
  padding: 1.875rem;
}

@media (min-width: 48rem) {
  .g-card--horizontal {
    flex-direction: row;
    padding: 0;
  }
  .cards--horizontal.g-card {
    align-items: center;
  }
  .g-card--horizontal .g-card__image {
    border-radius: 1.875rem 0 0 1.875rem !important;
    height: 100%;
    width: 50%;
  }
  .g-card--horizontal .cards__image__img,
  .g-card--horizontal .g-card__image img {
    border-radius: 1.875rem 0 0 1.875rem !important;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .g-card--horizontal .cards__text {
    position: relative;
    width: calc(50% - 2.5rem);
  }
  .g-card--horizontal .g-button {
    margin-bottom: 0;
  }
}
/*** COLOUR CONFIGURATION ***/
/* WHITE */
.background--white .g-card {
  background: #f0f0f0;
}
.background--white .g-card:hover .g-card__button {
  border: 0.125rem solid #011627;
}
.background--white .g-card:hover .g-button__text {
  color: #011627;
}

/* GRADIENT */
.background--gradient .g-card {
  background: #ffffff;
}
.background--gradient .g-card p {
  color: #011627;
}
.background--gradient .g-card:hover .g-card__button {
  border: 0.125rem solid #011627;
}
.background--gradient .g-card:hover .g-button__text {
  color: #011627;
}

/* RED */
.background--red .g-card {
  background: white;
}
.background--red .g-card h3,
.background--red .g-card p {
  color: black;
}
.background--red .g-card .g-card__button {
  background: #011627;
  border: 0.125rem solid #011627;
}
.background--red .g-card .g-button__text {
  color: #ffffff;
}
.background--red .g-card:hover .g-card__button {
  border: 0.125rem solid #011627;
}
.background--red .g-card:hover .g-button__text {
  color: #011627;
}

.carousel {
  margin: 0 -25rem;
}

.carousel img {
  width: 100%;
}

.carousel__image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.carousel--peek {
  overflow: visible;
}

/* container stays at normal theme width; no full-bleed override */
.carousel--peek .swiper-carousel {
  overflow: visible;
}

/* wrapper margins give the peek effect */
/* give a bit of padding so neighbours are visible even when loop clones exist */
.carousel--peek .swiper-wrapper {
  /* give a bit of gutter so neighbour slides can peek without creating spacing issues
     when Swiper clones slides for looping */
  box-sizing: border-box;
}

/* ensure centered slide is full width of container */
.carousel--peek .swiper-slide {
  width: 100% !important;
  flex: 0 0 100%;
  box-sizing: border-box;
}

.contact-details__heading {
  text-align: center;
}

.contact-details p {
  transition: color 0.5s ease;
}

.contact-details__telephone-and-email {
  margin: 0 auto;
  max-width: 62.5rem;
}

.contact-details__telephone-number,
.contact-details__email {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 48rem) {
  .contact-details__telephone-number {
    margin-bottom: 2.5rem;
  }
}

.contact-details__icon-wrapper {
  border-radius: 4.375rem;
  height: 4.375rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  transition: background-color 0.5s ease;
  width: 4.375rem;
}

.contact-details__icon-wrapper::before {
  border-radius: inherit;
  content: "";
  inset: -0.0625rem;
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.contact-details__icon {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.contact-details__icon path {
  transition: fill 0.5s ease;
}

.contact-details__telephone-and-email {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.contact-details__telephone-and-email > a {
  box-shadow: none !important;
  flex: 1 1 50%;
  min-width: 0;
  padding: 0 1.25rem;
  position: relative;
}
@media (max-width: 48rem) {
  .contact-details__telephone-and-email > a {
    flex-basis: 100%;
  }
}

/*.contact-details__telephone-and-email > a:first-of-type::after {
	background: $white;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 0.125rem;
}*/
.contact-details__telephone-and-email p {
  font-size: 1.5625rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

p.contact-details__small {
  font-size: 0.875rem !important;
  margin-top: -1.25rem;
}

/* COLOUR VARIAATIONS */
.background--grey .contact-details__icon-wrapper,
.background--white .contact-details__icon-wrapper {
  background: linear-gradient(to right, #48ffbf, #28abab);
}
.background--grey .contact-details__icon-wrapper::before,
.background--white .contact-details__icon-wrapper::before {
  background: #011627;
  opacity: 0;
}
.background--grey .contact-details__icon path,
.background--white .contact-details__icon path {
  fill: #ffffff;
}
.background--grey.contact-details a:hover .contact-details__icon-wrapper::before,
.background--white.contact-details a:hover .contact-details__icon-wrapper::before {
  opacity: 1;
}
.background--grey.contact-details a:hover p,
.background--white.contact-details a:hover p {
  color: #28abab;
}

.background--gradient .contact-details__icon-wrapper {
  background: #ffffff;
}
.background--gradient .contact-details__icon path {
  fill: #011627;
}
.background--gradient.contact-details a:hover .contact-details__icon-wrapper {
  background: #011627;
}
.background--gradient.contact-details a:hover .contact-details__icon path {
  fill: #ffffff;
}
.background--gradient.contact-details a:hover p {
  color: #ffffff;
}

.divider {
  clear: both;
  width: 100%;
}

.divider__inner {
  margin: 0 auto;
  max-width: 62.5rem;
  width: calc(100% - 3.75rem);
}
@media (min-width: 48rem) {
  .divider__inner {
    width: calc(100% - 5rem);
  }
}

.background--grey + .divider {
  background: #f0f0f0;
}
.background--grey + .divider .divider__inner {
  border-bottom: 0.0625rem solid #011627;
}

.background--white + .divider {
  background: #ffffff;
}
.background--white + .divider .divider__inner {
  border-bottom: 0.0625rem solid #011627;
}

.background--gradient + .divider {
  background: -webkit-linear-gradient(to right, #8e44ad, #c0392b);
  background: linear-gradient(to right, #48ffbf, #28abab);
}
.background--gradient + .divider .divider__inner {
  border-bottom: 0.0625rem solid #011627;
}

/*** EVENT CARD ***/
.g-card__text--event .g-card__heading-wrapper {
  margin: 0.3125rem 0 1.25rem 0;
}

.g-card__image--event {
  border-radius: 1.25rem;
  filter: drop-shadow(0 1.25rem 1.5625rem rgba(0, 0, 0, 0.18));
  position: relative;
}

.g-card__image__text {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  padding: 1.25rem;
  position: absolute;
  top: 0;
  width: 100%;
}

.g-card__image__text p {
  color: #ffffff !important;
  font-weight: 800;
  justify-content: center;
}

.g-card__text--center {
  padding: 1.875rem 1.25rem 0.625rem 1.25rem;
  text-align: center;
}

.g-card__details {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.single .g-card__details {
  max-width: 16.5625rem;
}

.g-card__details .g-card__date {
  border-right: 0.0625rem solid #011627;
}

.g-card__details p {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.g-card__details svg {
  margin-bottom: -0.625rem;
}

/*** EVENT PAGE ***/
.event-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1.25rem;
  margin-bottom: 2.1875rem;
  text-align: center;
}

.event-heading .g-card__location {
  margin: 0;
}

.event-heading .g-card__event-details {
  max-width: 25rem;
}

.event-heading .g-card__button {
  align-self: center;
}

.event-drop-off-pick-up {
  text-align: center;
}

.event-drop-off-pick-up svg {
  margin-bottom: 0.625rem;
}

.event-drop-off-pick-up p {
  margin: 0;
}

.event-drop-off-pick-up__inner {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  position: relative;
  justify-items: center;
  text-align: center;
}

.event-drop-off:after {
  background: black;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  width: 0.0625rem;
}

.event__schools-list {
  margin-top: 1.25rem;
}

.event__description .container {
  border-top: 0.0625rem solid #011627;
  padding-top: 1.25rem !important;
}

#accordionGroup {
  grid-column: 1/-1;
}

.accordion__wrapper {
  border-radius: 0.625rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
  margin-bottom: 1.25rem;
}

.accordion {
  border-radius: 0.4375rem;
  grid-column: 4/span 6;
  margin: 0;
  padding: 0;
  width: 100%;
}

.accordion h3 {
  margin-bottom: 0;
}

.accordion h3 span {
  font-size: 1.125rem;
  line-height: 1.375rem;
  padding: 0;
  max-width: 100%;
}
@media (min-width: 48rem) {
  .accordion h3 span {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}

.accordion > * + * {
  border-top: 0.0625rem solid hsl(0, 0%, 52%);
}

.accordion-trigger {
  background: none;
  border: none;
  border-radius: 0.625rem 0.625rem 0 0;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  outline: none;
  padding: 1.25rem 4.5rem 1.25rem 1.25rem;
  position: relative;
  text-align: left;
  width: 100%;
}

/*.accordion-trigger:focus,
.accordion-trigger:hover {
	background: hsl(216deg 94% 94%);
}*/
.accordion-trigger:focus {
  outline: 0.25rem solid transparent;
}

.accordion > *:first-child .accordion-trigger,
.accordion > *:first-child {
  border-radius: 0.625rem;
}

.accordion > *:last-child .accordion-trigger,
.accordion > *:last-child {
  border-radius: 0.625rem;
}

.accordion__button {
  border-style: none;
}

.accordion button::-moz-focus-inner {
  border: 0;
}

.accordion .accordion-title {
  border: transparent 0.125rem solid;
  border-radius: 0.3125rem;
  display: block;
  font-weight: 800;
  margin: 0;
  outline: none;
  padding: 0.625rem 0;
  pointer-events: none;
  position: relative;
}

.accordion-trigger:focus .accordion-title {
  border-color: #011627;
}

.accordion .accordion-icon {
  border: solid currentcolor;
  border-width: 0 0.125rem 0.125rem 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: -2.75rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}

.accordion-trigger:focus .accordion-icon,
.accordion-trigger:hover .accordion-icon {
  border-color: #011627;
}

.accordion-trigger[aria-expanded=true] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-panel {
  margin: 0;
  padding: 0 1.5rem 1rem 1.5rem;
}

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordion-panel[hidden] {
  display: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

input {
  border: 0.0625rem solid hsl(0, 0%, 42%);
  border-radius: 0.3em;
  display: block;
  font-size: inherit;
  padding: 0.5rem;
}

/*** COLOUR CONFIGURATION ***/
/*** RED ***/
.background--red .accordion-title {
  color: #ffffff;
}
.background--red .accordion__wrapper {
  border: 0.0625rem solid #ffffff;
}

.background--white .accordion__wrapper {
  border: 0.0625rem solid #011627;
}

.contact-details__contact-form {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

input,
textarea {
  border-radius: 0;
  padding: 1.25rem 0;
}

input[type=submit] {
  border-radius: 0.625rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  padding: 0.625rem 1.25rem;
  text-transform: uppercase;
  transition: 0.2s;
}
@media (min-width: 48rem) {
  input[type=submit] {
    padding: 0.9375rem 1.25rem;
  }
}

nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

nf-field:nth-of-type(1),
nf-field:nth-of-type(2),
nf-field:nth-of-type(4),
nf-field:nth-of-type(5) {
  width: 100%;
}
@media (min-width: 48rem) {
  nf-field:nth-of-type(1),
  nf-field:nth-of-type(2),
  nf-field:nth-of-type(4),
  nf-field:nth-of-type(5) {
    width: calc(50% - 1.25rem);
  }
}

nf-field:nth-of-type(3) {
  width: 100%;
}

nf-field:nth-of-type(4) label {
  margin-top: -0.4375rem;
}

@media (min-width: 48rem) {
  .submit-container .field-wrap {
    text-align: right;
  }
}

.nf-field-label .nf-label-span,
.nf-field-label label {
  font-weight: 400 !important;
}

.label-above .nf-field-label {
  display: none;
  margin-bottom: 0 !important;
}

.nf-response-msg p {
  box-shadow: none !important;
  font-weight: 800;
  margin: 0 auto 1.25rem auto;
  text-align: center;
}

.nf-error-msg {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  margin-top: 0.625rem;
  text-transform: uppercase;
}

/* ITEMS TO HIDE */
.nf-form-title,
.nf-form-fields-required {
  display: none;
}

/* COLOUR VARIATIONS */
.background--gradient label,
.background--gradient .ninja-forms-req-symbol,
.background--gradient .ninja-forms-req-symbol,
.background--gradient input,
.background--gradient textarea,
.background--gradient ::placeholder {
  color: #011627;
}
.background--gradient .nf-error-msg {
  color: #011627;
}
.background--gradient .nf-error.listimage-wrap .nf-field-element ul,
.background--gradient .nf-error .ninja-forms-field,
.background--gradient input,
.background--gradient textarea {
  border: none;
  border-bottom: 0.125rem solid #011627;
}
.background--gradient input[type=submit] {
  border: 0.125rem solid #011627;
  color: #011627;
}
.background--gradient input[type=submit]:hover {
  background: #011627;
  color: #011627;
}

.background--grey label,
.background--grey .ninja-forms-req-symbol,
.background--grey .nf-error-msg,
.background--grey .ninja-forms-req-symbol,
.background--grey input,
.background--grey textarea,
.background--grey ::placeholder,
.background--white label,
.background--white .ninja-forms-req-symbol,
.background--white .nf-error-msg,
.background--white .ninja-forms-req-symbol,
.background--white input,
.background--white textarea,
.background--white ::placeholder {
  color: #011627;
}
.background--grey .nf-error.listimage-wrap .nf-field-element ul,
.background--grey .nf-error .ninja-forms-field,
.background--grey input,
.background--grey textarea,
.background--white .nf-error.listimage-wrap .nf-field-element ul,
.background--white .nf-error .ninja-forms-field,
.background--white input,
.background--white textarea {
  border: none;
  border-bottom: 0.125rem solid #011627;
}
.background--grey input[type=submit],
.background--white input[type=submit] {
  border: 0.125rem solid #011627;
  color: #011627;
}
.background--grey input[type=submit]:hover,
.background--white input[type=submit]:hover {
  background: #011627;
  color: #ffffff;
}

#google-map,
.google-map {
  border-radius: 2.5rem;
  display: block;
  height: 31.25rem;
  min-height: 31.25rem;
  overflow: hidden;
  width: 100%;
}

.google-map img,
.google-map picture,
#google-map img,
#google-map picture {
  max-width: none;
}

.google-map *,
#google-map * {
  box-sizing: content-box;
}

.maps__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.maps__missing-location {
  background: rgba(1, 22, 39, 0.08);
  border-radius: 0.5rem;
  margin: 0;
  padding: 1rem;
}

.container--google-reviews {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 48rem) {
  .container--google-reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

.container--google.g-container-stacked {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 48rem) {
  .container--google.g-container-stacked {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 62.5625rem) {
  .container--google.g-container-stacked.g-container-columns-3, .container--google.g-container-stacked.g-container-columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 81.3125rem) {
  .container--google.g-container-stacked.g-container-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.google-reviews__item {
  background: white;
  padding: 1.875rem;
}

.google-reviews__item .g-pre-heading {
  margin-bottom: 0;
}

.google_reviews__stars {
  color: #d9d9d9;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.3125rem;
  position: relative;
}

.google_reviews__stars-base {
  color: #d9d9d9;
  display: block;
  margin: 0;
}

.google_reviews__stars-fill {
  color: #fabd05;
  display: block;
  height: 100%;
  inset: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: var(--stars-fill, 0%);
}

.google-reviews__author-logo {
  align-items: center;
  display: flex;
}

.google-reviews__logo {
  height: auto;
  margin-right: 0.625rem;
  width: 1.875rem !important;
}

.google_reviews__author {
  font-weight: 800;
  margin: 0;
}

.style-featured .container--google {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.style-featured .google-reviews__item {
  background: transparent;
  padding: 0;
}
.style-featured .google_reviews__stars {
  font-size: 1.75rem;
  margin-bottom: 1.5625rem;
}
.style-featured .google_reviews__content {
  margin-bottom: 1.875rem;
}
.style-featured .google_reviews__content p {
  font-size: clamp(1.4rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}
.style-featured .google_reviews__content p::before {
  content: '"';
}
.style-featured .google_reviews__content p::after {
  content: '"';
}
.style-featured .google-reviews__logo {
  width: 2.5rem !important;
}
.style-featured .google_reviews__author {
  font-size: 1.25rem;
}
.style-featured .g-button {
  align-self: flex-start;
  margin-top: 2.5rem;
  width: auto;
}
.style-featured.google .google__button-wrapper {
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .style-featured.google .google__button-wrapper {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}
.style-featured.google .google__button-wrapper--width-narrow {
  max-width: 50rem;
}
.style-featured.google .google__button-wrapper--width-standard {
  max-width: 62.5rem;
}
.style-featured.google .google__button-wrapper--width-wide {
  max-width: 78.125rem;
}
.style-featured.google .google__button-wrapper--width-full {
  max-width: 100%;
}
@media (min-width: 48rem) {
  .style-featured.google .google__button-wrapper--width-full {
    max-width: calc(100% - 5rem);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.google.google--mobile-carousel > .google__mobile-carousel {
  display: none;
}

@media (max-width: 48rem) {
  .google--mobile-carousel .container--google {
    display: none !important;
  }
  .google--mobile-carousel.google > .google__mobile-carousel {
    display: block;
    padding: 2.5rem 1.875rem;
    width: 100%;
  }
  .google--mobile-carousel .load-more-wrapper {
    display: none;
  }
}

.google .load-more-wrapper,
.google .google__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.google .google__button-wrapper {
  padding-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .google .google__button-wrapper {
    padding-bottom: 5rem;
  }
}

.google--has-load-more .container--google {
  padding-bottom: 0;
}
.google--has-load-more .load-more-wrapper {
  padding-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .google--has-load-more .load-more-wrapper {
    padding-bottom: 5rem;
  }
}

.google--has-standard-button .container--google {
  padding-bottom: 0;
}

#google-reviews-fixed {
  align-items: center;
  background: #ffffff;
  border-radius: 0.3125rem 0 0 0.3125rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0.25rem 0.75rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 6.875rem;
  justify-content: space-between;
  padding: 0.625rem;
  position: fixed;
  right: 0;
  text-align: center;
  top: 75%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 6.875rem;
  z-index: 110;
}
@media (min-width: 48rem) {
  #google-reviews-fixed {
    top: 50%;
    transform: translateY(-50%);
  }
}

#google-reviews-fixed:hover {
  box-shadow: rgba(0, 0, 0, 0.4) 0 0.25rem 0.75rem;
}

.google-reviews__hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-35%);
}

#google-reviews-fixed .google_reviews__stars {
  margin-bottom: -0.5rem;
}

#google-reviews-fixed .google_reviews__star {
  font-size: 0.875rem;
}

.google-reviews-fixed-list__close {
  align-items: center;
  background: #f0f0f0;
  border: 0.125rem solid #011627;
  border-radius: 0.3125rem;
  color: #011627;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  height: 1.875rem;
  justify-content: center;
  position: sticky;
  top: 0;
  width: 1.875rem;
  z-index: 100;
}

#google-reviews-fixed p {
  font-size: 0.6875rem;
  font-weight: 600;
  margin-bottom: 0;
}

#google-reviews-fixed-list {
  background: #ffffff;
  border-radius: 0.3125rem 0 0 0.3125rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.25rem 0.75rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  max-height: 80%;
  max-width: 25rem;
  overflow-y: auto;
  padding: 1.25rem;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 90%;
  z-index: 110;
}

.google-reviews-fixed-list__top {
  border-bottom: 0.0625rem solid #011627;
  margin-top: -3.125rem;
}

.google-reviews-fixed-list__top__image {
  margin: 0 auto;
  width: 12.5rem;
}

#google-reviews-fixed-list .review {
  border-bottom: 0.0625rem solid #011627;
  padding: 1.25rem 0;
}

#google-reviews-fixed-list .review:last-of-type {
  border-bottom: 0;
}

#google-reviews-fixed-list .review__content {
  margin: 0.625rem 0;
}

#google-reviews-fixed-list h3 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 0;
}

#google-review-fixed-overlay {
  background: rgba(0, 0, 0, 0.75);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero {
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
@media (min-width: 48rem) {
  .hero {
    min-height: 50rem;
  }
}

.hero__container {
  display: flex;
  height: 100%;
  max-width: 100%;
  width: 100%;
}

.hero__image {
  border-radius: 0 !important;
  height: 100%;
  left: 0;
  position: absolute;
  object-fit: cover;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero__text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
@media (min-width: 48rem) {
  .hero__text {
    width: 50%;
  }
}

.hero--light .hero__text {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1.25rem);
  border-radius: 2.5rem;
  padding: 2.5rem;
}

.hero h1 {
  font-size: 2.8125rem;
  line-height: 2.8125rem;
  margin-bottom: 1.5625rem;
}

.hero p {
  font-size: 1.625rem;
}

/* TEXT ALIGNMENT + BUTTON */
.hero__text--middle {
  text-align: center;
}
.hero__text--middle .button {
  margin: 0 auto;
}

.hero__text--right {
  text-align: right;
}
.hero__text--right .button {
  margin-left: auto;
}

/* HORIZONTAL TEXT POSITION */
.hero__container-horizontal-left {
  justify-content: flex-start;
}

.hero__container-horizontal-middle {
  justify-content: center;
}

.hero__container-horizontal-right {
  justify-content: flex-end;
}

/* VERTICAL TEXT POSITION */
.hero__container-vertical-top {
  align-items: flex-start;
}

.hero__container-vertical-middle {
  align-items: center;
}

.hero__container-vertical-bottom {
  align-items: flex-end;
}

.latest-news__heading {
  grid-column: 1/-1;
  text-align: center;
}

.classic-pagination {
  display: flex;
  gap: 0.625rem;
  grid-column: 1/-1;
  flex: 1;
  width: 100%;
}

.page-numbers {
  align-items: center;
  background: #011627;
  border: 0.125rem solid #011627;
  border-radius: 1.875rem;
  color: #ffffff !important;
  display: flex;
  flex-wrap: wrap;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.page-numbers:hover,
.page-numbers.current {
  background: #ffffff;
  color: #011627 !important;
}

.popup-cpt {
  align-content: center;
  border-radius: 1.25rem;
  display: flex;
  left: 50%;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease-in-out;
  visibility: hidden;
  width: 0 auto;
  z-index: 20;
}
@media (min-width: 48rem) {
  .popup-cpt {
    flex-wrap: wrap;
  }
}

.popup-cpt.fade-in {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0s;
}

.popup-cpt__close { /* THIS SHOULD BE MOVED INTO A GENERIC ELEMENT FOR ALL CLOSED BUTTONS AND SHOULD BE AN ACTUAL BUTTON FOR KEYBOARD NAVIGATION */
  background: #011627;
  border: 0.125rem solid #011627;
  border-radius: 0.3125rem;
  right: 1.25rem;
  top: 1.25rem;
}

.popup-cpt__close .close-icon {
  color: #ffffff;
}

.g-button-close.popup-cpt__close:hover {
  background: #ffffff !important;
}

.g-button-close.popup-cpt__close:hover .close-icon {
  color: #011627;
}

.popup-cpt .close-icon {
  font-weight: 800;
  margin-bottom: 0;
}

.popup-cpt__image-div {
  height: 100%;
  flex-grow: 1;
  width: 50%;
}

/*** SINGLE IMAGE ***/
.popup-cpt__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/*** MULTIPLE IMAGES ***/
.popup-cpt .popup-cpt__slider,
.popup-cpt .swiper-wrapper,
.popup-cpt .swiper-slide {
  height: 100% !important;
}

.popup-cpt__text {
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  overflow: auto;
  padding: 1.25rem;
  width: 50%;
  text-align: center;
}
@media (min-width: 48rem) {
  .popup-cpt__text {
    text-align: left;
  }
}

.popup-text--flex-align-start {
  justify-content: flex-start;
}

.popup-cpt__title {
  /*font-family: $popup-cpt-title-font-family;
  font-size: $popup-cpt-title-font-size;
  font-weight: $popup-cpt-title-font-weight;
  line-height: $popup-cpt-title-line-height;*/
}

.popup-cpt__text p:not(.popup-cpt__title) {
  /*font-size: $popup-cpt-text-size;*/
}

/*** BUTTON ***/
.popup-cpt .links--grid.left {
  justify-content: flex-start;
}

@media (max-width: 48rem) {
  .popup-cpt .links--grid {
    justify-content: center !important;
  }
}

/*** POPUP SPLIT ***/
/*** IMAGE ON LEFT ***/
.popup-cpt--image_top {
  flex-direction: column;
}
.popup-cpt--image_top .popup-cpt__image-div,
.popup-cpt--image_top .popup-cpt__text {
  height: 50%;
  width: 100%;
}

/*** IMAGE ON RIGHT ***/
.popup-cpt--image_right .popup-cpt__image-div {
  order: 1;
}
.popup-cpt--image_right .popup-cpt__image {
  order: 0;
}

/*** POPUP STACKED ***/
.popup-cpt--image_top {
  grid-template-columns: 1fr;
}

.popup-cpt--image_top p {
  margin-left: auto;
  margin-right: auto;
}

/*** SIZE VARIATIONS ***/
/*** SIDE-BY-SIDE ***/
.popup-cpt--image_left,
.popup-cpt--image_right {
  flex-direction: column;
}
@media (min-width: 48rem) {
  .popup-cpt--image_left,
  .popup-cpt--image_right {
    height: 90% !important;
  }
  .popup-cpt--image_left .popup-cpt__image-div,
  .popup-cpt--image_right .popup-cpt__image-div {
    order: 0;
  }
  .popup-cpt--image_left .popup-cpt__text,
  .popup-cpt--image_right .popup-cpt__text {
    order: 1;
  }
  .popup-cpt--image_left .popup-cpt__image-div,
  .popup-cpt--image_left .popup-cpt__text,
  .popup-cpt--image_right .popup-cpt__image-div,
  .popup-cpt--image_right .popup-cpt__text {
    height: auto;
    width: 100%;
  }
}
.popup-cpt--image_left .popup-cpt-container,
.popup-cpt--image_right .popup-cpt-container {
  text-align: left;
}
.popup-cpt--image_left.popup-cpt--small,
.popup-cpt--image_right.popup-cpt--small {
  height: 80%;
  max-width: 40%;
}
.popup-cpt--image_left.popup-cpt--medium,
.popup-cpt--image_right.popup-cpt--medium {
  height: 80%;
  max-width: 60%;
}
.popup-cpt--image_left.popup-cpt--large,
.popup-cpt--image_right.popup-cpt--large {
  height: 80%;
  max-width: 80%;
}

/*** STACKED ***/
.popup-cpt--image_top {
  border: 0.625rem solid #011627;
  height: 80%;
  max-width: 90%;
  text-align: center;
  width: 100%;
}
@media (min-width: 48rem) {
  .popup-cpt--image_top {
    height: 80%;
  }
}
@media (min-width: 48rem) {
  .popup-cpt--image_top.popup-cpt--small {
    max-width: 40%;
  }
  .popup-cpt--image_top.popup-cpt--medium {
    max-width: 60%;
  }
  .popup-cpt--image_top.popup-cpt--large {
    max-width: 80%;
  }
}

/*** TEXT ONLY ***/
.popup-cpt--no_image {
  height: auto;
}
.popup-cpt--no_image .g-button-close {
  right: 0.75rem;
  top: 0.75rem;
}
.popup-cpt--no_image .popup-cpt__text {
  text-align: center;
}
.popup-cpt--no_image .links--grid.left {
  justify-content: center;
}
@media (min-width: 48rem) {
  .popup-cpt--no_image {
    height: auto;
  }
}
.popup-cpt--no_image.popup-cpt--small {
  max-width: 40%;
}
.popup-cpt--no_image.popup-cpt--medium {
  max-width: 60%;
}
.popup-cpt--no_image.popup-cpt--large {
  max-width: 80%;
}

/*** COUNTDOWN TIMER ***/
.popup-cpt-countdown-timer {
  margin-bottom: 1.875rem;
}
.popup-cpt-countdown-timer .popup-cpt--heading {
  font-weight: 800;
}
.popup-cpt-countdown-timer .days {
  font-weight: 400;
}
.popup-cpt-countdown-timer .g--grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.popup-cpt-countdown-timer .four-columns .g--grid__child {
  grid-column: span 3;
  text-align: center;
}

.popup-cpt--heading {
  margin-bottom: 0.625rem;
}

.popup-cpt--container {
  padding: 0;
}

.popup-cpt--heading {
  /*font-weight: $popup-cpt-title-font-weight;*/
}

/*** COLOUR VARIATIONS ***/
.popup-cpt .g-button-close {
  color: #011627;
}
.popup-cpt.popup-cpt--image_left .g-button-close {
  color: blue;
}

/*** POPUP OVERLAY ***/
.js-popup-cpt-overlay {
  border-radius: 0 !important;
  display: none;
  z-index: 110;
}

/*** GENERIC ***/
.g-button-close { /* THIS SHOULD BE MOVED INTO A GENERIC ELEMENT FOR ALL CLOSED BUTTONS AND SHOULD BE AN ACTUAL BUTTON FOR KEYBOARD NAVIGATION */
  align-items: center;
  color: pink;
  cursor: pointer;
  display: flex;
  font-size: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  position: absolute;
  width: 2.5rem;
  z-index: 2;
}
.g-button-close:hover {
  background: none !important;
}

.overlay.stretch {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: none !important;
  height: 100%;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.circle-text-container {
  animation: spin 10s linear infinite;
  height: 14.375rem;
  margin: 0 auto;
  width: 14.375rem;
}

.circle-text {
  height: 100%;
  width: 100%;
}

text {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.4375rem;
  text-transform: uppercase;
  transition: 0.2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* COLOUR VARIATIONS */
.background--red text {
  fill: #ffffff;
}

.background--gradient text {
  fill: #011627;
}
.background--gradient .circle-text-container:hover text {
  fill: #011627;
}

.background--white text {
  fill: #011627;
}

/* FOOTER VERSION */
footer .circle-text-container {
  margin: 0;
}

.table-container {
  position: relative;
}

.class-filter .search-filter-results .table-container {
  margin: 2rem 0;
}

.class-listings .table-container {
  margin: 0;
}

/* Scroll hint
.table-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.875rem;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, rgba(0,0,0,0.15), transparent);
} */
#location {
  border-collapse: collapse;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.07);
  width: 100%;
}

/* Force scroll on mobile */
@media (max-width: 56.25rem) {
  #location {
    min-width: 62.5rem;
  }
}
#location th,
#location td {
  font-weight: 400;
  padding: 1rem 1.5rem;
  text-align: left;
  text-transform: capitalize;
  white-space: nowrap;
}

#location th {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#location tr:last-child td {
  border-bottom: none;
}

#location td a {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

/* ✅ Sticky first column

@media (max-width: 56.25rem) {

  #location th:first-child,
  #location td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  #location th:first-child {
    z-index: 3;
  }

}  */
/*** Banner / filters ***/
.sfp-banner,
.search-filter-form,
.search-filter-results-header {
  align-items: center;
  background: #f7f7f7;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.04);
  border-radius: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.2rem 2rem;
}

.sfp-banner .sfp-found,
.search-filter-results-header .sfp-found,
.search-filter-form .sfp-found,
.search-filter-results-header .search-filter-results-count,
.search-filter-form .search-filter-results-count {
  background: #011627;
  border-radius: 0.3125rem;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.2rem;
}

/*** Mobile layout ***/
@media (max-width: 43.75rem) {
  .sfp-banner,
  .search-filter-form,
  .search-filter-results-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }
}
/*** Select styling ***/
.searchandfilter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.875rem;
}

.searchandfilter ul {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../img/select-arrow.svg");
  background-position: right 0.625rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  margin: 0 1.25rem;
  padding: 1.25rem 0.625rem;
}

select option {
  padding: 0;
}

.search-filter-results {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.search-filter-results:not(td) {
  font-weight: 800;
}

/*** COLOUR CONFIGURATION ***/
.class-listings td:last-of-type a {
  border-radius: 0.3125rem;
  padding: 0.625rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.class-listings td:last-of-type a:hover {
  background: none;
}

.class-listings.background--white select,
.class-listings.background--gradient select {
  border: 0.125rem solid #011627;
  color: #011627;
}
.class-listings.background--white select option,
.class-listings.background--gradient select option {
  color: #000;
  background: #ffffff;
}
.class-listings.background--white #location th,
.class-listings.background--white #location td,
.class-listings.background--gradient #location th,
.class-listings.background--gradient #location td {
  border-bottom: 0.125rem solid #011627;
}
.class-listings.background--white #location th,
.class-listings.background--gradient #location th {
  background: #f0f0f0;
  border-top: 0.125rem solid #011627;
}
.class-listings.background--white #location tr,
.class-listings.background--gradient #location tr {
  background: #f0f0f0;
}
.class-listings.background--white #location tr:nth-child(even),
.class-listings.background--gradient #location tr:nth-child(even) {
  background: #ffffff;
}
.class-listings.background--white td:last-of-type a,
.class-listings.background--gradient td:last-of-type a {
  background: #011627;
  border: 0.125rem solid #011627;
  color: #ffffff !important;
}
.class-listings.background--white td:last-of-type a:hover,
.class-listings.background--gradient td:last-of-type a:hover {
  color: #011627 !important;
}

.class-listings.background--red {
  color: white;
}
.class-listings.background--red select {
  border: 0.125rem solid #ffffff;
  color: #ffffff;
}
.class-listings.background--red select {
  background-image: url("../img/select-arrow-red.svg");
}
.class-listings.background--red select option {
  color: #011627;
  background: #ffffff;
}
.class-listings.background--red #location th,
.class-listings.background--red #location td {
  border-bottom: 0.125rem solid #ffffff;
}
.class-listings.background--red #location th {
  background: #011627;
  color: #ffffff;
}
.class-listings.background--red #location tr {
  background: #011627;
  color: #ffffff;
}
.class-listings.background--red #location tr:nth-child(even) {
  background: #011627;
  color: #ffffff;
}

.services__list--two {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48rem) {
  .services__list--two .service {
    width: 50%;
  }
}
.services__list--two .service:nth-of-type(1), .services__list--two .service:nth-of-type(2) {
  padding-top: 0 !important;
}
.services__list--two .service:last-child, .services__list--two .service:nth-last-child(2) {
  border: none !important;
  padding-bottom: 0 !important;
}
.services__list--two .service__link {
  font-size: 1.375rem;
}
@media (min-width: 48rem) {
  .services__list--two .service__link {
    font-size: 1.875rem;
  }
}

.service {
  list-style-type: none;
  max-width: 100%;
  padding: 2.5rem 0;
  width: 100%;
}

.service__link {
  display: inline-block;
  font-size: 3.75rem;
}
.service__link:hover .service__arrow {
  transform: scale(1.5) translateX(0.625rem);
}

/* COLOUR VARIATIONS */
.services.background--red .service {
  border-bottom: 0.0625rem solid #ffffff;
  padding: 1.875rem 0;
}
.services.background--red .service:nth-type(1), .services.background--red .service:nth-type(2) {
  border-top: none;
}
.services.background--red .service__arrow {
  fill: #ffffff;
}

.services.background--gradient .service {
  border-bottom: 0.0625rem solid #011627;
  padding: 1.25rem 0;
}
.services.background--gradient .service__arrow {
  fill: #011627;
}

.social-media {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1.25rem;
  justify-content: center;
  width: 100%;
}

.social-media__icon {
  box-shadow: none !important;
  display: flex;
  flex: 0 0 1.125rem;
}

.social-media__icon svg {
  display: block;
  height: 1.125rem;
  width: 1.125rem;
}

.social-media__icon svg path {
  transition: fill 0.3s ease;
}

.social-media__icon.email svg {
  display: block;
  height: 1.5rem;
  margin-top: 0.3125rem;
  width: 1.5rem;
}

.linkedin path {
  fill: #011627;
}

.linkedin:hover path,
.social-media__icon.email:hover,
.social-media__email:hover path {
  fill: #ffffff;
  color: #ffffff;
}

.split__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.split__image-caption {
  border-left: 0.125rem solid #011627;
  margin-top: 0.625rem;
  padding: 0 0.625rem;
}

@media (min-width: 48rem) {
  .split__child:first-of-type {
    padding-right: 2.5rem;
  }
}

@media (min-width: 48rem) {
  .split__child:last-of-type {
    padding-left: 2.5rem;
  }
}

.split__child--media {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 48rem) {
  .split__child--media {
    margin-bottom: 1.875rem;
  }
}

.split__child--media > .split__image,
.split__child--media > .swiper-split {
  flex: 1 1 auto;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

@media (min-width: 48rem) {
  .split--full-height-image .split--container {
    padding: 0;
  }
  .split--full-height-image .split__child:not(.split__child--media) {
    padding: 5rem 3.75rem;
  }
  .split--full-height-image .split__child--media {
    align-self: stretch;
    flex: 0 0 50vw;
    max-width: none;
    min-width: 0;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
  .split--full-height-image .split__child--media-left {
    margin-left: calc(50% - 50vw);
  }
  .split--full-height-image .split__child--media-right {
    margin-right: calc(50% - 50vw);
  }
  .split--full-height-image .split__image,
  .split--full-height-image .split__carousel-image,
  .split--full-height-image .swiper-split,
  .split--full-height-image .swiper-split .swiper-wrapper,
  .split--full-height-image .swiper-split .swiper-slide {
    height: 100%;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .split--full-height-image .split__image,
  .split--full-height-image .split__carousel-image {
    border-radius: 0;
    display: block;
    object-fit: cover;
  }
  .split--full-height-image .split__image-caption {
    background: #ffffff;
    bottom: 0;
    left: 1.25rem;
    position: absolute;
  }
}

@media (min-width: 48rem) {
  #main .split--full-height-image .split__child--media-left .split__image,
  #main .split--full-height-image .split__child--media-left .split__carousel-image {
    border-radius: 0 2.5rem 2.5rem 0;
  }
  #main .split--full-height-image .split__child--media-right .split__image,
  #main .split--full-height-image .split__child--media-right .split__carousel-image {
    border-radius: 2.5rem 0 0 2.5rem;
  }
}

@media (max-width: 48rem) {
  .container--has-right-image .split__child:first-of-type {
    order: 2;
  }
  .container--has-right-image .split__child:last-of-type {
    order: 1;
  }
}

@media (max-width: 48rem) {
  .container--both-have-images .split__child:first-of-type {
    margin-bottom: 0;
  }
  .container--both-have-images .split__child:last-of-type {
    margin-bottom: 2.5rem;
  }
}

.split__carousel-image {
  width: 100%;
  height: 100%;
  min-height: 18.75rem;
  object-fit: cover;
  display: block;
}

.swiper-split,
.swiper-split .swiper-wrapper,
.swiper-split .swiper-slide {
  height: 100%;
}

/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:$white;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.style-carousel .container {
  display: block !important;
}
.style-carousel .container .swiper-wrapper {
  padding-bottom: 8.125rem;
}
.style-carousel .container a.g-button {
  bottom: 0;
  position: absolute;
  right: 0;
  z-index: 100;
}

/* SCROLLBAR */
.swiper-scrollbar {
  background-color: #e0e0e0;
  border-radius: 0.25rem;
  bottom: 3rem !important;
  display: none;
  margin-left: 9.375rem;
  max-width: 12.5rem !important;
  top: auto !important;
  width: calc(100% - 6.875rem) !important;
}
@media (min-width: 48rem) {
  .swiper-scrollbar {
    max-width: 18.75rem !important;
  }
}

.swiper-scrollbar-drag {
  background-color: #000 !important;
  border-radius: 0.25rem;
  cursor: grab;
}

.swiper-scrollbar-drag:active {
  background-color: #555;
  cursor: grabbing;
}

.swiper-scrollbar-hidden {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.swiper:hover .swiper-scrollbar-hidden {
  opacity: 1;
}

/* ARROWS */
.swiper-button-prev,
.swiper-button-next {
  background: #ffffff;
  border-radius: 2.5rem;
  bottom: 1.875rem;
  height: 2.5rem !important;
  position: absolute !important;
  top: auto !important;
  width: 2.5rem !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  color: #000;
  font-size: 1.25rem !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #f0f0f0;
}

.swiper-button-prev {
  left: 0;
  right: auto;
}

.swiper-button-next {
  left: 3.75rem !important;
}

/* PAGINATION */
/*** COLOUR CONFIGURATION ***/
.background--gradient .swiper-button-prev,
.background--gradient .swiper-button-next {
  background: #011627;
}
.background--gradient .swiper-button-prev:after,
.background--gradient .swiper-button-next:after {
  color: #ffffff;
}
.background--gradient .swiper-button-prev:hover,
.background--gradient .swiper-button-next:hover {
  background: #011627;
}
.background--gradient .swiper-pagination-bullet {
  background: #ffffff;
  opcaity: 0.75;
}

.background--grey .swiper-pagination-bullet,
.background--white .swiper-pagination-bullet {
  background: #28abab;
  opcaity: 0.75;
}

.team {
  position: relative;
}

.g-card__image .g-card__image__team {
  height: 18.75rem;
  object-fit: cover;
  width: 100%;
}

.team__profile-image {
  height: 25rem;
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.team__thumbnail {
  height: 25rem;
}

.text .container {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.text ul {
  margin-left: 1.25rem;
}

.timeline-block {
  --timeline-progress: 0;
  --timeline-line-width: 0.25rem;
  --timeline-marker-offset: 2.25rem;
  --timeline-marker-size: 1.125rem;
  position: relative;
}

.timeline-block__container {
  position: relative;
}

.timeline-block__track {
  background: rgba(1, 22, 39, 0.14);
  border-radius: 62.4375rem;
  bottom: 5rem;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: calc(var(--timeline-marker-offset) + var(--timeline-marker-size) / 2);
  transform: translateX(-50%);
  width: var(--timeline-line-width);
  z-index: 0;
}

.timeline-block__track-fill {
  background: linear-gradient(to right, #48ffbf, #28abab);
  border-radius: inherit;
  display: block;
  height: calc(var(--timeline-progress) * 100%);
  width: 100%;
}

.timeline-block__items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.timeline-block__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--timeline-marker-size) minmax(0, 1fr);
  position: relative;
}

.timeline-block__marker {
  align-self: start;
  background: #ffffff;
  border: 0.25rem solid #011627;
  border-radius: 50%;
  box-shadow: 0 0 0 0.5rem #ffffff;
  grid-column: 2;
  height: var(--timeline-marker-size);
  margin-top: var(--timeline-marker-offset);
  width: var(--timeline-marker-size);
  z-index: 2;
}

.timeline-block__card {
  background: #ffffff;
  border: 0;
  border-radius: 2.5rem;
  box-shadow: 0 1.375rem 3.4375rem rgba(1, 22, 39, 0.18);
  overflow: hidden;
  position: relative;
}

.timeline-block__item--left .timeline-block__card {
  grid-column: 1;
  margin-right: 2.5rem;
}

.timeline-block__item--right .timeline-block__card {
  grid-column: 3;
  margin-left: 2.5rem;
}

.timeline-block__image {
  aspect-ratio: 16/10;
  border-radius: 0;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

#main .timeline-block__image {
  border-radius: 0;
}

.timeline-block__content {
  padding: 1.75rem;
}

.timeline-block__date {
  color: #011627;
  font-family: "Big Shoulders", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.75rem;
}

.timeline-block__description > *:first-child {
  margin-top: 0;
}

.timeline-block__description > *:last-child {
  margin-bottom: 0;
}

.background--red .timeline-block__track,
.background--gradient .timeline-block__track {
  background: rgba(255, 255, 255, 0.28);
}
.background--red .timeline-block__track-fill,
.background--gradient .timeline-block__track-fill {
  background: #ffffff;
}
.background--red .timeline-block__marker,
.background--gradient .timeline-block__marker {
  border-color: #ffffff;
  box-shadow: 0 0 0 0.5rem rgba(1, 22, 39, 0.08);
}

@media (max-width: 47.9375rem) {
  .timeline-block {
    --timeline-marker-offset: 1.75rem;
  }
  .timeline-block__track {
    bottom: 2.5rem;
    left: calc(1.875rem + var(--timeline-marker-size) / 2);
    z-index: 1;
  }
  .timeline-block__items {
    gap: 2rem;
    z-index: 2;
  }
  .timeline-block__item {
    grid-template-columns: var(--timeline-marker-size) minmax(0, 1fr);
  }
  .timeline-block__marker,
  .timeline-clock-marker {
    grid-column: 1;
    position: relative;
    z-index: 3;
  }
  .timeline-block__item--left .timeline-block__card,
  .timeline-block__item--right .timeline-block__card {
    grid-column: 2;
    margin-left: 1.5rem;
    margin-right: 0;
  }
  .timeline-block__content {
    padding: 1.375rem;
  }
  .timeline-block__date {
    font-size: 1.75rem;
  }
}
.venue-list {
  text-align: center;
}

.venue__address {
  text-align: center;
}

/*** MAP ***/
.map-directions {
  margin: 1.25rem auto;
  text-align: center;
}
