@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;
}

.g-heading-underline-animation {
  background-image: linear-gradient(#342631, #342631);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  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% 2px;
}

.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;
}

body {
  background: #fbfbfb;
}

.container {
  margin: 0 auto;
  overflow: visible !important;
  padding: 40px 30px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 80px 60px;
  }
}

/* WIDTH */
/*** CONTAINER WIDTH CONFIGURATION ***/
.container {
  max-width: 1400px;
}

.container--width-full {
  width: 100%;
}
@media (min-width: 768px) {
  .container--width-full {
    max-width: calc(100% - 80px);
    padding-left: 40px;
    padding-right: 40px;
  }
}

.container--width-wide {
  max-width: 1200px;
}

.container--width-standard {
  max-width: 1000px;
}

.container--width-narrow {
  max-width: 800px;
}

/* BOTTOM PADDING */
.container--bottom-padding-double {
  padding-bottom: 160px;
}

.container--bottom-padding-three-quarters {
  padding-bottom: 60px;
}

.container--bottom-padding-half {
  padding-bottom: 40px;
}

.container--bottom-padding-quarter {
  padding-bottom: 20px;
}

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

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

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

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

@media (min-width: 768px) {
  .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: 20px;*/
  position: relative;
  row-gap: 40px;
  /*width: calc(100% - 40px);*/
  width: 100%;
}
@media (min-width: 768px) {
  .container[class*=g-container-columns-] {
    gap: 40px;
    grid-template-columns: repeat(12, 1fr);
    /*padding: 20px;*/
    width: 100%;
  }
}

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

@media (min-width: 768px) {
  .container.g-container-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .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: 1400px) {
  .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: 40px;
  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% 2px;
  transition: background-size 0.4s ease;
}

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

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

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

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

.background--red {
  background: #bf1818;
}
.background--red a, .background--red p, .background--red li, .background--red h1, .background--red h2, .background--red h3, .background--red h4 {
  color: #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--white {
  background: #ffffff;
}
.background--white a, .background--white p, .background--white li, .background--white h1, .background--white h2, .background--white h3, .background--white h4 {
  color: #011627;
}

a,
h2 a,
p,
li,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Abril Fatface", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 75ch;
}

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

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

h1 {
  font-size: 36px;
  line-height: 40px;
  padding: 0;
}
@media (min-width: 768px) {
  h1 {
    font-size: 60px;
    line-height: 65px;
  }
}

.split h1 {
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 45px;
  padding: 0;
}
@media (min-width: 768px) {
  .split h1 {
    font-size: 45px;
    line-height: 50px;
  }
}

h2,
h2 a {
  font-size: 28px;
  line-height: 31px;
}
@media (min-width: 768px) {
  h2,
  h2 a {
    font-size: 45px;
    line-height: 49px;
  }
}

h3,
h3 span {
  font-size: 25px;
  line-height: 28px;
}
@media (min-width: 768px) {
  h3,
  h3 span {
    font-size: 35px;
    line-height: 45px;
  }
}

a {
  transition: color 0.3s ease;
}

.pre-heading {
  font-weight: 600;
  letter-spacing: 6px;
}

/*** COLOUR CONFIGURATION ***/
#main .background--white a:not(a.g-card):not(.page-numbers):not(td a) {
  color: #bf1818;
  text-decoration: underline;
}
#main .background--white a:not(a.g-card):not(.page-numbers):not(td a):hover {
  color: #011627;
}

#main .background--white a:not(a.g-card):hover {
  color: #011627;
}

.background--grey.text p a, .background--grey.site-footer a,
.background--white.text p a,
.background--white.site-footer a {
  box-shadow: inset 0 -0.1rem 0 0 #011627;
  text-decoration: none;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.background--grey.text p a:hover, .background--grey.site-footer a:hover,
.background--white.text p a:hover,
.background--white.site-footer a:hover {
  box-shadow: inset 0 -1.5rem 0 0 #bf1818;
  color: #011627;
}

.background--red.text p a, .background--red.site-footer a {
  box-shadow: inset 0 -0.1rem 0 0 #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.background--red.text p a:hover, .background--red.site-footer a:hover {
  box-shadow: inset 0 -1.5rem 0 0 #ffffff;
  color: #bf1818;
}

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

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

.header--container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
}
@media (min-width: 768px) {
  .header--container {
    padding: 20px 60px;
  }
}

