/*
* Variables for breakpoints
*/
/*
* Map for breakpoints
*/
:root {
  --darker-cream:#F6EFE6;
  --darker-pale-pink:#F4DEE1;
  --darker-dark-grey:#585858;
  --darker-pale-grey:#DFDDD9;
  --darker-mid-grey:#4d4d4f;
}

/* CSS RESET  */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  /* line-height: 1.1; */
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  /* text-wrap: balance; */
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "AvenirNextBold";
  src: url("/wp-content/themes/wghs-2024/fonts/AvenirNextLTPro-Bold.otf") format("opentype");
}
@font-face {
  font-family: "AvenirNextItallic";
  src: url("/wp-content/themes/wghs-2024/fonts/AvenirNextLTPro-It.otf") format("opentype"), url("/wp-content/themes/wghs-2024/fonts/AvenirNextLTPro-It.woff2") format("woff2");
}
@font-face {
  font-family: "AvenirNextRegular";
  src: url("/wp-content/themes/wghs-2024/fonts/AvenirNextLTPro-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Garamond";
  src: url("/wp-content/themes/wghs-2024/fonts/Adobe-Garamond-Pro-Regular.woff2") format("woff2");
}
body.wghs div.wghs-button a.wghs-button-link {
  background-color: var(--red);
  border: none;
  color: white;
  font-weight: 400;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
  line-height: 1;
}
body.wghs div.wghs-button a.wghs-button-link:hover {
  background-color: var(--dark-red);
  color: white;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}
body.wghs div.wghs-button a.wghs-button-link:after {
  display: inline-block;
  width: 18px;
  height: 10px;
  background-color: var(--white);
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg?v=1);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  /* position: absolute; */
  margin-left: 0.5rem;
  top: 0;
  content: "";
  transform: rotate(270deg);
}
body.wghs div.wghs-button a.wghs-button-link[target=_blank]:after {
  mask-image: url(/wp-content/themes/wghs-2024/icons/icons_external-link.svg);
  transform: rotate(0deg);
  width: 18px;
  height: 14px;
}

#at__banner {
  height: 62.5vw;
  max-height: 70vh;
  background-size: cover;
  background-position: top center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 7vh;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#at__banner.no-featured {
  height: auto;
  padding: 0;
  background-color: #fdf7ed;
  color: #4d4d4f;
}
#at__banner.no-featured::before {
  background-color: unset;
  content: none;
}
#at__banner.no-featured.random-bg #at__banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#at__banner.no-featured.random-bg #at__banner-overlay #at__banner-svg {
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: #F6EFE6;
  mask-size: contain;
  mask-repeat: no-repeat;
  position: absolute;
  width: 40%;
  height: 100%;
  top: 10%;
  left: -20%;
}
#at__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
#at__banner .at__page-title {
  font-family: var(--garamond);
  font-size: clamp(2.5rem, 0.5147rem + 4.4118vw, 4.375rem);
  margin-bottom: 1rem;
  z-index: 1;
  padding: var(--outsidePad);
}
#at__banner .at__sub-heading {
  font-size: 1.5rem;
  z-index: 1;
}

/* Top Menu */
.open > #at_topbar {
  transition: background-color 1000ms;
}

