/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
 * Frontend Specific Stylesheets
 *
 * Before adding here check:
 *	- Does your style need to go in here?
 *	- Can it go in the theme.json?
 *	- Can it go in a specific block SASS file?
 * This will prevent it being loaded on all pages when its not required.
 */
/* stylelint-disable */
/**
 * Breakpoints & Media Queries
 * These are written to match the Generate Blocks breakpoints
 */
.wp-block-image.video-modal-trigger img {
  border-radius: 20px;
}

.wp-block-image.video-modal-trigger {
  position: relative;
}
.wp-block-image.video-modal-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/wp-content/themes/gsw/build/images/svg/sprite.symbol.svg#icon-play-button-fragment") center no-repeat;
  background-size: 88px 88px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.video-modal__content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0;
  border-radius: 14px;
  overflow: visible;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  outline: none;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--wp--preset--color--dark-aubergine);
  color: #fff;
  cursor: pointer;
  transition: transform 200ms ease;
}

.video-modal__close:hover {
  transform: rotate(180deg);
}

.video-modal__close::before,
.video-modal__close::after {
  background-color: #fff;
  content: "";
  height: 20px;
  position: absolute;
  width: 2px;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.video-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.video-modal__iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: transparent;
}

.video-modal__frame {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* stylelint-enable */
/* COMPONENTS */
/*
 * Frontend Specific Stylesheets
 *
 * Before adding here check:
 *	- Does your style need to go in here?
 *	- Can it go in the theme.json?
 *	- Can it go in a specific block SASS file?
 * This will prevent it being loaded on all pages when its not required.
 */
/* stylelint-disable */
:root {
  --gsw--header-scroll-animation: 0.5s;
}

.header-container {
  max-height: calc(80px + var(--wp--preset--spacing--10) * 2);
  height: 20vh;
  transition: 0.5s;
}
.header-container > .wp-block-group {
  width: 100%;
}

.wp-site-blocks > header.wp-block-template-part:first-child {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--wp--preset--color--weiss);
}

.menu-open .wp-site-blocks > header.wp-block-template-part:first-child {
  background-color: var(--wp--preset--color--sand) !important;
}

.admin-bar .wp-site-blocks > header.wp-block-template-part:first-child {
  top: var(--wp-admin--admin-bar--height);
}

body.body-scrolled:not(.menu-open) .wp-site-blocks > header.wp-block-template-part:first-child {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
body.body-scrolled .header__menu {
  transform: scale(0.9);
  transition: var(--gsw--header-scroll-animation);
}
body.body-scrolled .header__logo img {
  transform: scale(0.9);
  transition: var(--gsw--header-scroll-animation);
}
body.body-scrolled .header__phone {
  transform: scale(0.9);
  transition: var(--gsw--header-scroll-animation);
}
body.body-scrolled .header-container {
  max-height: calc(60px + (var(--wp--preset--spacing--10)));
  transition: var(--gsw--header-scroll-animation);
}

.wp-block-search__input {
  background: transparent;
}

.header__search .header__search-button {
  display: none;
}

@media screen and (max-width: 520px) {
  .header__search .wp-block-search__input {
    max-width: 300px;
  }
}
@media screen and (max-width: 1365px) {
  .header__search {
    margin-left: auto !important;
    margin-right: 5px !important;
  }
  .header__search .header__search-button {
    background: url("/wp-content/themes/gsw/build/images/svg/sprite.symbol.svg#icon-ui-search-fragment") center no-repeat;
    display: block;
    background-size: 30px;
  }
  .header__search form[role=search] {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 20px 15px;
    top: calc(100% + 10px);
    background-color: #fff;
    border-radius: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }
  .header__search .wp-block-search__inside-wrapper {
    max-width: 600px;
  }
  body.search-open .header__search form[role=search] {
    opacity: 1;
    pointer-events: auto;
    transition: 0.5s;
  }
  .header__logo {
    max-width: 140px;
  }
}
@media ((min-width: 1025px)) {
  body.body-scrolled .header__search {
    transform: scale(0.9);
    transition: var(--gsw--header-scroll-animation);
  }
  body.body-scrolled .header__search form {
    top: calc(100% + 10px);
  }
}
@media (max-width: 600px) {
  .admin-bar.body-scrolled .wp-site-blocks > header.wp-block-template-part:first-child {
    top: 0;
  }
}
/*
 * Frontend Specific Stylesheets
 *
 * Before adding here check:
 *	- Does your style need to go in here?
 *	- Can it go in the theme.json?
 *	- Can it go in a specific block SASS file?
 * This will prevent it being loaded on all pages when its not required.
 */
/* stylelint-disable */
/* stylelint-disable no-descending-specificity */
body.menu-open .mega-menu__wrapper {
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: var(--wp--preset--color--aubergine) var(--wp--preset--color--sand);
}

.mega-menu .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background: transparent;
  border: none;
}
.mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  position: static;
  display: block;
  height: auto;
  min-width: 0;
  width: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  padding: 0;
  margin: 0;
}
.mega-menu .wp-block-navigation .wp-block-navigation-item {
  flex-wrap: wrap;
}
.mega-menu .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__label {
  overflow-wrap: anywhere;
  color: var(--wp--preset--color--dark-aubergine);
}
.mega-menu nav > .wp-block-navigation > .wp-block-navigation-item > .wp-block-navigation-item__content {
  font-weight: 700;
}
.mega-menu .wp-block-navigation-submenu > .wp-block-navigation-item.has-medium-font-size {
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.2rem) * 0.857, 1.5rem) !important;
}