/*.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: 130px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 150px;
  }
}

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

.background--grey .header__top-bar--container,
.background--white .header__top-bar--container {
  background: #bf1818;
}
.background--grey .header__top-bar--container p,
.background--white .header__top-bar--container p {
  color: #ffffff;
}

.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: 1px; /* or some small value */
}
.footer__columns--1 > div {
  flex: 1 1 100%;
}
.footer__columns--2 > div {
  flex: 1 1 100%;
}
@media (min-width: 600px) {
  .footer__columns--2 > div {
    flex: 1 1 calc(50% - 2rem);
  }
}
.footer__columns--3 > div {
  flex: 1 1 100%;
}
@media (min-width: 600px) {
  .footer__columns--3 > div {
    flex: 1 1 calc(50% - 2rem);
  }
}
@media (min-width: 768px) {
  .footer__columns--3 > div {
    flex: 1 1 calc(33.333333% - 2rem);
  }
}
.footer__columns--4 > div {
  flex: 1 1 100%;
}
@media (min-width: 600px) {
  .footer__columns--4 > div {
    flex: 1 1 calc(50% - 2rem);
  }
}
@media (min-width: 768px) {
  .footer__columns--4 > div {
    flex: 1 1 calc(25% - 2rem);
  }
}

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

footer li,
footer p,
footer a {
  margin-bottom: 10px;
}

footer img {
  margin-bottom: 10px;
  max-width: 150px;
  width: auto;
}

.footer__bottom {
  padding-top: 80px;
}

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

.menu-item {
  margin-bottom: 0;
  margin-left: 30px;
  position: relative;
}
@media (max-width: 1200px) {
  .menu-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-left: 0;
  }
}

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

.primary-menu a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .primary-menu a {
    color: #011627;
    display: block;
  }
}

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

.sub-menu {
  border-radius: 10px;
  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: 1200px) {
  .sub-menu {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: max-content;
    white-space: nowrap;
  }
}

.submenu-toggle {
  display: none;
}

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

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

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

/* HIGHLIGHT LAST ITEM */
@media (min-width: 1200px) {
  .primary-menu > li:last-of-type a {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    margin-top: -10px;
    padding: 10px 20px;
  }
}

@media (min-width: 1200px) {
  .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: 24px;
  justify-content: space-between;
  padding: 4px 0;
  width: 30px;
  z-index: 100;
}
@media (max-width: 1200px) {
  .burger {
    display: flex;
  }
}

.burger.open {
  position: absolute;
  right: 40px;
  top: 40px;
}

.burger span {
  border-radius: 2px;
  display: block;
  height: 2px;
  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(3px) translateX(4px);
}

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

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px) translateX(7px);
}

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

@media (max-width: 1200px) {
  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;
  }
  .main-navigation {
    background: #f0f0f0;
    height: 100vh;
    overflow: auto;
    position: relative;
    padding: 100px 60px 0 60px;
    width: 100%;
    z-index: 120123;
  }
}
@media (max-width: 1200px) {
  /* Add arrow to toggle button */
  .submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 8px;
  }
  .submenu-toggle::before {
    color: #011627;
    content: "next";
    font-family: swiper-icons;
    font-size: 20px;
    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: 10px 0 -10px 0;
  }
}
/* COLOUR VARIATIONS */
/*.header-style--on-hero {
	.burger span {
		background: $white;
	}

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

	@media (min-width: 1200px) {
		.primary-menu a {
			color: $white;
		}
	}
}*/
.header-style--on-hero .sub-menu a,
.background--red .sub-menu a {
  color: #bf1818;
}
.header-style--on-hero .sub-menu a:hover,
.background--red .sub-menu a:hover {
  color: #011627;
}