#at_topbar {
  /* menu sizings */
  --menuPadding: 10px;
  --menuTopBar: 70px;
  --logoHeight: 61.5px;
  display: flex;
  justify-content: space-between;
  background-color: var(--dark-grey);
  transition: background-color 1000ms;
  position: fixed;
  top: calc(0 + var(--wp-admin--admin-bar--height));
  left: 0;
  right: 0;
  z-index: 100;
}
@media (max-width: 1170px) {
  #at_topbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
  }
}
#at_topbar .at_logo_container {
  flex: 1 0 0;
  display: grid;
  place-items: center;
  background-color: var(--dark-grey);
}
#at_topbar .at_logo_container .at_logo {
  justify-self: flex-start;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px var(--dblOutsidePad);
  background-color: var(--dark-grey);
}
#at_topbar .at_logo_container .at_logo a {
  display: grid;
  place-items: center;
}
#at_topbar .at_logo_container .at_logo a img {
  width: 300px;
  height: auto;
  max-height: var(--logoHeight, 61.5px);
  max-width: 300px;
  transition: width 1000ms;
}
@media (max-width: 1170px) {
  #at_topbar .at_logo_container .at_logo a img {
    max-width: 33vw;
  }
}
@media (max-width: 767px) {
  #at_topbar .at_logo_container .at_logo a img {
    width: 100%;
    max-width: 50vw;
    transition: width 1000ms;
    padding: var(--dblOutsidePad);
    max-height: none;
  }
}
@media (max-width: 767px) {
  #at_topbar .at_logo_container .at_logo {
    padding: 0;
  }
}
#at_topbar .at_nav {
  display: flex;
  align-items: center;
}
#at_topbar .at_nav .ubermenu-main {
  width: 100%;
}
#at_topbar .at_nav .ubermenu-main > ul {
  display: flex;
  justify-content: space-between;
  min-width: 550px;
  max-width: 800px;
  width: 100%;
  margin-left: auto;
}
#at_topbar .at_nav .ubermenu-main > ul .ubermenu-item-level-0 > .ubermenu-target,
#at_topbar .at_nav .ubermenu-main > ul .ubermenu-item-level-0 > .ubermenu-target.ubermenu-item-notext > .ubermenu-icon {
  line-height: var(--topHeaderHeight);
  text-wrap: nowrap;
}
#at_topbar .at_nav .ubermenu-item-level-0 > a {
  color: #fff;
}
#at_topbar .at_nav .ubermenu-item-level-0 > a .ubermenu-badge {
  display: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  background: none;
}
#at_topbar .at_nav .ubermenu-item-level-0 > a:hover {
  color: var(--dusky-pink);
}
#at_topbar .at_nav .ubermenu-item-level-0 > a:hover .ubermenu-target-text {
  display: none;
}
#at_topbar .at_nav .ubermenu-item-level-0 > a:hover .ubermenu-badge {
  display: block;
}
#at_topbar .at_nav .ubermenu-item-level-1 .ubermenu-target {
  padding: 4px 0;
}
#at_topbar .at_mob-only {
  display: none;
}
#at_topbar #at_quick-links {
  display: grid;
  place-items: self-end;
  flex: 1 0 0;
  align-items: center;
}
#at_topbar #at_quick-links > ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 12px var(--dblOutsidePad) 12px 20px;
  gap: 1rem;
}
#at_topbar #at_quick-links > ul .at_ql-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  font-family: "Work Sans", Sans-serif;
  font-size: 15px;
  font-weight: 500;
}
#at_topbar #at_quick-links > ul .at_ql-item.at_ql-portal {
  margin: 0 auto 0 0;
  line-height: 1.2em;
  text-transform: capitalize;
  display: inline-block;
  font-weight: 500;
  background-color: var(--dark-grey);
  color: var(--white);
  width: auto;
  padding: 6px 14px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 1rem 0;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
  line-height: 1;
}
#at_topbar #at_quick-links > ul .at_ql-item.at_ql-portal:hover {
  color: var(--dusky-pink);
}
@media (max-width: 1250px) {
  #at_topbar #at_quick-links > ul .at_ql-item.at_ql-portal {
    position: relative;
    height: 22px;
    width: 22px;
    display: flex;
    padding: 5px;
  }
  #at_topbar #at_quick-links > ul .at_ql-item.at_ql-portal span {
    display: none;
  }
  #at_topbar #at_quick-links > ul .at_ql-item.at_ql-portal:after {
    content: "";
    background-color: var(--white);
    mask-image: url(/wp-content/themes/wghs-2024/icons/oc_user.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #at_topbar #at_quick-links > ul .at_ql-item.at_ql-portal:hover:after {
    background-color: var(--dusky-pink);
  }
}
#at_topbar #at_quick-links > ul .at_ql-item.search-active .at_menu-search {
  background-color: var(--dusky-pink);
}
#at_topbar #at_quick-links > ul .at_ql-item .at_menu-search {
  display: grid;
  place-items: center;
  mask-image: url(/wp-content/themes/wghs-2024/icons/icons_search.svg?V=1);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--white);
  width: 20px;
  height: 20px;
}
#at_topbar #at_quick-links > ul .at_ql-item .at_menu-search:hover {
  background-color: var(--dusky-pink);
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav {
  color: white;
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav:hover {
  color: var(--dusky-pink);
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger {
  position: relative;
  z-index: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner,
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner::before,
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 1.5px;
  background: currentColor;
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner {
  top: 11px;
  transition: transform 0.1s ease-in-out;
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner::before, #at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner::after {
  content: "";
  transition: top 0.1s ease-in-out 0.1s, transform 0.1s ease-in-out;
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner::before {
  top: -7.5px;
}
#at_topbar #at_quick-links > ul .at_ql-item.mob-nav .g-hamburger .hamburger-inner::after {
  top: 7.5px;
}
#at_topbar #at_quick-links > ul .at_ql-item.active .g-hamburger .hamburger-inner {
  transition: transform 0.1s ease-in-out 0.1s;
  transform: rotate(45deg);
}
#at_topbar #at_quick-links > ul .at_ql-item.active .g-hamburger .hamburger-inner::before {
  opacity: 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out 0.1s;
  transform: rotate(-90deg);
}
#at_topbar #at_quick-links > ul .at_ql-item.active .g-hamburger .hamburger-inner::after {
  top: 0;
  transition: top 0.1s ease-in-out, transform 0.1s ease-in-out 0.1s;
  transform: rotate(-90deg);
}
@media (max-width: 1170px) {
  #at_topbar .at_desk-only {
    display: none;
  }
  #at_topbar .at_mob-only {
    display: list-item;
  }
}
@media (max-width: 767px) {
  #at_topbar .at_menu-text {
    display: none;
  }
}

#at_search-container {
  padding: 10px;
  position: fixed;
  top: calc(var(--topHeaderHeight) + var(--admin-bar-height));
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dark-grey);
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  z-index: 100;
  overflow: scroll;
}
#at_search-container #at_search-layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#at_search-container #at_search-layout #at_close-search {
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 5vh;
  right: 10vw;
  font-size: 40px;
}
#at_search-container #at_search-layout #at_close-search .close-icon {
  width: 40px;
  height: auto;
}
#at_search-container #at_search-layout #at_search-form {
  display: grid;
  place-items: center;
  color: #fff;
  padding-top: 15vh;
}
#at_search-container #at_search-layout #at__search-quick-links {
  max-width: clamp(300px, 70vw, 1600px);
  width: 100%;
  margin: 0 auto;
  padding: var(--dblOutsidePad) 0;
}
#at_search-container #at_search-layout #at__search-quick-links .search-ql-header H2 {
  border-bottom: 2px solid var(--dusky-pink);
  text-align: left;
  color: #fff;
  font-size: clamp(2.375rem, 1.6364rem + 1.9697vw, 4rem);
  margin-bottom: var(--outsidePad);
}
#at_search-container #at_search-layout #at__search-quick-links .search-quick-links ul {
  column-count: 2;
  margin: 0;
  padding: 0;
}
#at_search-container #at_search-layout #at__search-quick-links .search-quick-links ul a {
  color: #fff;
}
#at_search-container #at_search-layout #at__search-quick-links .search-quick-links ul a:hover {
  color: var(--dusky-pink);
}
#at_search-container #at_search-layout #at_search-contacts {
  margin-bottom: 5vh;
  display: grid;
  place-items: center;
  color: #fff;
}
#at_search-container #at_search-layout #at_search-contacts .at_menu-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
}
#at_search-container #at_search-layout #at_search-contacts .at_menu-contacts a {
  color: white;
}
#at_search-container #at_search-layout #at_search-contacts .at_menu-contacts a:hover {
  color: var(--red);
}
#at_search-container #at_search-layout #at_search-contacts .at_menu-contacts span.at_menu-contact-title {
  color: white;
  font-weight: bold;
}
#at_search-container #at_search-layout #at_search-contacts .at_menu-socials a {
  padding: 1rem;
  color: #fff;
  font-size: 30px;
}
#at_search-container #at_search-layout #at_search-contacts .at_menu-socials a:hover {
  color: var(--red);
}