.mega-menu__wrapper {
  opacity: 0;
  transition: opacity 0.4s;
  max-height: 0;
  pointer-events: none;
}

.menu-open .mega-menu__wrapper {
  opacity: 1;
  transition: opacity 0.4s;
  max-height: 2000px;
  pointer-events: all;
}

@media ((max-width: 1024px)) {
  .mega-menu {
    overflow: visible !important;
    --gsw--megamenu-toggle: 22px;
  }
  .mega-menu > .gb-container:last-of-type {
    margin-bottom: 40px;
  }
  .mega-menu > .gb-container > nav > ul {
    gap: 0;
  }
  .mega-menu > .gb-container > nav > ul > .wp-block-navigation-item > .wp-block-navigation-item__content {
    width: 100%;
  }
  .mega-menu .wp-block-navigation__submenu-icon {
    width: var(--gsw--megamenu-toggle);
    height: var(--gsw--megamenu-toggle);
    position: absolute;
    right: 10px;
    top: 28px;
  }
  .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container {
    max-height: 0;
    width: 100% !important;
    overflow: hidden !important;
    transition: 0.2s;
  }
  .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container > .wp-block-navigation-item:first-child .wp-block-navigation-item__label {
    font-weight: 600;
    position: relative;
  }
  .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container > .wp-block-navigation-item:first-child .wp-block-navigation-item__label::before, .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container > .wp-block-navigation-item:first-child .wp-block-navigation-item__label::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin-block: auto;
    display: block;
    width: 10px;
    height: 10px;
    border-right: solid 2px var(--wp--preset--color--dark-aubergine);
    border-top: solid 2px var(--wp--preset--color--dark-aubergine);
    transform: rotate(45deg);
  }
  .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container > .wp-block-navigation-item:first-child .wp-block-navigation-item__label::before {
    right: -20px;
  }
  .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container > .wp-block-navigation-item:first-child .wp-block-navigation-item__label::after {
    right: -30px;
  }
  .mega-menu .wp-block-navigation__container,
  .mega-menu a.wp-block-navigation-item__content {
    display: block;
    width: 100%;
  }
  .mega-menu .wp-block-navigation-item.has-child > a.active ~ .wp-block-navigation__submenu-container {
    max-height: 1000px;
    transition: 0.2s;
  }
  .mega-menu nav > .wp-block-navigation {
    border-bottom: var(--wp--preset--color--dark-aubergine) 1px solid;
  }
  .mega-menu nav > .wp-block-navigation .wp-block-navigation-submenu > li:last-child {
    margin-bottom: 1.5rem;
  }
  .mega-menu nav > .wp-block-navigation > .wp-block-navigation-item > a.wp-block-navigation-item__content {
    padding-block: 1.5rem;
  }
  .mega-menu a:focus,
  .mega-menu a:focus-visible {
    outline: none;
    text-decoration: underline;
  }
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
  body.menu-open header.wp-block-template-part {
    height: 100vh;
    overflow-y: scroll;
  }
  .mega-menu__wrapper {
    max-height: 0;
  }
  body.menu-open .mega-menu__wrapper {
    padding-bottom: calc(var(--gsw-header-footer-height) + 2rem);
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .mega-menu nav > .wp-block-navigation > .wp-block-navigation-item > .wp-block-navigation-item__content {
    font-size: 1.25rem;
  }
  .mega-menu .wp-block-navigation__submenu-container .wp-block-navigation-item__label {
    font-size: 1.1rem;
  }
}
@media ((min-width: 1025px)) {
  body.menu-open .mega-menu__wrapper .mega-menu {
    max-height: calc(100vh - var(--gsw-header-height));
  }
  .mega-menu__wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-inline: var(--wp--style--root--padding-right);
  }
  .mega-menu .wp-block-navigation__responsive-container-content {
    width: 100%;
  }
  .mega-menu .wp-block-navigation__container {
    display: block;
  }
  .mega-menu .wp-block-navigation__container > .wp-block-navigation-item > a.wp-block-navigation-item__content {
    margin-bottom: 1.5rem;
  }
  .mega-menu .wp-block-navigation .wp-block-navigation-item.has-child,
  .mega-menu .wp-block-navigation .wp-block-navigation-item.wp-block-navigation-link {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    display: block;
    margin-bottom: 3rem;
  }
  .mega-menu .wp-block-navigation .wp-block-navigation-item > .wp-block-navigation-item__content {
    display: block;
  }
  .mega-menu .wp-block-navigation .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
    text-decoration: underline;
  }
  .mega-menu .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item {
    display: block;
    margin-bottom: 0.25rem;
  }
  .mega-menu .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item:first-child .wp-block-navigation-item__label {
    display: none;
  }
  .mega-menu .wp-block-navigation .wp-block-navigation__submenu-icon {
    display: none;
  }
  .mega-menu .wp-block-navigation .has-child .wp-block-navigation__submenu-container > .wp-block-navigation-item > .wp-block-navigation-item__content {
    padding: 0.625rem 0 0.625rem 0;
  }
}
.wp-block-search__inside-wrapper {
  border-radius: 50px;
  position: relative;
  padding-block: 13px;
}

