@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Nanum+Myeongjo:wght@400;700;800&display=swap");
:root {
  --colour-red: #A20E34!important;
  --colour-blue: #01243F!important;
  --colour-red-dark: #A20E34!important;
  --colour-black: #000000;
  --colour-white: #FFFFFF;
  --colour-grey: #E4E8EB!important;
  --colour-grey-light: #6C6C6C!important;
  --colour-grey-medium:#6C6C6C !important;
}

.grey-background {
  background-color: var(--colour-grey-light);
}

.blue-background {
  background-color: var(--colour-blue);
  color: var(--colour-white);
}
.blue-background * {
  color: var(--colour-white);
}

.red-background {
  background-color: var(--colour-red);
  color: var(--colour-white);
}
.red-background * {
  color: var(--colour-white);
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--light-grey);
}
.layout .main {
  flex: 1;
}

.page-section {
  padding: 4rem 0;
}
@media (min-width: 769px) {
  .page-section {
    padding: 6rem 0;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0rem;
}
@media (min-width: 769px) {
  .content-grid {
    padding: 0 3rem;
  }
}
.content-grid:before {
  display: block;
  content: "";
  min-width: 0;
}
.content-grid img.alignright {
  float: right;
  margin: 1em 0 1em 1em;
}
.content-grid img.alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}
.content-grid img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  body .col-md-1 {
    min-width: calc((100% - 2rem) / 12 * 1 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 1 - 2rem);
  }
}

.col-1 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-1 {
    min-width: calc((100% - 2rem) / 12 * 1 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 1 - 2rem);
  }
}

.col-md-1-offset {
  margin-left: calc(100% / 12 * 1);
}

@media (min-width: 769px) {
  .col-1-offset {
    margin-left: calc(100% / 12 * 1);
  }
}

@media (max-width: 768px) {
  body .col-md-2 {
    min-width: calc((100% - 2rem) / 12 * 2 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 2 - 2rem);
  }
}

.col-2 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-2 {
    min-width: calc((100% - 2rem) / 12 * 2 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 2 - 2rem);
  }
}

.col-md-2-offset {
  margin-left: calc(100% / 12 * 2);
}

@media (min-width: 769px) {
  .col-2-offset {
    margin-left: calc(100% / 12 * 2);
  }
}

@media (max-width: 768px) {
  body .col-md-3 {
    min-width: calc((100% - 2rem) / 12 * 3 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 3 - 2rem);
  }
}

.col-3 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-3 {
    min-width: calc((100% - 2rem) / 12 * 3 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 3 - 2rem);
  }
}

.col-md-3-offset {
  margin-left: calc(100% / 12 * 3);
}

@media (min-width: 769px) {
  .col-3-offset {
    margin-left: calc(100% / 12 * 3);
  }
}

@media (max-width: 768px) {
  body .col-md-4 {
    min-width: calc((100% - 2rem) / 12 * 4 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 4 - 2rem);
  }
}

.col-4 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-4 {
    min-width: calc((100% - 2rem) / 12 * 4 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 4 - 2rem);
  }
}

.col-md-4-offset {
  margin-left: calc(100% / 12 * 4);
}

@media (min-width: 769px) {
  .col-4-offset {
    margin-left: calc(100% / 12 * 4);
  }
}

@media (max-width: 768px) {
  body .col-md-5 {
    min-width: calc((100% - 2rem) / 12 * 5 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 5 - 2rem);
  }
}

.col-5 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-5 {
    min-width: calc((100% - 2rem) / 12 * 5 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 5 - 2rem);
  }
}

.col-md-5-offset {
  margin-left: calc(100% / 12 * 5);
}

@media (min-width: 769px) {
  .col-5-offset {
    margin-left: calc(100% / 12 * 5);
  }
}

@media (max-width: 768px) {
  body .col-md-6 {
    min-width: calc((100% - 2rem) / 12 * 6 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 6 - 2rem);
  }
}

.col-6 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-6 {
    min-width: calc((100% - 2rem) / 12 * 6 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 6 - 2rem);
  }
}

.col-md-6-offset {
  margin-left: calc(100% / 12 * 6);
}

@media (min-width: 769px) {
  .col-6-offset {
    margin-left: calc(100% / 12 * 6);
  }
}

@media (max-width: 768px) {
  body .col-md-7 {
    min-width: calc((100% - 2rem) / 12 * 7 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 7 - 2rem);
  }
}

.col-7 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-7 {
    min-width: calc((100% - 2rem) / 12 * 7 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 7 - 2rem);
  }
}

.col-md-7-offset {
  margin-left: calc(100% / 12 * 7);
}

@media (min-width: 769px) {
  .col-7-offset {
    margin-left: calc(100% / 12 * 7);
  }
}

@media (max-width: 768px) {
  body .col-md-8 {
    min-width: calc((100% - 2rem) / 12 * 8 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 8 - 2rem);
  }
}

.col-8 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-8 {
    min-width: calc((100% - 2rem) / 12 * 8 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 8 - 2rem);
  }
}

.col-md-8-offset {
  margin-left: calc(100% / 12 * 8);
}

@media (min-width: 769px) {
  .col-8-offset {
    margin-left: calc(100% / 12 * 8);
  }
}

@media (max-width: 768px) {
  body .col-md-9 {
    min-width: calc((100% - 2rem) / 12 * 9 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 9 - 2rem);
  }
}

.col-9 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-9 {
    min-width: calc((100% - 2rem) / 12 * 9 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 9 - 2rem);
  }
}

.col-md-9-offset {
  margin-left: calc(100% / 12 * 9);
}

@media (min-width: 769px) {
  .col-9-offset {
    margin-left: calc(100% / 12 * 9);
  }
}

@media (max-width: 768px) {
  body .col-md-10 {
    min-width: calc((100% - 2rem) / 12 * 10 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 10 - 2rem);
  }
}

.col-10 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-10 {
    min-width: calc((100% - 2rem) / 12 * 10 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 10 - 2rem);
  }
}

.col-md-10-offset {
  margin-left: calc(100% / 12 * 10);
}

@media (min-width: 769px) {
  .col-10-offset {
    margin-left: calc(100% / 12 * 10);
  }
}

@media (max-width: 768px) {
  body .col-md-11 {
    min-width: calc((100% - 2rem) / 12 * 11 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 11 - 2rem);
  }
}

.col-11 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-11 {
    min-width: calc((100% - 2rem) / 12 * 11 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 11 - 2rem);
  }
}

.col-md-11-offset {
  margin-left: calc(100% / 12 * 11);
}

@media (min-width: 769px) {
  .col-11-offset {
    margin-left: calc(100% / 12 * 11);
  }
}

@media (max-width: 768px) {
  body .col-md-12 {
    min-width: calc((100% - 2rem) / 12 * 12 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 12 - 2rem);
  }
}

.col-12 {
  position: relative;
  min-width: calc(100% - 2rem * 2);
  flex-basis: calc(100% - 2rem * 2);
}
@media (min-width: 769px) {
  .col-12 {
    min-width: calc((100% - 2rem) / 12 * 12 - 2rem);
    flex-basis: calc((100% - 2rem) / 12 * 12 - 2rem);
  }
}

.col-md-12-offset {
  margin-left: calc(100% / 12 * 12);
}

@media (min-width: 769px) {
  .col-12-offset {
    margin-left: calc(100% / 12 * 12);
  }
}