#at_menu-container {
  position: fixed;
  top: calc(var(--topHeaderHeight) + var(--admin-bar-height));
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dark-grey);
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  z-index: 100;
  overflow: scroll;
}
#at_menu-container #at_menu {
  padding: 10vh var(--menuColPadding) 0;
  position: relative;
  max-width: 500px;
  width: 100%;
}
#at_menu-container #at_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#at_menu-container #at_menu ul.bellows-submenu {
  margin-left: 1rem;
}
#at_menu-container #at_menu ul.sub-menu {
  visibility: hidden;
  height: 0;
  opacity: 0;
  margin-left: 1rem;
  transition: visibility 0.5s, height 0.5s, opacity 0.5s linear;
  background-color: var(--dark-grey);
}
#at_menu-container #at_menu li.menu-open > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  height: 100%;
  padding: 20px 0;
  columns: 2;
}
#at_menu-container #at_menu #menu-primary-1 {
  padding: 20px;
}
#at_menu-container #at_menu li.level-0 {
  padding: 20px 0;
  max-width: var(--menuColWidth);
  border-bottom: 1px solid white;
  font-size: clamp(1.5rem, 1.0714rem + 0.6696vw, 1.875rem);
  line-height: 1.2;
  font-weight: 700;
}
#at_menu-container #at_menu li.level-0:first-of-type {
  border-top: 1px solid white;
}
#at_menu-container #at_menu li.level-0:hover {
  color: var(--gold);
}
#at_menu-container #at_menu li.level-1 {
  padding: 6px;
  font-size: clamp(1.125rem, 0.6964rem + 0.6696vw, 1.5rem);
  font-weight: 400;
}
#at_menu-container #at_menu-contacts {
  display: flex;
  line-height: 1.3;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 1rem;
  padding: calc(var(--headerHeight) + 30px) 20px 20px;
  text-align: center;
}
#at_menu-container #at_menu-contacts .at_menu-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#at_menu-container #at_menu-contacts a {
  color: white;
}
#at_menu-container #at_menu-contacts a:hover {
  color: var(--red);
}
#at_menu-container #at_menu-contacts .at_menu-logo img {
  width: clamp(9.375rem, 6.41vw + 7.933rem, 15.625rem);
}
#at_menu-container #at_menu-contacts .at_menu-socials a {
  padding: 10px;
  font-size: 2rem;
}
#at_menu-container #at_menu-contacts span.at_menu-contact-title {
  color: white;
  font-weight: bold;
}

@media (min-width: 1366px) {
  #at_menu .at_menu-wrap li:hover ul.sub-menu {
    display: block;
    columns: 2;
    padding: 20px 0;
    margin: 0;
  }
  #at_menu li.level-0 {
    position: absolute;
    left: var(--menuColWidth);
    padding-left: var(--menuColPadding);
    padding-top: 8px;
    top: 0;
    height: 100%;
  }
  #at_menu li.level-0 > ul {
    position: absolute;
    left: var(--menuColWidth);
    padding-left: var(--menuColPadding);
    padding-top: 8px;
    top: 0;
    height: 100%;
  }
}
@media (max-width: 1024px) {
  #at_menu-container {
    grid-template-columns: 1fr;
  }
  #at_menu-contacts {
    padding: 50px 20px 20px;
  }
}
@media (max-width: 768px) {
  #at_menu.submenu-open ul#menu-main-menu-1 > li.menu-closed {
    display: none;
  }
  #at_menu.submenu-open li.menu-open {
    display: block;
    position: relative;
  }
  #at_menu.submenu-open li.menu-open > ul.sub-menu {
    display: block;
    position: relative;
    left: 0;
    columns: 1;
  }
  #at_menu.submenu-open li.menu-open > .at_mi-head {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
  }
  #at_menu.submenu-open li.menu-open > .at_mi-head > .at-mi-clicker {
    transform: rotateZ(180deg);
  }
}
/* HOME WIDGETS */
/* at_banner-image */
.at_image-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wghs-flex {
  color: var(--text-grey);
  /*Box control*/
  /* all layouts */
}
.wghs-flex .at_breadcrumb {
  width: 100%;
  padding: var(--outsidePad) var(--dblOutsidePad) 0;
}
.wghs-flex .at_breadcrumb ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.wghs-flex .at_breadcrumb ul li a {
  color: var(--text-grey);
  text-decoration: none;
  font-size: var(--smallFontClamp);
  font-weight: 400;
}
.wghs-flex .at_breadcrumb ul li a:hover {
  color: var(--red);
}
.wghs-flex .at_breadcrumb ul li a:after {
  content: "/";
  padding: 0 8px;
}
.wghs-flex .at__button-container a {
  background-color: var(--red);
  border: none;
  color: white;
  font-weight: 400;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
  line-height: 1;
}
.wghs-flex .at__button-container a:hover {
  background-color: var(--dark-red);
  color: white;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}