.wp-block-search__button-inside {
  border: none;
  font-size: 1.5rem;
  border-radius: 50px;
}

.wp-block-search__input {
  border-radius: 50px;
  padding: 0 180px 0 5px;
}

.wp-block-search__button {
  padding: 0 50px 0 50px;
  color: #000;
  font-weight: 500;
  font-size: 1.5rem;
  border-radius: 50px;
  position: absolute;
  right: -2px;
  top: -2px;
  height: calc(100% + 4px);
}

/* Yoast breadcrumbs */
.yoast-breadcrumbs,
.yoast-breadcrumbs a {
  color: var(--breadcrumb-color, currentColor);
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
}

.yoast-breadcrumbs__home-icon {
  display: inline-flex;
  position: relative;
  top: 0.1rem;
}
.yoast-breadcrumbs__home-icon svg {
  display: block;
  fill: var(--breadcrumb-color, currentColor);
}

/* Wrapper for a set of pills */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
}

.pill-group__pill {
  background: var(--wp--preset--color--weiss);
  color: var(--wp--preset--color--dark-aubergine);
  border: 1px solid var(--wp--preset--color--dark-aubergine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.05rem;
  border-radius: 9999px;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.pill-group__pill:hover, .pill-group__pill:focus {
  background: var(--wp--preset--color--dark-aubergine);
  color: var(--wp--preset--color--weiss);
}

.pill-group__pill:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

.gb-text.is-dynamic-pills {
  margin: 0;
}

.gb-text.is-dynamic-pills:empty {
  display: none;
}

@media (max-width: 420px) {
  .pill-group__pill {
    white-space: normal;
  }
}
/* ========= Team modal ========= */
.card-modal-content {
  display: none;
}

.team-modal[hidden] {
  display: none;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}
.team-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.35);
}
.team-modal__content {
  position: relative;
  z-index: 1;
  max-width: var(--wp--style--global--wide-size);
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  margin: 6vh auto;
  background: var(--wp--preset--color--aubergine);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  outline: none;
  max-height: 88vh;
  overflow: auto;
  overscroll-behavior: contain;
}
.team-modal__content h2,
.team-modal__content .team-modal__title {
  margin: 0 0 2rem;
}
.team-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--wp--preset--color--weiss);
  color: var(--wp--preset--color--dark-aubergine);
  cursor: pointer;
  transition: transform 200ms ease;
}
.team-modal__close:hover {
  transform: rotate(180deg);
}
.team-modal__close::before, .team-modal__close::after {
  background-color: var(--wp--preset--color--dark-aubergine);
  content: "";
  height: 20px;
  position: absolute;
  width: 2px;
  left: 50%;
  top: 50%;
  transform-origin: center;
}
.team-modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.team-modal__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.team-modal__body {
  margin-top: 0;
  background: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .team-modal__overlay {
    opacity: 0;
    transition: opacity 160ms ease;
  }
  .team-modal__content {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .team-modal.is-open .team-modal__overlay {
    opacity: 1;
  }
  .team-modal.is-open .team-modal__content {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hide splide arrows when not needed */
.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

:root {
  --form-border-radius: 32px;
}

.gform-field-label:not(.gform-field-label--type-sub) {
  font-size: var(--wp--preset--font-size--large) !important;
  color: var(--wp--preset--color--aubergine) !important;
}

.gform-field-label--type-sub,
.gfield_description {
  font-size: var(--wp--preset--font-size--medium) !important;
  color: var(--wp--preset--color--aubergine) !important;
}

.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper select,
.gform_wrapper textarea {
  border-radius: var(--form-border-radius) !important;
  border: 2px solid var(--wp--preset--color--aubergine) !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  padding-block: 8px !important;
  padding-inline: 24px !important;
}

.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=file],
.gform_wrapper select {
  height: 60px !important;
}

.gform_wrapper input[type=checkbox] {
  width: 30px !important;
  height: 30px !important;
  border-radius: 10px !important;
  border: 2px solid var(--wp--preset--color--aubergine) !important;
}

.gform_wrapper select.gfield_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-size: 20px 20px;
  background-position: calc(100% - 20px);
  padding-right: 50px !important;
}

.gform_wrapper input[type=file] {
  -webkit-appearance: none;
  -webkit-rtl-ordering: left;
  font: inherit;
  padding: 0 0 0 24px !important;
  border-radius: var(--form-border-radius) !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  height: 60px !important;
  line-height: 56px !important;
  border: 2px solid var(--wp--preset--color--aubergine) !important;
}

/* Chrome/Safari/Edge */
.gform_wrapper input[type=file]::file-selector-button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: var(--wp--preset--color--pink) !important; /* use background-color (more reliable than background) */
  color: var(--wp--preset--color--aubergine) !important !important;
  border: 2px solid var(--wp--preset--color--pink) !important;
  padding-inline: 22px !important;
  padding-block: 8px !important;
  border-radius: var(--form-border-radius) !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  cursor: pointer;
  margin: 1px 0 0 0 !important;
  float: right !important;
}