/* Elements */
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--colour-white);
  color: var(--colour-black);
}

/*

font-family: 'Montserrat', sans-serif;
font-family: 'Nanum Myeongjo', serif;

*/
body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h5 {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 600;
}

h1,
.h1 {
  font-size: 4rem;
}
@media (min-width: 769px) {
  h1,
  .h1 {
    font-size: 5.625rem;
  }
}

h2,
.h2 {
  font-size: 2.375rem;
  color: var(--colour-blue);
}
@media (min-width: 769px) {
  h2,
  .h2 {
    font-size: 3.25rem;
  }
}

h3,
.h3 {
  font-size: 1.5rem;
  color: var(--colour-blue);
}
@media (min-width: 769px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.5rem;
}

a {
  color: var(--colour-red);
}

.text-content ul {
  list-style: none;
  padding-left: 0;
}
.text-content ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}
.text-content ul li:before {
  content: "";
  background-image: url("/app/themes/winchester/assets/images/elements/red-square.svg");
  background-repeat: no-repeat;
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

blockquote {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: 1.3125rem;
  letter-spacing: 0.020625rem;
  padding-left: 1.75rem;
  border-left: 3px solid var(--colour-red);
  color: var(--colour-blue);
  margin: 3rem 0;
  display: block;
}

footer {
  font-size: 1rem;
}

.no-scroll-bar,
side-scrolling-section {
  scrollbar-color: transparent transparent;
}
.no-scroll-bar::-webkit-scrollbar,
side-scrolling-section::-webkit-scrollbar {
  height: 1px;
  background-color: transparent;
}
.no-scroll-bar::-webkit-scrollbar, .no-scroll-bar::-webkit-scrollbar-track, .no-scroll-bar::-webkit-scrollbar-thumb, .no-scroll-bar::-webkit-scrollbar-track-piece, .no-scroll-bar::scrollbar-track, .no-scroll-bar::scrollbar-thumb, .no-scroll-bar::-moz-scrollbar,
side-scrolling-section::-webkit-scrollbar,
side-scrolling-section::-webkit-scrollbar-track,
side-scrolling-section::-webkit-scrollbar-thumb,
side-scrolling-section::-webkit-scrollbar-track-piece,
side-scrolling-section::scrollbar-track,
side-scrolling-section::scrollbar-thumb,
side-scrolling-section::-moz-scrollbar {
  width: 100px;
  opacity: 0;
  display: none;
  height: 0;
  background: transparent;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  .booking-form-active .cky-revisit-bottom-left {
    bottom: 6rem;
  }
}

header.main-header {
  position: fixed;
  padding-top: 20px;
  top: 0;
  width: 100%;
  width: 100%;
}
header.main-header .container {
  max-width: 1600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
header.main-header .container .header-logo .small-logo {
  display: block;
  max-width: 100%;
  max-height: 55px;
  width: auto;
  height: auto;
}
@media (min-width: 992px) {
  header.main-header .container .header-logo .small-logo {
    display: none;
  }
}
header.main-header .container .header-logo img {
  max-width: 100%;
  width: auto;
  height: auto;
}
header.main-header .container .header-logo .large-logo {
  display: none;
  max-width: 250px;
}
@media (min-width: 992px) {
  header.main-header .container .header-logo .large-logo {
    display: block;
  }
}

header.main-header.logo-container {
  position: absolute;
  z-index: 66666;
}
@media (min-width: 769px) {
  header.main-header.logo-container {
    min-height: 6.25rem;
  }
}

header.main-header.logo-container {
  top: 0px;
}
@media (min-width: 769px) {
  header.main-header.logo-container {
    top: 0px;
  }
}

.admin-bar .main-menu {
  position: static !important;
}

.main-footer {
  background-color: var(--colour-red);
  color: var(--colour-white);
}
.main-footer .footer-logo img {
  display: block;
  max-width: 200px;
  height: auto;
  margin: auto;
}
.main-footer__map {
  display: none;
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .main-footer__map {
    display: block;
  }
}
.main-footer__top {
  padding: 4.375rem 0 0;
}
.main-footer__top-inner {
  border-bottom: 1px solid var(--colour-white);
  display: flex;
  padding-bottom: 1.75rem;
  flex-flow: column;
  gap: 5rem;
}
@media (min-width: 769px) {
  .main-footer__top-inner {
    flex-flow: row;
    gap: 2rem;
  }
}
.main-footer__top-inner .logo {
  margin: auto;
  width: 80%;
  height: auto;
}
.main-footer__top-inner .logo img {
  width: 100%;
  height: auto;
  max-width: 20rem;
}
@media (min-width: 769px) {
  .main-footer__top-inner .logo img {
    max-width: 11.5rem;
  }
}
@media (min-width: 769px) {
  .main-footer__top-inner .logo {
    margin: 0;
  }
}
.main-footer__social-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
}
@media (min-width: 769px) {
  .main-footer__social-menu {
    justify-content: flex-end;
  }
}
.main-footer__social-menu a {
  display: block;
}
.main-footer__social-menu a img {
  width: 2rem;
  height: 2rem;
}
.main-footer__bottom {
  background-color: var(--colour-red-dark);
  padding-bottom: 5rem;
}
.main-footer__bottom-inner {
  display: flex;
  align-items: center;
  gap: 0rem;
  padding: 2rem;
  flex-flow: column;
}
@media (min-width: 769px) {
  .main-footer__bottom-inner {
    flex-flow: row;
    gap: 4rem;
    padding: 0;
  }
}
.main-footer__bottom-inner .logo {
  width: 60%;
}
@media (min-width: 769px) {
  .main-footer__bottom-inner .logo {
    width: auto;
  }
}
.main-footer__bottom-inner .logo img {
  max-width: 12.5rem;
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .main-footer__bottom-inner .logo img {
    max-width: 6.875rem;
  }
}
.main-footer__bottom-inner nav {
  gap: 4rem;
  margin-top: 0.5rem;
}
.main-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  padding: 2rem 0 2.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .main-footer nav ul {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.main-footer nav ul li {
  display: block;
}
.main-footer nav ul li a {
  color: inherit;
  text-decoration: none;
}

.main-menu-wrapper {
  position: static !important;
  margin-right: -2rem;
  margin-top: -20px !important;
}
@media (min-width: 992px) {
  .main-menu-wrapper {
    margin: 0 !important;
  }
}

.main-menu {
  position: relative;
  color: var(--colour-white);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}
@media (min-width: 769px) {
  .main-menu {
    gap: 2rem;
    padding: 2rem;
    background-color: var(--colour-red);
  }
  .main-menu__click-wrapper {
    display: flex;
    gap: 2rem;
    position: relative;
    cursor: pointer;
    z-index: 20;
  }
}
.main-menu__menu {
  height: 0;
  width: 0;
  position: absolute;
}
.main-menu__label {
  display: none;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1875rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
@media (min-width: 769px) {
  .main-menu__label {
    display: block;
  }
}
.main-menu .hamburger-wrapper {
  display: block;
  position: relative;
  z-index: 10;
  padding: 1.5rem;
  background-color: var(--colour-red);
}
@media (min-width: 769px) {
  .main-menu .hamburger-wrapper {
    padding: 0;
  }
}
.main-menu .hamburger {
  height: 1.25rem;
  width: 2rem;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.main-menu .hamburger__line {
  background-color: var(--colour-white);
  height: 0.1875rem;
  width: 100%;
  position: absolute;
  transition: 0.4s;
  left: 0%;
  transform-origin: center;
}
.main-menu .hamburger__line:nth-child(1) {
  top: 0;
}
.main-menu .hamburger__line:nth-child(2) {
  top: 50%;
  transform: translate(0%, -50%);
}
.main-menu .hamburger__line:nth-child(3) {
  top: 100%;
  transform: translate(0%, -100%);
}
.main-menu .menu-primary-menu-container__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
.main-menu .menu-primary-menu-container {
  display: block;
  align-items: center;
  gap: 2rem;
  margin: 4rem 2rem;
  position: relative;
  width: 100%;
  max-width: 63.25rem;
}
@media (min-width: 769px) {
  .main-menu .menu-primary-menu-container {
    margin: 10rem 4rem;
  }
}
.main-menu nav {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: all 0.5s;
  left: 0vw;
  top: 0px;
  width: 100vw;
  height: 100vh;
  transform: scale(1.1);
  background-color: var(--colour-red);
  z-index: 9;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 769px) {
  .main-menu nav {
    transform: scale(0.8);
  }
}
.main-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu nav .sub-menu {
  z-index: 5;
}
.main-menu nav .sub-menu .sub-menu {
  z-index: 10;
}
.main-menu nav .menu-item {
  color: var(--colour-white);
  font-family: "Nanum Myeongjo", serif;
  font-size: 2.1875rem;
  font-weight: 600;
  border-bottom: 2px solid var(--colour-white);
  display: block;
  padding: 1rem 0rem;
  width: 100%;
  opacity: 0.5;
}
@media (min-width: 769px) {
  .main-menu nav .menu-item {
    width: calc(33vw - 4rem);
    max-width: 19rem;
  }
}
.main-menu nav .menu-item:hover {
  opacity: 1;
  transition: 0.4s;
}
.main-menu nav .menu-item a {
  color: inherit;
  text-decoration: none;
}
.main-menu nav .menu-item.menu-item-has-children > a {
  display: flex;
  display: block;
  position: relative;
  padding-right: 3rem;
}
.main-menu nav .menu-item.menu-item-has-children > a:after {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  content: "";
  width: 1rem;
  height: 2rem;
  background-image: url("/app/themes/winchester/assets/images/elements/chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.main-menu nav .menu-item .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}
@media (min-width: 769px) {
  .main-menu nav .menu-item .sub-menu {
    left: min(33vw - 1rem, 22rem);
  }
}
.main-menu nav .menu-item .sub-menu .menu-item {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3125rem;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.main-menu nav .menu-item.open {
  opacity: 1;
  pointer-events: all;
}
.main-menu nav .menu-item.open > .sub-menu {
  pointer-events: all;
  background-color: var(--colour-red);
}
.main-menu nav .menu-item.open > .sub-menu > .menu-item {
  transition: 0.4s;
  opacity: 0.5;
  pointer-events: all;
}
.main-menu nav .menu-item.open > .sub-menu > .menu-item:hover, .main-menu nav .menu-item.open > .sub-menu > .menu-item.open, .main-menu nav .menu-item.open > .sub-menu > .menu-item.level-2 {
  opacity: 1;
}
.main-menu.open {
  background-color: var(--colour-red);
}
.main-menu.open .main-menu__menu {
  display: block;
}
.main-menu.open nav {
  display: block;
  pointer-events: all;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  transform: scale(1);
  transition: all 0.5s;
}
.main-menu.open .hamburger {
  cursor: pointer;
  margin-top: -2px;
}
.main-menu.open .hamburger__line:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.main-menu.open .hamburger__line:nth-child(2) {
  top: 50%;
  transform: translate(0%, -50%);
  width: 0;
  left: 50%;
}
.main-menu.open .hamburger__line:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--standard-gap);
  padding: 1rem;
  height: 100%;
}
@media (min-width: 769px) {
  site-search {
    padding: 0;
  }
}
site-search .search-icon {
  background-repeat: no-repeat;
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  background-size: contain;
  margin: 0 0.5rem;
  cursor: pointer;
}
site-search .search-icon svg {
  height: 1.4375rem;
  width: 1.4375rem;
}
@media (min-width: 769px) {
  site-search .search-icon {
    margin: 0 1rem;
  }
}
@media (min-width: 769px) {
  site-search:after {
    display: block;
    content: "";
    height: 1.5rem;
    width: 2px;
    background-color: var(--colour-white);
  }
}
site-search .search-wrapper {
  max-width: 0px;
  width: 16rem;
}
site-search form input[type=submit] {
  display: none;
}
site-search form input {
  border: 1px solid var(--colour-white);
  background-color: transparent;
  background-image: none !important;
  font-family: inherit;
  color: var(--colour-white);
  margin: 0;
  padding: 0.5rem 1rem;
  width: 100%;
  opacity: 0;
  outline: none;
  pointer-events: none;
}
site-search form input::placeholder {
  color: var(--colour-white);
  background-image: none !important;
}
site-search form input[type=search]::-webkit-search-decoration,
site-search form input[type=search]::-webkit-search-cancel-button,
site-search form input[type=search]::-webkit-search-results-button,
site-search form input[type=search]::-webkit-search-results-decoration {
  display: none;
}
site-search.open {
  background-color: var(--colour-red);
}
site-search.open .search-icon {
  color: var(--colour-white) !important;
}
site-search.open .search-wrapper {
  max-width: calc(100vw - 11rem);
}
@media (min-width: 769px) {
  site-search.open .search-wrapper {
    max-width: 12.5rem;
  }
}
site-search.open .search-wrapper input {
  opacity: 1;
  pointer-events: all;
}

.search-results-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.search-results-list ul li .search-title {
  font-size: 3rem;
  color: var(--colour-blue);
}
.search-results-list ul li a {
  text-decoration: none;
}

.button {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  color: var(--colour-blue);
  border: 2px solid var(--colour-blue);
  text-decoration: none;
  display: inline-block;
  padding: 1.25rem 3rem;
  text-align: center;
}
.button:hover {
  background-color: var(--colour-red);
  border-color: var(--colour-red);
  color: var(--colour-white);
}
.button--white {
  border-color: var(--colour-white);
  color: var(--colour-white);
}
.button--white:hover {
  background-color: var(--colour-white);
  border-color: var(--colour-white);
  color: var(--colour-red);
}

.close-button {
  position: relative;
  padding-right: 3rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.close-button:after, .close-button:before {
  position: absolute;
  display: block;
  top: calc(50% - 2px);
  right: 0rem;
  content: "";
  height: 3px;
  width: 2rem;
  background-color: var(--colour-white);
}
.close-button:after {
  transform: rotate(45deg);
}
.close-button:before {
  transform: rotate(-45deg);
}

.square-graphic {
  background-image: url("/app/themes/winchester/assets/images/elements/red-squares.svg");
  width: 3.4375rem;
  height: 1.625rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.square-graphic--white {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
}

.grey-square-graphic {
  background-image: url("/app/themes/winchester/assets/images/elements/grey-square.svg");
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
}

.indicators {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.indicators .indicator {
  cursor: pointer;
  background-image: url("/app/themes/winchester/assets/images/elements/grey-square.svg");
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
}
.indicators .indicator:hover {
  background-image: url("/app/themes/winchester/assets/images/elements/red-square.svg");
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
}
.indicators .indicator.active {
  background-image: url("/app/themes/winchester/assets/images/elements/blue-square-double.svg");
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.indicators--white .indicator {
  background-image: url("/app/themes/winchester/assets/images/elements/white-square.svg");
}
.indicators--white .indicator.active {
  background-image: url("/app/themes/winchester/assets/images/elements/white-square-double.svg");
}

.next-button {
  height: 4.875rem;
  width: 4.875rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  font-size: 0;
  color: transparent;
  border: none;
  cursor: pointer;
  pointer-events: all;
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-right-blue.svg");
}
.next-button:hover {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-right-red.svg");
}
.next-button--white {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-right-white-outline.svg");
}
.next-button--white:hover {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-right-white.svg");
}
.next-button.disabled {
  pointer-events: none;
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-right-grey.svg");
}

.previous-button {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-left-blue.svg");
  height: 4.875rem;
  width: 4.875rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  font-size: 0;
  color: transparent;
  border: none;
  cursor: pointer;
  pointer-events: all;
}
.previous-button:hover {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-left-red.svg");
}
.previous-button--white {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-left-white-outline.svg");
}
.previous-button--white:hover {
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-left-white.svg");
}
.previous-button.disabled {
  pointer-events: none;
  background-image: url("/app/themes/winchester/assets/images/elements/arrow-left-grey.svg");
}

side-scrolling-section .scrolling-section {
  display: flex;
  overflow-x: scroll;
  padding: 2rem;
}
@media (min-width: 769px) {
  side-scrolling-section .scrolling-section {
    padding: 0 3rem;
  }
}
side-scrolling-section .scrolling-section:before, side-scrolling-section .scrolling-section:after {
  display: block;
  content: "";
}
@media (min-width: 769px) {
  side-scrolling-section .scrolling-section:before, side-scrolling-section .scrolling-section:after {
    min-width: 2rem;
  }
}
@media (min-width: 1600px) {
  side-scrolling-section .scrolling-section:before, side-scrolling-section .scrolling-section:after {
    min-width: calc((100vw - 1600px) / 2 + 2rem);
  }
}
side-scrolling-section .side-scrolling-section__controls {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-flow: column-reverse;
}
@media (min-width: 769px) {
  side-scrolling-section .side-scrolling-section__controls {
    gap: 2rem;
    margin-top: 4rem;
    flex-direction: row;
  }
}
side-scrolling-section .side-scrolling-section__arrows {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 100%;
  justify-content: space-between;
}
side-scrolling-section .side-scrolling-section__arrows::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: calc(100% - 13rem);
  height: 2px;
  background-color: var(--colour-grey);
}
@media (min-width: 769px) {
  side-scrolling-section .side-scrolling-section__arrows {
    min-width: auto;
  }
}
side-scrolling-section .side-scrolling-section__divder {
  flex: 1;
  height: 2px;
  background-color: var(--colour-grey);
}

.post__filter {
  display: flex;
  gap: 4.375rem;
  margin-bottom: 5.375rem;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .post__filter {
    flex-direction: column;
    gap: 0rem;
    border: 2px solid var(--colour-grey);
    padding: 1rem;
    background-color: var(--colour-white);
    position: relative;
    position: absolute;
    z-index: 2;
    width: 100%;
    transition: 0.5s;
  }
  .post__filter:after, .post__filter:before {
    display: block;
    content: "";
    height: 2px;
    width: 0.75rem;
    background-color: var(--colour-grey);
    position: absolute;
    right: 1rem;
    top: 1.85rem;
    transition: 0.5s;
  }
  .post__filter:after {
    transform: rotate(-45deg);
  }
  .post__filter:before {
    transform: rotate(45deg);
    right: 1.5rem;
  }
  .post__filter .post__filter-item {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s;
  }
  .post__filter .post__filter-item.active {
    max-height: 100px;
    opacity: 1;
  }
  .post__filter.open {
    gap: 1.5rem;
  }
  .post__filter.open .post__filter-item {
    max-height: 3rem;
    opacity: 1;
    transition: max-height 0.3s opacity 0.3s 0.3s;
    pointer-events: all;
  }
  .post__filter.open:after {
    transform: rotate(45deg);
  }
  .post__filter.open:before {
    transform: rotate(-45deg);
  }
}

.post__filter-item {
  cursor: pointer;
  color: var(--colour-grey);
}
.post__filter-item:hover {
  color: var(--colour-blue);
}
.post__filter-item.active {
  color: var(--colour-blue);
  font-weight: 600;
}

.post__filter--wrapper {
  position: relative;
  min-height: 6rem;
}
@media (min-width: 769px) {
  .post__filter--wrapper {
    min-height: 0;
  }
}

.article-card {
  position: relative;
  text-decoration: none;
  min-width: calc(100vw - 2rem * 2);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background-color: var(--colour-white);
}
@media (min-width: 769px) {
  .article-card {
    min-width: min(38vw, 1600px * 0.4);
    flex-basis: 40%;
    scroll-snap-align: none;
    scroll-snap-stop: none;
  }
}
.article-card a {
  text-decoration: none;
}
.article-card__image {
  position: relative;
  transform-style: preserve-3d;
  perspective: 20rem;
  overflow: hidden;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease-in-out;
}
.article-card__image img:hover {
  border: 1px solid #f00;
  transform: translate3d(0, 0, 1.5rem);
}
.article-card__image::after {
  content: "";
  display: block;
  padding-bottom: 54.25%;
}
.article-card__categories {
  display: flex;
  gap: 0.75rem;
  flex-flow: wrap;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 1.75rem;
}
.article-card__categories a {
  display: block;
  color: var(--colour-grey);
  white-space: nowrap;
}
.article-card__content {
  padding: 2rem 1.5rem;
}
@media (min-width: 769px) {
  .article-card__content {
    padding: 3.75rem;
  }
}
.article-card__content h3 {
  margin: 0.8rem 0 0;
}

.article-cards {
  display: flex;
  gap: 2rem;
  overflow-x: visible;
  padding-right: 2rem;
  scroll-snap-type: x mandatory;
}
.article-cards:before, .article-cards::after {
  display: none !important;
}
@media (min-width: 769px) {
  .article-cards {
    padding-right: 1rem !important;
  }
  .article-cards:before, .article-cards::after {
    display: block !important;
  }
}
.article-cards--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  overflow-x: auto;
  gap: 1rem;
  padding: 0 !important;
}
@media (min-width: 769px) {
  .article-cards--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.article-cards--grid .article-card {
  min-width: auto;
  border: 1px solid var(--colour-grey);
}
@media (min-width: 769px) {
  .article-cards--grid .article-card {
    margin-bottom: 5rem;
  }
}
.article-cards--grid div:nth-child(3n+1):nth-last-child(-n+3).article-card,
.article-cards--grid div:nth-child(3n+1):nth-last-child(-n+3) ~ div.article-card {
  margin-bottom: 0;
}
.article-cards.loading {
  opacity: 0.5;
  pointer-events: none;
  filter: saturate(0.5);
}

.article-cards__parent {
  background-image: url("/app/themes/winchester/assets/images/article-card-background.webp");
  background-size: cover;
}
.article-cards__parent h2 {
  margin: 0.75rem 0 4.5rem;
}
.article-cards__parent .indicators {
  display: none;
}
@media (min-width: 769px) {
  .article-cards__parent .indicators {
    display: flex;
  }
}

.overlay {
  position: fixed;
  z-index: 666666;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: max-content;
  transform: scale(1.1);
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
@media (min-width: 769px) {
  .overlay {
    padding: 4rem;
  }
}
.overlay.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
.overlay__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 50rem;
  max-height: 100%;
  overflow: auto;
  padding: 1rem;
  background-color: var(--colour-red);
  color: var(--colour-white);
}
.overlay__inner *:not(input):not(textarea):not(button):not(select) {
  color: var(--colour-white);
  text-align: center;
}
@media (min-width: 769px) {
  .overlay__inner {
    padding: 2rem;
  }
}
.overlay__inner.submitted {
  /* display: grid;
   grid-template-rows: 1fr;
   grid-template-columns: 1fr;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin-top:20vh;*/
}
.overlay__inner.submitted .gform_confirmation_wrapper {
  margin-top: 20vh;
}
.overlay .close-button {
  font-size: 0;
  color: transparent;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
}
.overlay__background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 36, 63, 0.5);
}

.booking-overlay__booking-button button {
  position: fixed;
  background-color: var(--colour-blue);
  border: 2px solid var(--colour-white);
  z-index: 999;
  cursor: pointer;
  color: var(--colour-white);
  padding: 1.85rem 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  bottom: 0;
  width: 100%;
  right: 0;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .booking-overlay__booking-button button {
    bottom: auto;
    left: auto;
    top: 50%;
    transform: translate(30%, 0) rotate(-90deg);
    width: auto;
  }
}
.booking-overlay .gform_validation_errors {
  margin-top: 3rem !important;
}

.gform_wrapper {
  border: 0px solid #f00;
}
.gform_wrapper .gform_title:before {
  display: block;
  content: "";
  margin: 2rem auto;
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
  width: 3.4375rem;
  height: 1.625rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.gform_wrapper .gform_description {
  max-width: 50rem;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.gform_wrapper .gform_heading {
  margin: 3rem 0;
}
.gform_wrapper input,
.gform_wrapper textarea {
  border: 2px solid var(--colour-white);
  background-color: transparent;
  background-image: none !important;
  font-family: inherit;
  color: var(--colour-white);
  margin: 0;
  padding: 1rem 1rem !important;
  font-size: inherit !important;
  width: 100%;
  outline: none;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: var(--colour-white);
  opacity: 0.5;
  background-image: none !important;
}
@media (min-width: 769px) {
  .gform_wrapper input,
  .gform_wrapper textarea {
    padding: 1.5rem 1.5rem !important;
  }
}
.gform_wrapper input[type=submit],
.gform_wrapper textarea[type=submit] {
  width: auto;
  margin-left: auto;
  font-size: 1rem !important;
  background-color: var(--colour-white);
  color: var(--colour-red);
  width: 100%;
}
@media (min-width: 769px) {
  .gform_wrapper input[type=submit],
  .gform_wrapper textarea[type=submit] {
    width: auto;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
.gform_wrapper.gravity-theme .gform_fields {
  gap: 2rem;
}
@media (min-width: 769px) {
  .gform_wrapper.gravity-theme .gfield:not(.gfield--type-textarea) {
    grid-column: span 6 !important;
  }
}
@media (min-width: 769px) {
  .gform_wrapper.gravity-theme .gfield.full-width-field,
  .gform_wrapper.gravity-theme .gf_name_has_2 {
    grid-column: span 12 !important;
  }
}
.gform_wrapper .gfield--type-checkbox {
  text-align: left;
}
.gform_wrapper .gfield--type-checkbox .gchoice label {
  display: flex !important;
  gap: 10px;
  align-items: baseline;
  font-size: 1rem !important;
  line-height: 1;
  margin-bottom: 8px !important;
  cursor: pointer;
}
.gform_wrapper .gfield--type-checkbox .gchoice label:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid white;
  display: inline-block;
  position: relative;
  top: 2px;
  box-sizing: border-box;
}
.gform_wrapper .gfield--type-checkbox .gchoice input {
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.gform_wrapper .gfield--type-checkbox .gchoice input:checked ~ label:before {
  outline: 4px solid #a20e34;
  outline-offset: -5px;
  background: white;
}
.gform_wrapper .gform_fields .gfield.gfield--width-full {
  grid-column: span 12 !important;
}

/* ACF Components */
.page-hero {
  min-height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Special Cases */
}
.page-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.page-hero__background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__background video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__background::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--colour-blue);
  opacity: 0.3;
  z-index: 1;
}
.page-hero__background:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.page-hero__background__image--landscape {
  display: none;
}
@media (min-width: 769px) {
  .page-hero__background__image--landscape {
    display: block;
  }
}
.page-hero__background__image--portrait {
  display: block;
}
@media (min-width: 769px) {
  .page-hero__background__image--portrait {
    display: none;
  }
}
.page-hero__content {
  color: var(--colour-white);
  text-align: center;
  min-width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.page-hero__content h1 {
  margin-top: 2rem;
}
.page-hero__news-categories {
  margin-top: -2rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--colour-white);
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.page-hero__news-categories a {
  display: block;
  color: var(--colour-white);
  text-decoration: none;
}
.page-hero.blue-background .page-hero__background:after {
  background-image: linear-gradient(180deg, rgba(1, 36, 63, 0) 0%, #01243f 100%);
}
.page-hero__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.375rem;
  margin-top: 1rem;
  margin-bottom: 2.2rem;
}
.page-hero__icons__left {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares-left.svg");
  background-size: contain;
  width: 55px;
  height: 27px;
  background-repeat: no-repeat;
}
.page-hero__icons__middle {
  background-image: url("/app/themes/winchester/assets/images/elements/swanbourne-shield.svg") !important;
  background-size: contain;
  width: 92px !important;
  height: 85px !important;
  background-repeat: no-repeat;
  background-position: center;
}
.page-hero__icons__right {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares-right.svg");
  background-size: contain;
  width: 55px;
  height: 27px;
  background-repeat: no-repeat;
}
.page-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.page-hero__ctas a {
  display: block;
}
.page-hero--explore-text-graphic:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/app/themes/winchester/assets/images/elements/explore-graphic.svg");
  background-repeat: no-repeat;
  width: 116px;
  height: 197px;
  pointer-events: none;
}
.page-hero--explore-text-graphic .page-hero__content {
  padding-bottom: 15rem;
}
.page-hero--use-blue-text {
  min-height: 40vh;
}
.page-hero--use-blue-text .page-hero__content {
  color: var(--colour-blue);
  padding-bottom: 0rem;
}
.page-hero--use-blue-text .page-hero__background {
  display: none;
}
.page-hero--use-blue-text .page-hero__icons__left {
  background-image: url("/app/themes/winchester/assets/images/elements/blue-squares-left.svg");
}
.page-hero--use-blue-text .page-hero__icons__right {
  background-image: url("/app/themes/winchester/assets/images/elements/blue-squares-right.svg");
}

.image-and-text-carousel {
  overflow-x: hidden;
  width: 100vw;
  display: block;
  position: relative;
}
@media (max-width: 768px) {
  .image-and-text-carousel {
    padding-bottom: 6rem;
  }
}
.image-and-text-carousel__slides {
  display: flex;
  flex-flow: column;
}
@media (min-width: 769px) {
  .image-and-text-carousel__slides {
    flex-flow: row;
  }
}
.image-and-text-carousel__text-slides {
  position: relative;
  display: flex;
  flex-flow: column;
  flex-basis: 100%;
}
@media (min-width: 769px) {
  .image-and-text-carousel__text-slides {
    flex-basis: 50%;
  }
}
.image-and-text-carousel__text-slides .square-graphic {
  margin-top: 3.375rem;
}
.image-and-text-carousel__text-slides__wrapper {
  position: relative;
  flex: 1;
}
.image-and-text-carousel__text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .image-and-text-carousel__text-slide {
    width: 75%;
  }
}
.image-and-text-carousel__text-slide.active {
  opacity: 1;
  transition: 0.3s 0.2s;
}
.image-and-text-carousel__image-slides {
  flex-basis: 50%;
  position: relative;
}
.image-and-text-carousel__image-slides:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.image-and-text-carousel__ctas {
  display: flex;
  gap: 2rem;
  margin-top: calc(2rem * 2);
}
.image-and-text-carousel__image-slide {
  position: absolute;
  width: calc(100% - 2.5rem);
  height: 100%;
  left: calc(100% - 2rem);
  opacity: 0;
  transition: opacity 0.5s ease-out, left 0.5s 0.5s, transform 0.5s;
  transform: scale(0.9);
}
.image-and-text-carousel__image-slide.before {
  left: 0;
}
.image-and-text-carousel__image-slide img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-and-text-carousel__image-slide.active {
  opacity: 1;
  transition: 0.6s ease-out;
  transform: scale(1);
  left: 0;
}
.image-and-text-carousel__image-slide.next {
  opacity: 1;
  left: calc(100% - 2rem);
  transition: 0.5s ease-out;
  transform: scale(1);
}
@media (min-width: 769px) {
  .image-and-text-carousel__image-slide.next {
    left: calc(100% + 2rem);
  }
}
.image-and-text-carousel.direction-forward .active {
  z-index: 2;
}
.image-and-text-carousel.direction-forward .next {
  z-index: 1;
}
.image-and-text-carousel .active {
  z-index: 1;
}
.image-and-text-carousel .next {
  z-index: 2;
}
.image-and-text-carousel__controls {
  display: none;
  z-index: 5;
  width: 100%;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 769px) {
  .image-and-text-carousel__controls {
    width: 75%;
    display: flex;
  }
}
.image-and-text-carousel__controls .line {
  height: 1px;
  flex: 1;
}
.image-and-text-carousel__controls .line:after {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 2rem);
  background-color: var(--colour-grey);
}
.image-and-text-carousel__indicators, .image-and-text-carousel__indicators-portrait {
  position: relative;
  z-index: 5;
}
.image-and-text-carousel__indicators button, .image-and-text-carousel__indicators-portrait button {
  background-color: transparent;
  border: none;
  font-size: 0;
  color: transparent;
}
.image-and-text-carousel__indicators {
  display: none;
}
@media (min-width: 769px) {
  .image-and-text-carousel__indicators {
    display: flex;
  }
}
.image-and-text-carousel__indicators-portrait {
  position: absolute;
  display: flex;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 0rem;
}
@media (min-width: 769px) {
  .image-and-text-carousel__indicators-portrait {
    display: none;
  }
}

@keyframes next-slide {
  0% {
    opacity: 0;
    left: calc(100% + 2rem);
  }
  100% {
    opacity: 1;
    left: calc(100% + 2rem);
  }
}
.image-and-text-callout {
  /*
    .content-grid{
        @include mixins.portrait{
            padding: 0;
            &:before{
                display: none;
            }
            .col-12{
                min-width: 100%;
                text-align: center;
                .square-graphic {
                    margin-left: auto;
                    margin-right: auto;
                }
            }
        }
    }*/
}
@media (max-width: 768px) {
  .image-and-text-callout:not(.image-and-text-callout--image-visible) .content-grid {
    padding: 0;
  }
  .image-and-text-callout:not(.image-and-text-callout--image-visible) .content-grid:before {
    display: none;
  }
  .image-and-text-callout:not(.image-and-text-callout--image-visible) .content-grid .col-12 {
    min-width: 100%;
    text-align: center;
  }
  .image-and-text-callout:not(.image-and-text-callout--image-visible) .content-grid .col-12 .square-graphic {
    margin-left: auto;
    margin-right: auto;
  }
}
.image-and-text-callout:not(.image-and-text-callout--image-visible) .image-and-text-callout__image {
  display: none;
}
@media (min-width: 769px) {
  .image-and-text-callout:not(.image-and-text-callout--image-visible) .image-and-text-callout__image {
    display: block;
  }
}
.image-and-text-callout__wrapper {
  display: flex;
  align-items: center;
  flex-flow: column;
}
@media (min-width: 769px) {
  .image-and-text-callout__wrapper {
    flex-flow: row;
  }
}
.image-and-text-callout__image {
  display: block;
  position: relative;
  flex-basis: 50%;
  align-self: stretch;
}
.image-and-text-callout__image:before {
  content: "";
  display: block;
  padding-bottom: 90%;
}
.image-and-text-callout__image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-and-text-callout__text {
  padding: 0rem 0;
}
@media (min-width: 769px) {
  .image-and-text-callout__text {
    flex-basis: 50%;
    padding: 4.5rem 0;
    padding: 3rem 0;
  }
}
.image-and-text-callout__text h2,
.image-and-text-callout__text h3,
.image-and-text-callout__text h4,
.image-and-text-callout__text h5 {
  margin-top: 2rem;
  color: var(--colour-white);
}
.image-and-text-callout__text * {
  color: var(--colour-white);
}
.image-and-text-callout__text-inner {
  background-color: var(--colour-blue);
  color: var(--colour-white);
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}
@media (min-width: 769px) {
  .image-and-text-callout__text-inner {
    padding: 4.5rem;
    margin-left: -4.5rem;
  }
}
.image-and-text-callout__text-inner .square-graphic {
  background-image: url("/app/themes/winchester/assets/images/elements/yellow-squares.svg") !important;
}
.image-and-text-callout__ctas {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 769px) {
  .image-and-text-callout__ctas {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .image-grid-links .content-grid {
    padding: 0;
    min-width: 100%;
  }
  .image-grid-links .content-grid:before {
    display: none;
  }
  .image-grid-links .content-grid .col-12 {
    min-width: 100%;
  }
}
.image-grid-links__links {
  display: flex;
  gap: 0.5em;
  align-items: stretch;
  min-height: 75vh;
  overflow-x: auto;
  padding: 0 2rem 2rem;
}
@media (min-width: 769px) {
  .image-grid-links__links {
    gap: 1.5em;
    padding: 0;
    overflow-x: hidden;
    min-height: 50rem;
  }
}
.image-grid-links__link {
  position: relative;
  display: block;
  flex: 1;
  min-width: 90%;
  text-decoration: none;
  perspective: 1000px;
  transform-style: preserve-3d;
  overflow: hidden;
}
@media (min-width: 769px) {
  .image-grid-links__link {
    min-width: auto;
  }
}
.image-grid-links__link:hover .image-grid-links__image {
  transform: translate3d(0, 0, 50px);
}
.image-grid-links__image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.image-grid-links__image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-grid-links__image:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--colour-blue);
  opacity: 0.45;
}
.image-grid-links__text {
  position: relative;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10rem;
}
.image-grid-links__text h2 {
  text-decoration: none;
  display: block;
  color: var(--colour-white);
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}
.image-grid-links__text h2:after {
  display: block;
  content: "";
  height: 2px;
  width: 3.25rem;
  background-color: var(--colour-white);
  margin: 1.5rem auto;
}

.personal-quote {
  overflow-x: hidden;
  position: relative;
}
.personal-quote__background {
  position: absolute;
  width: 50rem;
  height: 20rem;
  left: 24%;
  top: 0%;
  background-size: contain;
}
@media (min-width: 769px) {
  .personal-quote__background {
    width: 91.375rem;
    height: 37.875rem;
    left: 30%;
    top: 50%;
    transform: translateY(-70%);
  }
}
.personal-quote h2 {
  color: var(--colour-blue);
}
.personal-quote__image-outer {
  display: none;
}
@media (min-width: 769px) {
  .personal-quote__image-outer {
    display: block;
  }
}
.personal-quote__image {
  position: relative;
  display: none;
}
@media (min-width: 769px) {
  .personal-quote__image {
    display: block;
  }
}
.personal-quote__image img {
  width: 100%;
  height: auto;
}
.personal-quote__signature {
  max-width: 60%;
  margin: 2rem 0;
}
.personal-quote__ctas {
  margin-top: 0rem;
}
@media (min-width: 769px) {
  .personal-quote__ctas {
    margin-top: 3rem;
  }
}
.personal-quote__ctas a {
  margin: 0 0 0.9375rem 0;
}

.testimonials {
  background-color: var(--colour-blue);
  color: var(--colour-white);
  display: block;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (min-width: 769px) {
  .testimonials {
    padding-top: 15.75rem;
    padding-bottom: 9.5rem;
  }
}
.testimonials__slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.testimonials__slide {
  min-width: 100%;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  position: relative;
  text-align: center;
  opacity: 0;
  transition: 0.1s;
}
.testimonials__slide.visible {
  opacity: 1;
  transition: 0.5s;
  transform: scale(1);
}
.testimonials__slide.visible .testimonials__testimonial-text {
  transform: scale(1);
  transition: 0.5s;
}
.testimonials__testimonial-text {
  position: relative;
  width: calc(100% - 2rem);
  max-width: 61.875rem;
  padding: 1rem;
  margin: auto;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.625rem;
  line-height: 1.375;
  font-weight: 400;
  transform: scale(0.9);
  transition: 0.3s;
}
@media (min-width: 769px) {
  .testimonials__testimonial-text {
    font-size: 2rem;
    width: 66.6666666667%;
  }
}
.testimonials__testimonial-name {
  font-size: 1.3125rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3rem;
}
@media (min-width: 769px) {
  .testimonials__testimonial-name {
    margin-top: calc(6rem / 2);
  }
}
.testimonials__testimonial-name::before {
  display: inline-block;
  content: "- ";
  white-space: pre;
}
.testimonials__controls {
  position: absolute;
  width: 100%;
  bottom: 5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-width: 769px) {
  .testimonials__controls {
    bottom: calc(6rem / 2);
    bottom: 10rem;
  }
}
.testimonials__controls::after {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--colour-white);
  width: calc(100% - 24rem);
  width: calc(100% - 17rem);
}
@media (min-width: 769px) {
  .testimonials__controls::after {
    display: none;
  }
}
@media (min-width: 769px) {
  .testimonials__controls {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.testimonials__controls .next-wrapper,
.testimonials__controls .previous-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.testimonials__controls .divider {
  height: 1px;
  flex: 1;
  background-color: var(--colour-white);
  display: none;
}
@media (min-width: 769px) {
  .testimonials__controls .divider {
    display: block;
  }
}
.testimonials__controls .next-wrapper {
  padding-left: 2rem;
  justify-content: flex-end;
}
.testimonials__controls .previous-wrapper {
  padding-right: 2rem;
  justify-content: flex-start;
}
.testimonials__indicators {
  position: absolute;
  bottom: calc(6rem / 2);
  left: 0;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.testimonials__indicators button {
  background-color: transparent;
  border: none;
  font-size: 0;
  color: transparent;
}
.testimonials__quote-mark {
  position: absolute;
  top: 5.5rem;
  left: 0;
  width: 4.0625rem;
  height: 3.4375rem;
  background-image: url("/app/themes/winchester/assets/images/elements/quote-mark-yellow.svg");
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 769px) {
  .testimonials__quote-mark {
    top: 10.5rem;
  }
}
.testimonials.testimonials--single .testimonials__controls,
.testimonials.testimonials--single .testimonials__indicators {
  display: none;
}

.image-and-text__inner {
  display: flex;
  gap: 3rem;
  flex-flow: column;
}
@media (min-width: 769px) {
  .image-and-text__inner {
    flex-flow: row;
    gap: 6.25rem;
  }
}
.image-and-text__inner--layout--text-image {
  flex-direction: column-reverse;
}
@media (min-width: 769px) {
  .image-and-text__inner--layout--text-image {
    flex-flow: row-reverse;
  }
}
.image-and-text__image {
  position: relative;
  flex: 1;
}
.image-and-text__image:before {
  content: "";
  padding-bottom: 90%;
  display: block;
}
.image-and-text__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.image-and-text__text {
  flex: 1;
  align-self: center;
}
.image-and-text__text .square-graphic {
  margin-top: 3rem;
}
.image-and-text__text > h2:before {
  display: block;
  content: "";
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-image: url("/app/themes/winchester/assets/images/elements/red-squares.svg");
  width: 3.4375rem;
  height: 1.625rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.image-and-text__text > h2::before--white {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
}
.image-and-text__text > h2:after {
  display: block;
  background-color: var(--colour-blue);
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.375rem;
  padding: 4.75rem 2rem 2rem 2rem;
  font-weight: 800;
  color: white;
  background-image: url("/app/themes/winchester/assets/images/elements/date-icon.svg");
  background-repeat: no-repeat;
  background-position: 50% 1.6rem;
  margin-top: 3.25rem;
  text-align: center;
}
@media (min-width: 769px) {
  .image-and-text__text > h2:after {
    background-position: 3.75rem 1.6rem;
    padding: 1.75rem 1rem 1.75rem 7.5rem;
    background-position: 3.75rem 1.6rem;
    text-align: left;
  }
}
.image-and-text__ctas {
  display: flex;
  gap: 2rem;
  margin-top: calc(2rem * 2);
}
.image-and-text__ctas .button {
  flex: 1;
}
@media (min-width: 769px) {
  .image-and-text__ctas .button {
    flex: none;
  }
}
.image-and-text.blue-background {
  color: var(--colour-white);
}
.image-and-text.blue-background .image-and-text__text {
  text-align: center;
}
@media (min-width: 769px) {
  .image-and-text.blue-background .image-and-text__text {
    text-align: left;
  }
}
.image-and-text.blue-background .image-and-text__text h2:before {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .image-and-text.blue-background .image-and-text__text h2:before {
    margin-left: 0;
    margin-right: 0;
  }
}

.image-gallery__images {
  display: flex;
  gap: 0.5em;
  overflow-x: visible;
}
@media (min-width: 769px) {
  .image-gallery__images {
    gap: 2rem;
  }
}
.image-gallery__images img {
  height: 50vh;
  width: auto;
}
@media (min-width: 769px) {
  .image-gallery__images img {
    height: 20vw;
    max-height: 20rem;
  }
}

.text-area {
  position: relative;
  text-align: center;
}
.text-area__text:not(.admissions-enquiry-container) *:not(img) {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .text-area__text:not(.admissions-enquiry-container) *:not(img) {
    max-width: calc(66.6666% - 2rem);
  }
}
.text-area__text:not(.admissions-enquiry-container) img {
  margin: 0 calc((33.3333% - 2rem) * -1);
  display: block;
  width: 100%;
}
.text-area__text:not(.admissions-enquiry-container) > h2:before {
  display: block;
  content: "";
  margin: 3rem auto;
  background-image: url("/app/themes/winchester/assets/images/elements/red-squares.svg");
  width: 3.4375rem;
  height: 1.625rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.text-area__text:not(.admissions-enquiry-container) > h2::before--white {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
}
.text-area.blue-background .text-area__text > h2:before {
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
}
.text-area--explore-text-graphic {
  padding-bottom: 15rem;
}
.text-area--explore-text-graphic:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 197px;
  pointer-events: none;
  background-image: url("/app/themes/winchester/assets/images/elements/explore-graphic.svg");
}
.text-area.blue-background.text-area--explore-text-graphic:after {
  background-image: url("/app/themes/winchester/assets/images/elements/explore-graphic-yellow.svg") !important;
}

.image-section img {
  width: 100%;
  height: auto;
}

.staff-section {
  /*
      &__filter{
          display: flex;
          gap:4.375rem;
          margin-bottom: 5.375rem;

      }
      &__filter-item{
          cursor: pointer;
          color:var(--colour-grey);

          &:hover{
              color:var(--colour-blue);
          }

          &.active{
              color:var(--colour-blue);
              font-weight: 600;
          }
      }
      */
}
.staff-section__members {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 769px) {
  .staff-section__members {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1110px) {
  .staff-section__members {
    grid-template-columns: repeat(3, 1fr);
  }
}
.staff-section__member {
  display: block;
}
.staff-section__member.hidden {
  display: none;
}
.staff-section__preview {
  position: relative;
  transform-style: preserve-3d;
  perspective: 600px;
  overflow: hidden;
  cursor: pointer;
}
.staff-section__preview::before {
  content: "";
  padding-bottom: 105%;
  display: block;
}
.staff-section__preview:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45%;
  background-image: linear-gradient(180deg, rgba(1, 36, 63, 0) 0%, #01243f 100%);
}
.staff-section__preview:hover img {
  transform: translate3d(0, 0, 40px);
}
.staff-section__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: translate3d(0, 0, 0px);
  transition: transform 0.4s;
}
.staff-section__preview-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 2;
}
.staff-section__preview-text h3, .staff-section__preview-text p {
  margin: 0;
  color: var(--colour-white);
}
.staff-section__popup {
  position: fixed;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 66669;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  overflow: auto;
  min-height: min-content;
}
.staff-section__popup.closed {
  display: none;
}
.staff-section__popup-inner {
  background-color: var(--colour-red);
  color: var(--colour-white);
  flex: 2 2 auto;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  position: relative;
  width: 100%;
  max-width: 88rem;
  margin: 0 auto;
  background-image: url("/app/themes/winchester/assets/images/elements/lion-cropped.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
@media (min-width: 769px) {
  .staff-section__popup-inner {
    flex-flow: row;
    width: calc(100% - 6rem);
    flex-wrap: wrap;
  }
}
.staff-section__popup-inner * {
  color: var(--colour-white);
}
.staff-section__popup-inner h2 {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.staff-section__subject {
  margin: 1rem 0;
}
.staff-section__popup-top-row {
  min-width: 100%;
  display: flex;
  align-items: flex-end;
  grid-row-start: 1;
  grid-row-end: span 2;
  border-bottom: 2px solid var(--colour-white);
  padding: 2rem;
  display: flex;
  justify-content: flex-end;
}
.staff-section__image {
  position: relative;
}
.staff-section__image:before {
  display: block;
  content: "";
  padding-bottom: 110%;
}
@media (min-width: 769px) {
  .staff-section__image {
    flex-basis: 40%;
    display: flex;
    position: relative;
  }
}
.staff-section__image img {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-position: 50% 0%;
}
@media (min-width: 769px) {
  .staff-section__image img {
    width: calc(100% - 6rem);
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
    left: 3rem;
    top: 3rem;
    height: calc(100% - 6rem);
  }
}
.staff-section__text {
  flex: 1;
  padding: 3rem 3rem 3rem 1rem;
}
.staff-section .linkedin-icon {
  display: inline-block;
  vertical-align: bottom;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  font-size: 0;
  background-image: url("/app/themes/winchester/assets/images/elements/linkedin-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.icon-and-text-grid {
  text-align: center;
}
.icon-and-text-grid__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 769px) {
  .icon-and-text-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.icon-and-text-grid h2 {
  margin-top: 0;
}
.icon-and-text-grid h2:before {
  display: block;
  content: "";
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/app/themes/winchester/assets/images/elements/white-squares.svg");
  width: 3.4375rem;
  height: 1.625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/app/themes/winchester/assets/images/elements/yellow-squares.svg") !important;
}
.icon-and-text-grid__icon {
  width: 6.5rem;
  height: 6.5rem;
}
.icon-and-text-grid__item {
  margin-top: 5rem;
}

.table-section__inner {
  display: flex;
  flex-flow: column;
  gap: 4rem;
}
@media (min-width: 769px) {
  .table-section__inner {
    flex-flow: row;
    gap: 0;
  }
}
.table-section__inner table {
  flex: 1;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
  border-spacing: 1px;
}
.table-section__inner thead td {
  font-family: "Nanum Myeongjo", serif;
  background-color: var(--colour-red);
  color: var(--colour-white);
  font-weight: 800;
  font-size: larger;
}
.table-section__inner thead td:after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
}
.table-section__inner tr:nth-child(even) {
  background-color: var(--colour-grey-medium);
}
.table-section__inner tr:nth-child(odd) {
  background-color: var(--colour-white);
}
.table-section__inner td {
  padding: 2rem;
}

.contact-form-section {
  text-align: center;
}
@media (max-width: 768px) {
  .contact-form-section .content-grid {
    padding: 0;
  }
  .contact-form-section .content-grid::before {
    display: none;
  }
  .contact-form-section .content-grid .col-12 {
    min-width: auto;
    flex-basis: auto;
  }
}
.contact-form-section__outer {
  background-position: 0% 30%;
  background-repeat: no-repeat;
}
.contact-form-section__inner {
  padding: 2rem;
}
@media (min-width: 769px) {
  .contact-form-section__inner {
    width: 80%;
    margin: auto;
    padding: 5rem 3rem;
  }
}
.contact-form-section__inner--submitted {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spacer__portrait {
  display: block;
}
@media (min-width: 769px) {
  .spacer__portrait {
    display: none;
  }
}
.spacer__landscape {
  display: none;
}
@media (min-width: 769px) {
  .spacer__landscape {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