.wghs-flex .at__button-container a:after {
  display: inline-block;
  width: 18px;
  height: 10px;
  background-color: var(--white);
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg?v=1);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  /* position: absolute; */
  margin-left: 0.5rem;
  top: 0;
  content: "";
  transform: rotate(270deg);
}
.wghs-flex .at__button-container a[target=_blank]:after {
  mask-image: url(/wp-content/themes/wghs-2024/icons/icons_external-link.svg);
  transform: rotate(0deg);
  width: 18px;
  height: 14px;
}
.wghs-flex .white {
  background-color: #ffffff;
}
.wghs-flex .dark-grey {
  background-color: #4d4d4f;
  color: #ffffff;
}
.wghs-flex .cream {
  background-color: #fdf7ed;
}
.wghs-flex .pale-pink {
  background-color: #fbf3f4;
}
.wghs-flex .pale-grey {
  background-color: #e9e7e3;
}
.wghs-flex .lbc-flex-block {
  display: grid;
  /* place-content: center; */
  width: 100%;
  place-items: center;
}
.wghs-flex .lbc-flex-block .no-top {
  padding-top: 0 !important;
}
.wghs-flex .lbc-lay {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
}
.wghs-flex .lbc-lay .lbc-box {
  max-width: 1600px;
  padding: var(--outsidePad) var(--dblOutsidePad);
  width: 100%;
}
@media (max-width: 1023px) {
  .wghs-flex .lbc-lay .lbc-box {
    padding: var(--dblOutsidePad) var(--dblOutsidePad);
  }
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay .lbc-box {
    padding: 2rem var(--dblOutsidePad);
  }
}
.wghs-flex .lbc-lay .lbc-full-width-box {
  padding: var(--outsidePad) 0;
  width: 100%;
  display: grid;
  place-items: center;
}
@media (max-width: 1023px) {
  .wghs-flex .lbc-lay .lbc-full-width-box {
    padding: var(--dblOutsidePad) 0;
  }
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay .lbc-full-width-box {
    padding: 2rem 0;
  }
}
.wghs-flex .lbc-lay .lbc-full-width-box.no-pad {
  padding: 0;
}
.wghs-flex .lbc-lay.bg-cream-swan:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
  background-color: var(--darker-cream);
  mask-size: 25%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-cream-swan:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
    background-color: var(--darker-cream);
    mask-size: 60%;
    mask-position: 150% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-dark-grey-swan:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
  background-color: var(--darker-dark-grey);
  mask-size: 25%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-dark-grey-swan:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
    background-color: var(--darker-dark-grey);
    mask-size: 60%;
    mask-position: 150% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-grey-swan:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
  background-color: var(--darker-pale-grey);
  mask-size: 25%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-grey-swan:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
    background-color: var(--darker-pale-grey);
    mask-size: 60%;
    mask-position: 150% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-pink-swan:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
  background-color: var(--darker-pale-pink);
  mask-size: 25%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-pink-swan:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/swan.svg);
    background-color: var(--darker-pale-pink);
    mask-size: 60%;
    mask-position: 150% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-cream-ripples:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-cream);
  mask-size: 30%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-cream-ripples:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-cream);
    mask-size: 60%;
    mask-position: 110% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-cream-ripples:after {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-cream);
  mask-size: 30%;
  mask-position: -10% 30px;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-cream-ripples:after {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-cream);
    mask-size: 0%;
    mask-position: -10% 30px;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-dark-grey-ripples:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-dark-grey);
  mask-size: 30%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-dark-grey-ripples:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-dark-grey);
    mask-size: 60%;
    mask-position: 110% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-dark-grey-ripples:after {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-dark-grey);
  mask-size: 30%;
  mask-position: -10% 30px;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-dark-grey-ripples:after {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-dark-grey);
    mask-size: 0%;
    mask-position: -10% 30px;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-pink-ripples:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-pale-pink);
  mask-size: 30%;
  mask-position: 110% 100%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-pink-ripples:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-pale-pink);
    mask-size: 60%;
    mask-position: 110% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-pink-ripples:after {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-pale-pink);
  mask-size: 30%;
  mask-position: -10% 30px;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-pink-ripples:after {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-pale-pink);
    mask-size: 0%;
    mask-position: -10% 30px;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-grey-ripples:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-pale-grey);
  mask-size: 30%;
  mask-position: 110% 100%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-grey-ripples:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-pale-grey);
    mask-size: 60%;
    mask-position: 110% 90%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-grey-ripples:after {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
  background-color: var(--darker-pale-grey);
  mask-size: 30%;
  mask-position: -10% 30px;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-grey-ripples:after {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/ripples.svg);
    background-color: var(--darker-pale-grey);
    mask-size: 0%;
    mask-position: -10% 30px;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-grey-vshape:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg);
  background-color: var(--darker-pale-grey);
  mask-size: 30%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.wghs-flex .lbc-lay.bg-cream-vshape:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg);
  background-color: var(--darker-cream);
  mask-size: 30%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.wghs-flex .lbc-lay.bg-dark-grey-vshape:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg);
  background-color: var(--darker-dark-grey);
  mask-size: 30%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.wghs-flex .lbc-lay.bg-pale-pink-vshape:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg);
  background-color: var(--darker-pale-pink);
  mask-size: 30%;
  mask-position: 110% 90%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.wghs-flex .lbc-lay.bg-cream-wings:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
  background-color: var(--darker-cream);
  mask-size: 25%;
  mask-position: 100% 95%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-cream-wings:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
    background-color: var(--darker-cream);
    mask-size: 50%;
    mask-position: 100% 95%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-grey-wings:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
  background-color: var(--darker-pale-grey);
  mask-size: 25%;
  mask-position: 100% 95%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-grey-wings:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
    background-color: var(--darker-pale-grey);
    mask-size: 50%;
    mask-position: 100% 95%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-pale-pink-wings:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
  background-color: var(--darker-pale-pink);
  mask-size: 25%;
  mask-position: 100% 95%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-pale-pink-wings:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
    background-color: var(--darker-pale-pink);
    mask-size: 50%;
    mask-position: 100% 95%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .lbc-lay.bg-dark-grey-wings:before {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
  background-color: var(--darker-dark-grey);
  mask-size: 25%;
  mask-position: 100% 95%;
  mask-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .wghs-flex .lbc-lay.bg-dark-grey-wings:before {
    content: "";
    mask-image: url(/wp-content/themes/wghs-2024/backgrounds/wings.svg);
    background-color: var(--darker-dark-grey);
    mask-size: 50%;
    mask-position: 100% 95%;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.wghs-flex .underline-title h2 {
  font-size: clamp(2.188rem, 5.147vw - 0.129rem, 4.375rem);
  padding-bottom: 2rem;
}
.wghs-flex .no-underline-title h2 {
  font-size: clamp(2.188rem, 5.147vw - 0.129rem, 4.375rem);
  padding-bottom: 2rem;
}
.wghs-flex .underline-title h2:after {
  content: "";
  display: block;
  position: relative;
  width: 50px;
  border: 2px solid var(--red);
  margin-top: 8px;
}
.wghs-flex .at_itemThin {
  max-width: var(--itemThin) !important;
}
.wghs-flex .lbc-lay-text-block .lbc-box > .ltb-block {
  max-width: 1000px;
}
.wghs-flex .at_itemWide .lbc-box {
  max-width: 1600px;
}
.wghs-flex h6 a {
  display: inline-block;
}

:root {
  --admin-bar-height: var(--wp-admin--admin-bar--height, 0px);
  /*  */
  --garamond: "Garamond", Sans-serif;
  --avenir: AvenirNextRegular, sans-serif;
  --avenir-italic: AvenirNextItallic, sans-serif;
  /* Colors: */
  --red: #c42130;
  --dark-red: #981A25;
  --mike: "awesome";
  --dark-grey: #4d4d4f;
  --mid-grey: #7f7f81;
  --pale-grey: #e9e7e3;
  --cream: #fdf7ed;
  --dusky-pink: #f2dadd;
  --pale-pink: #fbf3f4;
  --white: #ffffff;
  --black: #000000;
  --text_grey: #4d4d4f;
  /* spacing */
  --outsidePad: 64px;
  --dblOutsidePad: calc(2 * var(--outsidePad));
  --fullWidth: calc(100vw - var(--dblOutsidePad));
  --singlePad: 24px;
  --gridGap: 32px;
  --sidebarPad: 16px;
  --totalGap: calc(23 * var(--gridGap));
  --borderRad: 10px;
  --nxBoxShadow: 0px 3px 6px #00000029;
  --zeroInset: 0px 0px 0px 0px;
  --itemThin: calc( 960px + 2 * var(--dblOutsidePad));
  /* menu sizings */
  --menuPadding: 10px;
  --menuTopBar: 70px;
  /* Fonts - Clamp */
  --h1FontClamp: clamp(2.375rem, 1.6364rem + 1.9697vw, 4rem);
  --h2FontClamp: clamp(1.75rem, 1.5227rem + 0.6061vw, 2.25rem);
  --h3FontClamp: clamp(1.375rem, 1.2045rem + 0.4545vw, 1.75rem);
  --h4FontClamp: clamp(1.125rem, 1.0682rem + 0.1515vw, 1.25rem);
  --h5FontClamp: clamp(0.9375rem, 0.9091rem + 0.0758vw, 1rem);
  --h6FontClamp: clamp(1rem, 1.5227rem + 0vw, 1.125rem);
  --pFontClamp: clamp(1rem, 0.9432rem + 0.1515vw, 1.125rem);
  --topHeaderHeight: 101.5px;
}

@media (max-width: 1440px) {
  :root {
    --outsidePad: 32px;
    --gridGap: 32px;
  }
}
@media (max-width: 1024px) {
  :root {
    --outsidePad: 16px;
  }
}
@media (max-width: 766px) {
  :root {
    --outsidePad: 8px;
    --gridGap: 8px;
  }
}
/* Element masters */
blockquote {
  font-size: var(--h3FontClamp);
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

hr.wghs__under {
  width: 50px;
  height: 5px;
  color: var(--red);
  background-color: var(--red);
  border-button: 1px solid var(--red);
  padding: 0;
  margin: 0.5rem 0;
}

/*Header for scrolling*/
.elementor-page-458 .lbcheader,
.elementor-page-4936 .lbcheader {
  background: #fff;
}

/* For alpine to remove pre load */
[x-cloak] {
  display: none !important;
}

.home__news {
  display: grid;
  width: 100%;
  max-width: 100%;
  height: 70vh;
  min-height: 700px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "a a b c" "a a d e";
  grid-gap: 1rem;
}

.home__news-item a {
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100%;
}

.hn__image {
  background-size: cover;
  background-repeat: no-repeat;
}

.hn__content {
  padding: 1rem;
  overflow: auto;
}

.hn__title h3 {
  font-family: var(--garamond);
  color: var(--dark-grey);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hn__published {
  font-family: var(--avenir-italic);
  font-style: italic;
}

.hn__link {
  margin: 20px 0;
  font-weight: bold;
  color: var(--text_grey);
}
.hn__link:after {
  display: inline-block;
  width: 20px;
  height: 10px;
  background-color: var(--text_grey);
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg?v=1);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  margin-left: 0.5rem;
  top: 0;
  content: "";
  transform: rotate(270deg);
}

@media (max-width: 979px) {
  .home__news {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a a" "b c" "d e";
  }
  .hn__image {
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 550px) {
  .home__news {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
}
#home__news-item-1 {
  grid-area: a;
}

#home__news-item-2 {
  grid-area: b;
}

#home__news-item-3 {
  grid-area: c;
}

#home__news-item-4 {
  grid-area: d;
}

#home__news-item-4 {
  grid-area: e;
}