/* Safari fallback */
.gform_wrapper input[type=file]::-webkit-file-upload-button {
  -webkit-appearance: none;
  background-color: var(--wp--preset--color--pink) !important;
  color: var(--wp--preset--color--aubergine) !important !important;
  border: 2px solid var(--wp--preset--color--pink) !important;
  padding-inline: 22px !important;
  padding-block: 8px !important;
  border-radius: var(--form-border-radius) !important;
  cursor: pointer;
  margin-top: 1px !important;
}

.gform_wrapper input[type=submit] {
  border-radius: var(--form-border-radius) !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  padding-block: 8px !important;
  padding-inline: 24px !important;
  background-color: var(--wp--preset--color--pink) !important;
  color: var(--wp--preset--color--aubergine) !important;
  border: 2px solid var(--wp--preset--color--pink) !important;
  height: 60px !important;
  cursor: pointer;
}

.gform_wrapper input[type=submit]:hover {
  background-color: var(--wp--preset--color--weiss) !important;
  color: var(--wp--preset--color--aubergine) !important;
}

.gsection_title {
  color: var(--wp--preset--color--aubergine) !important;
  font-size: var(--wp--preset--font-size--x-large) !important;
  font-weight: 600;
}

.gform_wrapper.gform-theme--framework:where(:not(.gform_editor)) .gfield--type-section {
  border-block-end: none;
}

.gform-theme--framework .ginput_container_consent input[type=checkbox],
.gform-theme--framework input[type=checkbox].gfield-choice-input,
.gform-theme--framework input[type=radio].gfield-choice-input {
  width: 30px !important;
  height: 30px !important;
  border-radius: 10px !important;
  border: 2px solid var(--wp--preset--color--aubergine) !important;
  margin: auto !important;
  position: relative !important;
  overflow: hidden !important;
}
.gform-theme--framework .ginput_container_consent input[type=checkbox]::before,
.gform-theme--framework input[type=checkbox].gfield-choice-input::before,
.gform-theme--framework input[type=radio].gfield-choice-input::before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  border-radius: 8px !important;
  border: 2px #fff solid !important;
  display: block !important;
  background: var(--wp--preset--color--aubergine) !important;
}

.gfield--type-html *:last-of-type {
  margin-bottom: 0;
}

.gform-theme--framework a {
  color: var(--wp--preset--color--dark-pink) !important;
}

.gfield_required {
  margin-bottom: auto !important;
  font-size: var(--wp--preset--font-size--large) !important;
  color: var(--wp--preset--color--aubergine) !important;
}

/* VENDOR */
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/* Hide default WP skip link - we use our own styled version */
#wp-skip-link {
  display: none !important;
}

#main-content {
  margin-block-start: 0;
}

/* Can be used to hide overflow from elements when the slider is in use */
.overflow-hidden {
  overflow: hidden;
}

.box-sizing__border-box {
  box-sizing: border-box;
}

/* Use border-box sizing globally so padding/borders don’t increase element width and cause horizontal overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

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