.background--grey .sub-menu a:hover {
  color: #bf1818;
}

@media (min-width: 1200px) {
  header:not(.header-style--on-hero) .primary-menu > li:last-of-type a {
    border-radius: 10px;
    margin-top: -10px;
    padding: 10px 20px;
  }
}

.background--red .burger span {
  background: #ffffff;
}
.background--red .burger.open span {
  background: #011627;
}
@media (min-width: 1200px) {
  .background--red .primary-menu > li:last-of-type a {
    background-color: #ffffff;
  }
  .background--red .primary-menu > li:last-of-type a a {
    color: #011627;
  }
  .background--red .primary-menu > li:last-of-type a:hover a {
    color: #bf1818;
  }
}
.background--red .current-menu-ancestor > a,
.background--red .current_page_item > a,
.background--red .primary-menu a:hover {
  color: #011627;
}
.background--red .sub-menu .current-menu-item a,
.background--red .sub-menu a:hover {
  color: #011627;
}

.background--grey .burger span,
.background--white .burger span {
  background: #011627;
}
@media (min-width: 1200px) {
  .background--grey .primary-menu > li:last-of-type a,
  .background--white .primary-menu > li:last-of-type a {
    background-color: #bf1818;
    border: 2px solid #bf1818;
    color: #ffffff;
    transition: background-color 0.3s ease 0.1s, color 0.3s ease 0.1s;
  }
  .background--grey .primary-menu > li:last-of-type a:hover,
  .background--white .primary-menu > li:last-of-type a:hover {
    background: #ffffff;
    color: #bf1818;
  }
}
.background--grey .current-menu-ancestor > a,
.background--grey .current_page_item > a,
.background--grey .primary-menu a:hover,
.background--white .current-menu-ancestor > a,
.background--white .current_page_item > a,
.background--white .primary-menu a:hover {
  color: #bf1818;
}
.background--grey .sub-menu .current-menu-item a,
.background--grey .sub-menu a:hover,
.background--white .sub-menu .current-menu-item a,
.background--white .sub-menu a:hover {
  color: #bf1818;
}

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

.buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

.g-button,
.button {
  background-color: #bf1818;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 20px;
  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: #bf1818;
}

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

/* COLOUR VARIATIONS */
.background--red .g-button {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #bf1818;
}
.background--red .g-button .button__text {
  color: #bf1818;
}
.background--red .g-button:after {
  background: #bf1818;
}
.background--red .g-button:hover {
  background: none;
  color: #ffffff;
}
.background--red .g-button:hover .button__text {
  color: #ffffff;
}
.background--red .button__text {
  color: #bf1818;
}
.background--red .g-card:hover .g-button {
  background: none;
  color: #bf1818;
}
.background--red .g-card:hover .g-button .button__text {
  color: #bf1818;
}

.background--grey .g-button,
.background--white .g-button {
  background: #bf1818;
  border: 2px solid #bf1818;
  color: #ffffff;
}
.background--grey .g-button .button__text,
.background--white .g-button .button__text {
  color: #ffffff;
}
.background--grey .g-button:after,
.background--white .g-button:after {
  background: #bf1818;
}
.background--grey .g-button:hover,
.background--white .g-button:hover {
  background: none;
  color: #bf1818;
}
.background--grey .g-button:hover .button__text,
.background--white .g-button:hover .button__text {
  color: #bf1818;
}
.background--grey .button__text,
.background--white .button__text {
  color: #bf1818;
}
.background--grey .g-card:hover .g-button,
.background--white .g-card:hover .g-button {
  background: none;
  color: #bf1818;
}
.background--grey .g-card:hover .g-button .button__text,
.background--white .g-card:hover .g-button .button__text {
  color: #bf1818;
}

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

#main img {
  border-radius: 40px;
}