#wghs-notices-container {
  position: absolute;
  height: 100%;
  width: 100%;
}
#wghs-notices-container #notices_board {
  width: 500px;
  max-width: 50%;
  overflow: hidden;
  transition: transform 0.8s;
  transform: translate(100%, 0);
  position: absolute;
  bottom: 0;
  right: 0;
}
#wghs-notices-container #notices_board.open {
  transform: translate(0%, 0);
}
@media (max-width: 767px) {
  #wghs-notices-container #notices_board {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: transform 0.8s;
    margin-right: -100%;
  }
}
#wghs-notices-container #notices_board #notices_board_inner {
  position: relative;
  padding: 24px;
  background-color: rgba(76, 77, 78, 0.9);
  color: #fff;
}
#wghs-notices-container #notices_board #notices_board_inner h2 {
  color: #ffffff;
}
#wghs-notices-container #notices_board #notices_board_inner #notices_content {
  color: #ffffff;
}
#wghs-notices-container #notices_board #notices_board_inner #notices_content a {
  color: #ffffff;
  font-weight: bold;
}
#wghs-notices-container #notices_board #notices_board_inner #nb_close_btn {
  position: absolute;
  right: 25px;
  top: 18px;
  width: 32px;
  height: 32px;
  transition: transform 1.8s;
}
@media (max-width: 767px) {
  #wghs-notices-container #notices_board #notices_board_inner #nb_close_btn {
    display: none;
  }
}
#wghs-notices-container #notices_board #notices_board_inner #nb_close_btn:before,
#wghs-notices-container #notices_board #notices_board_inner #nb_close_btn:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
#wghs-notices-container #notices_board #notices_board_inner #nb_close_btn:before {
  transform: rotate(45deg);
}
#wghs-notices-container #notices_board #notices_board_inner #nb_close_btn:after {
  transform: rotate(-45deg);
}
#wghs-notices-container #info_btn {
  z-index: 1000;
  opacity: 1;
  transition: opacity 1s linear;
  position: absolute;
  top: 50%;
  right: 24px;
}
@media (max-width: 767px) {
  #wghs-notices-container #info_btn {
    display: none;
  }
}
#wghs-notices-container #info_btn.hide-ib {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s linear;
}
#wghs-notices-container #info_btn .info_icon {
  cursor: pointer;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  mask-image: url(/wp-content/themes/wghs-2024/icons/icons_information.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transform: rotate(0deg);
}
#wghs-notices-container #info_btn .info_icon:hover {
  background-color: #7f7f81;
}
#wghs-notices-container #info_btn #nb_open_btn {
  cursor: pointer;
}
@media (max-width: 767px) {
  #wghs-notices-container {
    position: relative;
    top: 0;
    right: 0;
  }
}

#notices_mobile #notices_board {
  width: 100% !important;
  margin-left: 0px !important;
}

#notices_mobile #notices_board.open {
  transform: none;
}