.g-card {
  background: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  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__image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

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

.g-card__date {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 10px !important;
}

.g-card__text {
  /*margin-top: 20px;*/
  padding: 30px;
}

.g-card__heading-wrapper {
  margin-top: -10px;
}

.g-card__heading-wrapper + div,
.g-card__heading-wrapper + p {
  margin-top: 10px;
}

.g-pre-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.g-card__heading {
  background-image: linear-gradient(black 0 2px, transparent 2px 100%);
  background-size: 0% 2px;
  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: 30px;
  font-weight: 800;
  left: 30px;
  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: 20px;
  object-fit: cover;
  width: 100%;*/
}

.venues__list {
  display: grid;
  gap: 20px;
  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(-5px);
}

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

.g-card:hover .g-card__heading {
  background-size: 100% 2px;
}

/*** BORDER ***/
.g-card--image-padding {
  padding: 30px;
}
.g-card--image-padding .g-card__text {
  padding: 30px 0 0 0;
}

.g-card--image-no-padding .g-card__image,
.g-card--image-no-padding img {
  border-radius: 20px 20px 0 0 !important;
}
.g-card--image-no-padding .g-card__text {
  padding-top: 30px;
}

.venues .g-card--image-no-padding .g-card__text {
  padding-top: 30px;
}

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

/*** IMAGE CURVE ***/
.g-card--curve .g-card__image {
  border-radius: 22px 22px 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: 20px;
  object-fit: cover;
  width: 100%;
}

/*** SHADOW ***/
.g-card--shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0012);
}

.g-card:not(.google-reviews__item):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.0014);
}

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

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

/*** HORIZONTAL SETUP ***/
.g-card--horizontal .g-card__text {
  padding: 30px;
}