#notices_mobile #nb_close_btn {
  display: none;
}

#at__promo {
  max-width: 100%;
  aspect-ratio: 8/3;
  --dark-grey: #4d4d4f;
  --mid-grey: #7f7f81;
  --pale-grey: #e9e7e3;
  --cream: #fdf7ed;
  --dusky-pink: #f2dadd;
  --pale-pink: #fbf3f4;
  --white: #ffffff;
  --black: #000000;
  --text_grey: #4d4d4f;
  --title-space: 6rem;
  --promo-text:20px;
  --promo-pad:3rem;
  --promo-heading-size:2rem;
  min-height: 600px;
}
@media (max-width: 767px) {
  #at__promo {
    min-height: 200vw;
  }
}
@media (max-width: 1300px) {
  #at__promo {
    --title-space: 4rem;
    --promo-text:18px;
    --promo-pad:2rem;
  }
}
@media (max-width: 1100px) {
  #at__promo {
    --title-space: 2.3rem;
    --promo-text:16px;
    --promo-pad:1rem;
    --promo-heading-size: 1.5rem;
  }
}
#at__promo .item-1 {
  --primarycolor:#4d4d4f;
  --secondarycolor:#FFF;
}
#at__promo .item-2 {
  --primarycolor:#FFF;
  --secondarycolor:#4d4d4f;
}
#at__promo .item-3 {
  --primarycolor:#fdf7ed;
  --secondarycolor:#4d4d4f;
}
#at__promo .item-4 {
  --primarycolor:#f2dadd;
  --secondarycolor:#4d4d4f;
}
#at__promo .promo-container {
  width: 100%;
  display: flex;
  gap: 1rem;
  height: 100%;
  height: -moz-available; /* WebKit-based browsers will ignore this. */
  height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
  height: fill-available;
}
@media (max-width: 1023px) {
  #at__promo .promo-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  #at__promo .promo-container {
    flex-direction: column;
  }
}
#at__promo .promo-container .item {
  cursor: pointer;
  visibility: visible;
  position: relative;
  opacity: 1;
  width: 100%;
  height: auto;
  flex: 1;
  scale: 1;
  overflow: hidden;
  transition: width 0.5s, flex-basis 0s, flex-grow 1s, flex-shrink 1s, scale 1s, opacity 1s ease-in;
  background-color: black;
  background-color: var(--primarycolor);
  color: var(--secondarycolor);
}
#at__promo .promo-container .item:hover {
  scale: 1.05;
}
@media (max-width: 1023px) {
  #at__promo .promo-container .item {
    flex: 1 0 calc(calc((100vw - 2 * var(--dblOutsidePad)) / 2) - 0.5rem);
  }
}
@media (max-width: 767px) {
  #at__promo .promo-container .item {
    flex: 1;
  }
}
#at__promo .promo-container .item .img-container {
  height: 100%;
  overflow: hidden;
  background-position-x: center;
  background-position-y: top;
  transition: width 1s, flex-basis 1s ease-in, flex-grow 1s, flex-shrink 1s, scale 1s, opacity 1s ease-in;
  opacity: 1;
  margin-right: var(--title-space);
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  #at__promo .promo-container .item .img-container {
    background-size: cover;
  }
}
#at__promo .promo-container .item .title-container {
  position: absolute;
  right: 0;
  left: calc(100% - var(--title-space));
  bottom: 0;
  top: 0;
  margin: 0;
  background-color: black;
  background-color: var(--primarycolor);
}
#at__promo .promo-container .item .title-container h2 {
  font-size: var(--promo-heading-size);
}
#at__promo .promo-container .item h2 {
  color: white;
  color: var(--secondarycolor);
  transform: rotate(180deg);
  margin: 0 auto;
  /* text-combine-upright: revert-layer; */
  writing-mode: vertical-rl;
  position: absolute;
  /* left: 0; */
  bottom: 0;
  line-height: var(--title-space);
  padding: 1rem 0;
}
#at__promo .promo-container .item .text {
  opacity: 0;
  line-height: 0;
  font-size: 0;
}
#at__promo .promo-container .item .text a {
  font-weight: bold;
}
#at__promo .promo-container.item-showing {
  grid-template-columns: auto repeat(3, var(--title-space));
}
@media (max-width: 1023px) {
  #at__promo .promo-container.item-showing {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media (max-width: 1023px) {
  #at__promo .promo-container.item-showing {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
#at__promo .promo-container.item-showing .expanded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  scale: 1;
  overflow: visible;
  height: 100%;
  width: 100%;
  flex: 1 1 100%;
  transition: width 1s, flex-basis 1s ease-in, flex-grow 1s, flex-shrink 1s, scale 1s, opacity 1s ease-in;
}
#at__promo .promo-container.item-showing .expanded:hover {
  scale: 1;
}
@media (max-width: 767px) {
  #at__promo .promo-container.item-showing .expanded {
    flex: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
#at__promo .promo-container.item-showing .expanded .img-container {
  grid-area: 2/1/3/2;
  margin-right: 0;
}
@media (max-width: 767px) {
  #at__promo .promo-container.item-showing .expanded .img-container {
    opacity: 0;
    scale: 0;
    transition: width 1s, flex-basis 1s ease-in, flex-grow 1s, flex-shrink 1s, scale 1s, opacity 1s ease-in;
  }
}
#at__promo .promo-container.item-showing .expanded .text {
  margin-top: auto;
  transition: width 1s, flex-basis 1s ease-in, flex-grow 1s, flex-shrink 1s, scale 1s, opacity 1s ease-in;
  opacity: 1;
  line-height: 1.3em;
  font-size: var(--promo-text);
  max-width: 900px;
  grid-area: 2/2/3/3;
  padding: var(--promo-pad) var(--title-space) var(--promo-pad) var(--promo-pad);
  overflow: hidden;
}
@media (max-width: 767px) {
  #at__promo .promo-container.item-showing .expanded .text {
    grid-area: 1/1/2/2;
  }
}
#at__promo .promo-container.item-showing .expanded .text a {
  display: flex;
  color: var(--secondarycolor);
  font-weight: bold;
  width: fit-content;
}
#at__promo .promo-container.item-showing .expanded .text a:hover {
  color: var(--red);
}
#at__promo .promo-container.item-showing .expanded .text a:hover::after {
  background-color: var(--red);
}
#at__promo .promo-container.item-showing .expanded .text a::after {
  width: 18px;
  height: var(--promo-text);
  background-color: var(--secondarycolor);
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg?v=1);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  /* position: absolute; */
  margin-left: 0.5rem;
  top: 0;
  content: "";
  transform: rotate(270deg);
}
#at__promo .promo-container.item-showing .hidden {
  flex: 0 1 0.001%;
  transition: width 1s, flex-basis 1s ease-in, flex-grow 1s, flex-shrink 1s, scale 1s, opacity 1s ease-in;
  width: var(--title-space);
  min-width: var(--title-space);
}
#at__promo .promo-container.item-showing .hidden .img-container {
  opacity: 0;
}
@media (max-width: 1023px) {
  #at__promo .promo-container.item-showing .hidden {
    height: 0;
    width: 0%;
    min-width: 0;
    scale: 0%;
    opacity: 0;
  }
}
@media (max-width: 767px) {
  #at__promo .promo-container.item-showing .hidden {
    flex: 1;
    height: 100%;
    width: 100%;
    min-width: 100;
    scale: 1;
    opacity: 1;
  }
  #at__promo .promo-container.item-showing .hidden .img-container {
    opacity: 1;
  }
}