@media (min-width: 768px) {
  .g-card--horizontal {
    flex-direction: row;
    padding: 0;
  }
  .cards--horizontal.g-card {
    align-items: center;
  }
  .g-card--horizontal .g-card__image {
    border-radius: 30px 0 0 30px !important;
    height: 100%;
    width: 50%;
  }
  .g-card--horizontal .cards__image__img,
  .g-card--horizontal .g-card__image img {
    border-radius: 30px 0 0 30px !important;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .g-card--horizontal .cards__text {
    position: relative;
    width: calc(50% - 40px);
  }
  .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: 2px solid #bf1818;
}
.background--white .g-card:hover .g-button__text {
  color: #bf1818;
}

/* GREY */
.background--grey .g-card {
  background: #ffffff;
}
.background--grey .g-card:hover .g-card__button {
  border: 2px solid #bf1818;
}
.background--grey .g-card:hover .g-button__text {
  color: #bf1818;
}

/* 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: #bf1818;
  border: 2px solid #bf1818;
}
.background--red .g-card .g-button__text {
  color: #ffffff;
}
.background--red .g-card:hover .g-card__button {
  border: 2px solid #bf1818;
}
.background--red .g-card:hover .g-button__text {
  color: #bf1818;
}

/*** CARD TEXT COLOUR OVERRIDE ***/
.g-card--white p,
.g-card--white h2,
.g-card--white h3,
.g-card--white li,
.g-card--grey p,
.g-card--grey h2,
.g-card--grey h3,
.g-card--grey li {
  color: black;
}

.carousel {
  margin: 0 -400px;
}

.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__telephone-and-email {
  margin: 0 auto;
  max-width: 1000px;
}

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

@media (max-width: 768px) {
  .contact-details__telephone-number {
    margin-bottom: 40px;
  }
}

.contact-details__icon-wrapper {
  border-radius: 70px;
  height: 70px;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  width: 70px;
}

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

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

.contact-details__telephone-and-email > a {
  flex: 1 1 50%;
  padding: 0 20px;
  position: relative;
}

/*.contact-details__telephone-and-email > a:first-of-type::after {
	background: $white;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 2px;
}*/
.contact-details__telephone-and-email p {
  font-size: 25px;
}

/* COLOUR VARIAATIONS */
.background--grey .contact-details__icon-wrapper,
.background--white .contact-details__icon-wrapper {
  background: #bf1818;
}
.background--grey .contact-details__icon path,
.background--white .contact-details__icon path {
  fill: #ffffff;
}
.background--grey.contact-details a:hover .contact-details__icon-wrapper,
.background--white.contact-details a:hover .contact-details__icon-wrapper {
  background: #011627;
}
.background--grey.contact-details p,
.background--white.contact-details p {
  box-shadow: inset 0 -0.1rem 0 0 #bf1818;
  color: #bf1818;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.background--grey.contact-details a:hover p,
.background--white.contact-details a:hover p {
  box-shadow: inset 0 -1.5rem 0 0 #011627;
  color: #ffffff;
}

.background--red .contact-details__icon-wrapper {
  background: #ffffff;
}
.background--red .contact-details__icon path {
  fill: #bf1818;
}

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

.accordion__wrapper {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

.accordion h3 {
  margin-bottom: 0;
}

.accordion h3 span {
  font-size: 22px;
  line-height: 32px;
  padding: 0;
  max-width: 100%;
}

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

.accordion-trigger {
  background: none;
  border: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  outline: none;
  padding: 20px;
  position: relative;
  text-align: left;
  width: 100%;
}

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

.accordion > *:first-child .accordion-trigger,
.accordion > *:first-child {
  border-radius: 10px;
}

.accordion > *:last-child .accordion-trigger,
.accordion > *:last-child {
  border-radius: 10px;
}

.accordion__button {
  border-style: none;
}

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

.accordion-title {
  border: transparent 2px solid;
  border-radius: 5px;
  display: block;
  font-weight: 800;
  margin: 0;
  outline: none;
  padding: 10px;
  pointer-events: none;
}

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

.accordion-icon {
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 8px;
}

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

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

.accordion-panel {
  margin: 0;
  padding: 0 24px 16px 24px;
}

/* 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: 1px solid hsl(0, 0%, 42%);
  border-radius: 0.3em;
  display: block;
  font-size: inherit;
  padding: 8px;
}

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

.background--white .accordion__wrapper {
  border: 1px solid #bf1818;
}

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

input, textarea {
  border-radius: 0;
  padding: 20px 0;
}

input[type=submit] {
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 15px 20px;
  text-transform: uppercase;
  transition: 0.2s;
}
@media (min-width: 768px) {
  input[type=submit] {
    padding: 15px 20px;
  }
}

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: 768px) {
  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% - 20px);
  }
}

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

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

@media (min-width: 768px) {
  .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: 0px !important;
}

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

.nf-error-msg {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 10px;
  text-transform: uppercase;
}

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

/* COLOUR VARIATIONS */
.background--grey label,
.background--grey .ninja-forms-req-symbol,
.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 .ninja-forms-req-symbol,
.background--white input,
.background--white textarea,
.background--white ::placeholder {
  color: #011627;
}
.background--grey .nf-error-msg,
.background--white .nf-error-msg {
  color: #bf1818;
}
.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: 2px solid #011627;
}
.background--grey input[type=submit],
.background--white input[type=submit] {
  border: 2px solid #011627;
  color: #011627;
}
.background--grey input[type=submit]:hover,
.background--white input[type=submit]:hover {
  background: #011627;
  color: #ffffff;
}

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

#google-map {
  height: 500px;
  width: 100%;
}

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

.google-reviews__item {
  background: white;
  padding: 30px;
}

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

.google_reviews__stars {
  margin-bottom: 22px;
}

.google_reviews__star {
  color: #fabd05;
  font-size: 20px;
}

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

.google-reviews__logo {
  height: auto;
  margin-right: 10px;
  width: 30px !important;
}

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

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

#google-reviews-fixed:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
}

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

#google-reviews-fixed .google_reviews__stars {
  margin-bottom: -8px;
}

#google-reviews-fixed .google_reviews__star {
  font-size: 14px;
}

.google-reviews-fixed-list__close {
  align-items: center;
  background: #f0f0f0;
  border: 2px solid #011627;
  border-radius: 5px;
  color: #011627;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  position: sticky;
  top: 0;
  width: 30px;
}

#google-reviews-fixed p {
  font-size: 12px;
  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) 0px 4px 12px;
  display: none;
  flex-direction: column;
  justify-content: center;
  max-height: 80%;
  max-width: 400px;
  overflow-y: auto;
  padding: 20px;
  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: 1px solid #011627;
  margin-top: -50px;
}

.google-reviews-fixed-list__top__image {
  margin: 0 auto;
  width: 200px;
}

#google-reviews-fixed-list .review {
  border-bottom: 1px solid #011627;
  padding: 20px 0;
}

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

#google-reviews-fixed-list .review__content {
  margin: 10px 0;
}

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

#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: 768px) {
  .hero {
    min-height: 800px;
  }
}

.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: 768px) {
  .hero__text {
    width: 50%;
  }
}

.hero--light .hero__text {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 40px;
}

.hero h1 {
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 25px;
}

.hero p {
  font-size: 26px;
}

/* 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: 10px;
  grid-column: 1/-1;
  flex: 1;
  width: 100%;
}

.page-numbers {
  align-items: center;
  background: #bf1818;
  border: 2px solid #bf1818;
  border-radius: 30px;
  color: #ffffff !important;
  display: flex;
  flex-wrap: wrap;
  height: 40px;
  justify-content: center;
  width: 40px;
}

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

.popup-cpt {
  align-content: center;
  border-radius: 20px;
  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: 768px) {
  .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 */
  right: 20px;
  top: 20px;
}

.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: 20px;
  width: 50%;
  text-align: center;
}
@media (min-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 10px solid #bf1818;
  height: 80%;
  max-width: 90%;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .popup-cpt--image_top {
    height: 80%;
  }
}
@media (min-width: 768px) {
  .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: 768px) {
  .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: 30px;
}
.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: 10px;
}

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

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

/*** COLOUR VARIATIONS ***/
.popup-cpt .g-button-close {
  color: #bf1818;
}
.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: 40px;
  height: 40px;
  justify-content: center;
  position: absolute;
  width: 40px;
  z-index: 2;
}
.g-button-close:hover {
  background: none !important;
}

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

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

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

text {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  transition: 0.2s;
}

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

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

.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: 30px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, rgba(0,0,0,0.15), transparent);
} */
#location {
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  width: 100%;
}

/* Force scroll on mobile */
@media (max-width: 900px) {
  #location {
    min-width: 1000px;
  }
}
#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: 900px) {

  #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 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  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: #bf1818;
  border-radius: 5px;
  box-shadow: 0 1px 4px 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: 700px) {
  .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: 30px;
}

.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 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 10px;
  font-weight: 600;
  margin: 0 20px;
  padding: 20px 10px;
}

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: 5px;
  padding: 10px;
  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--grey select {
  border: 2px solid #011627;
  color: #011627;
}
.class-listings.background--white select option,
.class-listings.background--grey select option {
  color: #000;
  background: #ffffff;
}
.class-listings.background--white #location th,
.class-listings.background--white #location td,
.class-listings.background--grey #location th,
.class-listings.background--grey #location td {
  border-bottom: 2px solid #011627;
}
.class-listings.background--white #location th,
.class-listings.background--grey #location th {
  background: #f0f0f0;
  border-top: 2px solid #011627;
}
.class-listings.background--white #location tr,
.class-listings.background--grey #location tr {
  background: #f0f0f0;
}
.class-listings.background--white #location tr:nth-child(even),
.class-listings.background--grey #location tr:nth-child(even) {
  background: #ffffff;
}
.class-listings.background--white td:last-of-type a,
.class-listings.background--grey td:last-of-type a {
  background: #bf1818;
  border: 2px solid #bf1818;
  color: #ffffff !important;
}
.class-listings.background--white td:last-of-type a:hover,
.class-listings.background--grey td:last-of-type a:hover {
  color: #bf1818 !important;
}