.hero {
  width: 100%;
  height: calc(100vh - (var(--topHeaderHeight) + var(--admin-bar-height)));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: white;
  padding: var(--dblOutsidePad);
  z-index: 0;
}
.hero.hero-search-open {
  transition: all 300ms;
  align-items: center;
}
.hero.hero-search-open .hero-content {
  transform: translateY(-50%);
  transition: all 500ms;
}

.hero:before {
  content: "";
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 56%, #000000 74%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  padding: 20px 0;
  flex: 1;
  z-index: 2;
  transform: translateY(0);
  transition: all 300ms;
}

.hero h1 {
  font-family: var(--garamond);
  font-size: clamp(2.5rem, 0.5147rem + 4.4118vw, 4.375rem);
  margin-bottom: 10px;
}

.hero h3 {
  font-family: var(--avenir);
  font-size: 24px;
  margin-bottom: 30px;
}

.search-container {
  display: flex;
  align-items: center;
  width: 80vw;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
  background-color: white;
}

.search-container input[type=search] {
  flex-grow: 1;
  padding: 10px 15px 10px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  background: url(/wp-content/themes/wghs-2024/icons/icons_search.svg?V=1) no-repeat 10px center;
  background-size: 20px;
}

.search-container button {
  padding: 4px 10px;
  background-color: #c41230;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-right: 5px;
  border-radius: 30px;
}

.search-container button:hover {
  background-color: #a50f28;
}

.grid-teacher-block .teacher-item {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 30px;
}
.grid-teacher-block .teacher-item img.teacher-mail-icon {
  max-width: 20px;
}

.grid-teacher-block-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 32px;
}
.grid-teacher-block-images .tbi-item {
  display: flex;
  flex-direction: column;
}
.grid-teacher-block-images .tbi-item .tbi-name {
  padding: 5px 0;
}
.grid-teacher-block-images .tbi-item .tbi-name h3 {
  padding: 0;
  color: #c42130;
  font-size: var(--h3FontClamp);
}
.grid-teacher-block-images .tbi-item .tbi-bottom {
  justify-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
}
.grid-teacher-block-images .tbi-item .tbi-bottom img.teacher-mail-icon {
  max-width: 20px;
}
.grid-teacher-block-images .tbi-item .tbi-bottom .tbi-qualiification {
  padding-top: 10px;
  font-size: var(--h5FontClamp);
}

/* Accordion */
.lbc-lay-accordion .lfo-title-box {
  width: auto;
  text-align: center;
  padding: var(--dblOutsidePad) var(--dblOutsidePad) 0;
}
.lbc-lay-accordion .accordion {
  width: 100%;
  max-width: var(--itemThin);
  padding: 0 var(--outsidePad);
}
.lbc-lay-accordion .accordion .dd {
  display: none;
  background-color: #fff;
}
.lbc-lay-accordion .accordion > .dt {
  font-family: var(--garamond);
  font-size: var(--h2FontClamp);
  font-weight: 400;
  margin-top: 1rem;
  background-color: #fff;
}
.lbc-lay-accordion .accordion > .dt > a {
  display: block;
  position: relative;
  color: var(--dark-grey);
  text-decoration: none;
  padding: var(--singlePad);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.lbc-lay-accordion .accordion > .dt > a:hover {
  text-decoration: none;
  color: var(--red);
  cursor: pointer;
}
.lbc-lay-accordion .accordion > .dt > a:after {
  content: "";
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg?v=1);
  mask-size: contain;
  mask-repeat: no-repeat;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--outsidePad);
  speak: none;
  font-style: normal;
  background-color: var(--red);
  -webkit-font-smoothing: antialiased;
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.lbc-lay-accordion .accordion > .dt.active > a {
  color: var(--red);
  cursor: default;
}
.lbc-lay-accordion .accordion > .dt.active > a:after, .lbc-lay-accordion .accordion > .dt.active > a:hover:after {
  transform: rotateX(180deg) translateY(50%);
}
.lbc-lay-accordion .accordion > .dd {
  margin-bottom: 1rem;
  padding: 32px;
  line-height: 1.6;
}

/* Buttons Section */
.lbc-lay-buttons {
  max-width: var(--itemThin);
  margin: 0px auto;
}
.lbc-lay-buttons .lbc-button-item {
  display: flex;
}
.lbc-lay-buttons .lbc-button-item a {
  margin: 0 auto 0 0;
  line-height: 1.2em;
  text-transform: capitalize;
  display: inline-block;
  font-weight: 400;
  text-align: left;
  font-family: var(--garamond);
  color: var(--red);
  width: auto;
  padding: 12px 14px 12px 0;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 0;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
  line-height: 1;
}
.lbc-lay-buttons .lbc-button-item a:after {
  display: inline-block;
  width: 18px;
  height: 16px;
  background-color: var(--red);
  mask-image: url(/wp-content/themes/wghs-2024/backgrounds/vshape.svg?v=1);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  margin-left: 0.5rem;
  top: 0;
  content: "";
  transform: rotate(270deg);
}
.lbc-lay-buttons .lbc-button-item a:hover {
  color: #fff;
  background-color: var(--red);
  padding-left: 14px;
}
.lbc-lay-buttons .lbc-button-item a:hover:after {
  background-color: #fff;
}