.class-listings.background--red {
  color: white;
}
.class-listings.background--red select {
  border: 2px 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: 2px solid #ffffff;
}
.class-listings.background--red #location th {
  background: #bf1818;
  color: #ffffff;
}
.class-listings.background--red #location tr {
  background: #bf1818;
  color: #ffffff;
}
.class-listings.background--red #location tr:nth-child(even) {
  background: #bf1818;
  color: #ffffff;
}

.services__list--two {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .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: 22px;
}
@media (min-width: 768px) {
  .services__list--two .service__link {
    font-size: 30px;
  }
}

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

.service__link {
  display: inline-block;
  font-size: 60px;
}
.service__link:hover .service__arrow {
  transform: scale(1.5) translateX(10px);
}

/* COLOUR VARIATIONS */
.services.background--red .service {
  border-bottom: 1px solid #ffffff;
  padding: 30px 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--grey .service {
  border-bottom: 1px solid #011627;
  padding: 20px 0;
}
.services.background--grey .service__arrow {
  fill: #011627;
}

.social-media {
  display: flex;
  flex: 1;
  gap: 20px;
  width: 100%;
}

.social-media__icon {
  max-width: 45px;
  width: 33.333333%;
}

.social-media__icon a {
  box-shadow: none !important;
}

.social-media__icon svg {
  width: 100%;
  height: auto;
}

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

.social-media__icon:hover svg circle {
  fill: #011627;
}

.social-media__icon.instagram:hover svg path:nth-child(3),
.social-media__icon.instagram:hover svg path:nth-child(4) {
  fill: #011627;
}

.social-media__icon.youtube:hover svg path:nth-child(3) {
  fill: #011627;
}

@media (max-width: 768px) {
  .split__image {
    margin-bottom: 30px;
  }
}

.split__image-caption {
  font-weight: 600;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .split__child:first-of-type {
    padding-right: 40px;
  }
}

@media (min-width: 768px) {
  .split__child:last-of-type {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .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: 768px) {
  .container--both-have-images .split__child:first-of-type {
    margin-bottom: 0;
  }
  .container--both-have-images .split__child:last-of-type {
    margin-bottom: 40px;
  }
}

.split__carousel-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/**
 * 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: 130px;
}
.style-carousel .container a.g-button {
  bottom: 0;
  position: absolute;
  right: 0;
  z-index: 100;
}

/* SCROLLBAR */
.swiper-scrollbar {
  background-color: #e0e0e0;
  border-radius: 4px;
  bottom: 48px !important;
  display: none;
  margin-left: 150px;
  max-width: 200px !important;
  top: auto !important;
  width: calc(100% - 110px) !important;
}
@media (min-width: 768px) {
  .swiper-scrollbar {
    max-width: 300px !important;
  }
}

.swiper-scrollbar-drag {
  background-color: #000 !important;
  border-radius: 4px;
  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: 40px;
  bottom: 30px;
  height: 40px !important;
  position: absolute !important;
  top: auto !important;
  width: 40px !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  color: #000;
  font-size: 20px !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #f0f0f0;
}

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

.swiper-button-next {
  left: 60px !important;
}

/*** COLOUR CONFIGURATION ***/
.background--grey .swiper-button-prev,
.background--grey .swiper-button-next {
  background: #bf1818;
}
.background--grey .swiper-button-prev:after,
.background--grey .swiper-button-next:after {
  color: #ffffff;
}
.background--grey .swiper-button-prev:hover,
.background--grey .swiper-button-next:hover {
  background: #011627;
}

.team {
  position: relative;
}

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

.team__profile-image {
  height: 400px;
  margin-bottom: 20px;
  object-fit: cover;
}

.team__thumbnail {
  height: 400px;
}

.text ul {
  margin-left: 20px;
}
.text ul.two-columns {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}

.venue-list {
  text-align: center;
}

.venue__address {
  text-align: center;
}

/*** MAP ***/
.map_directions {
  margin: 20px auto 0 auto;
  text-align: center;
}