.lbc-lay-buttons-grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.lbc-button-one-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.lbc-button-item.oc_btn-file a:hover:after {
  mask-image: url(/wp-content/themes/wghs-2024/icons/icons_download.svg);
  transform: rotate(0deg);
}

.lbc-button-item.oc_btn-link a:hover:after {
  mask-image: url(/wp-content/themes/wghs-2024/icons/icons_link.svg);
}

.at__lay-gallery {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.at__lay-gallery a {
  aspect-ratio: 9/6;
}
.at__lay-gallery a img {
  aspect-ratio: 9/6;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .at__lay-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 767px) {
  .at__lay-gallery {
    grid-template-columns: 1fr;
  }
}

.pswp button {
  background: none;
}

/* Text Block (master of text block with images) */
.lbc-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: var(--outsidePad);
}
@media (max-width: 400px) {
  .lbc-text-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lbc-lay.lbc-lay-text-block {
    padding: var(--outsidePad);
  }
}
@media (max-width: 1600px) {
  .lbc-lay.lbc-lay-text-block {
    place-items: start !important;
  }
}

/* text block with images */
.ltgimage-img {
  height: 0;
  width: 100%;
  overflow: hidden;
  padding-top: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ltgimage-text {
  padding: 20px 0 0;
}

.lfo-container {
  align-items: top;
}

.lfo-blue {
  background-color: var(--red);
  color: #fff;
  /* padding: 50px; */
}

.lfo-black {
  background-color: var(--black);
  color: #fff;
  /* padding: 50px; */
}

.lfo-beige {
  background-color: var(--dusky-pink);
  /* padding: 50px; */
}

@media (max-width: 767px) {
  .lfo-blue,
  .lfo-black,
  .lfo-beige {
    padding: 0px 20px;
  }
}
.lfo-blue *,
.lfo-black {
  color: #fff;
  border-color: #fff !important;
}

.lfo-blue h2,
.lfo-blue h3,
.lfo-blue h4,
.lfo-black h2,
.lfo-black h3,
.lfo-black h4 {
  color: #fff !important;
  border-color: #fff;
}

.lfo-blue p a,
.lfo-black p a {
  color: var(--dark-grey) !important;
}

.lfo-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*margin:50px 0;*/
  color: #fff;
  padding: 50px;
}

@media (max-width: 767px) {
  .lfo-image {
    padding: 0px 20px;
  }
}
.lbc-lay-full-out .lfo-title-box {
  width: 100%;
  padding: var(--dblOutsidePad) var(--dblOutsidePad) 0;
}
.lbc-lay-full-out .lfo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  grid-template-areas: "text image";
}
.lbc-lay-full-out .lfo-container .lfo-text {
  grid-area: text;
  padding: var(--dblOutsidePad);
}
.lbc-lay-full-out .lfo-container .lfo-img {
  width: 100%;
  height: 100%;
  display: flex;
  max-width: 50vw;
  grid-area: image;
}
.lbc-lay-full-out .lfo-container .lfo-img img {
  object-fit: cover;
}
@media (min-width: 1600px) {
  .lbc-lay-full-out .lfo-container .lfo-img {
    max-width: 40vw;
  }
}
@media (max-width: 1023px) {
  .lbc-lay-full-out .lfo-container .lfo-img {
    max-width: 100vw;
  }
}
.lbc-lay-full-out.lbc-img-left .lfo-container {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image text";
}
@media (max-width: 1023px) {
  .lbc-lay-full-out .lfo-container, .lbc-lay-full-out.lbc-img-left .lfo-container {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
    padding: 0;
  }
}

.lbc-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.lbc-video iframe,
.lbc-video object,
.lbc-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video Popup */
/* Individual video container */
.video-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

/* video poster frame or placeholder image */
.video-wrap .placeholder {
  width: 100%;
}

/* SVG play button container */
.video-wrap .play-btn {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-wrap .play-btn svg {
  transition: all 0.2s ease;
  fill: #fff;
}

.video-wrap .play-btn:hover svg,
.video-wrap .play-btn:focus svg {
  cursor: pointer;
  fill: #00bce1;
}

/* adjust your icon size, add different breakpoints as needed */
@media screen and (max-width: 600px) {
  .video-wrap .play-btn {
    width: 70px;
    height: 70px;
  }
}
.at-video-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 80vw;
  --vidWidth: calc(70vw - 40px);
  height: 45vw;
  /*   max-height:80vh; */
  margin: 20px auto;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
  top: 20px;
  right: 20px;
}

.at__related-posts {
  display: flex;
  --title-space: 6rem;
  --promo-pad:3rem;
  --promo-heading-size:2rem;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .at__related-posts {
    --title-space:2.5rem;
    --promo-pad:2.2rem;
    --promo-heading-size:1.5rem;
    flex-direction: column;
  }
}
.at__related-posts .at__related-post {
  aspect-ratio: 3/2;
  --primarycolor:#4d4d4f;
  --secondarycolor:#FFF;
  width: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
  height: auto;
  flex: 1;
  transition: all 1s;
}
.at__related-posts .at__related-post:hover {
  filter: brightness(0.6);
}
.at__related-posts .at__related-post:first-of-type {
  --primarycolor:var(--red);
  --secondarycolor:#FFF;
}
@media (max-width: 1023px) {
  .at__related-posts .at__related-post {
    aspect-ratio: 1;
  }
}
@media (max-width: 767px) {
  .at__related-posts .at__related-post {
    aspect-ratio: 3/2;
  }
}
.at__related-posts .at__related-post .img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
}
.at__related-posts .at__related-post .img-container img {
  object-fit: cover;
}
.at__related-posts .at__related-post .title-container {
  position: absolute;
  right: 0;
  left: calc(100% - var(--title-space));
  bottom: 0;
  top: 0;
  margin: 0;
  background-color: black;
  background-color: var(--primarycolor);
}
.at__related-posts .at__related-post .title-container h2 {
  font-size: var(--promo-heading-size);
}
.at__related-posts .at__related-post h2 {
  color: white;
  color: var(--secondarycolor);
  transform: rotate(180deg);
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: 100%;
  /* text-combine-upright: revert-layer; */
  writing-mode: vertical-rl;
  position: absolute;
  /* left: 0; */
  bottom: 0;
  line-height: var(--title-space);
  padding: 1rem 0;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10; /* always overlap slide content */
  pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

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