*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --gap: 1rem;
  --page-padding: var(--gap);
  --black: #000;
  --font-stack-dafault: "GT Standard", sans-serif;
  --font-size-xxlarge: 9rem;
  --font-size-xlarge: 3.125rem;
  --font-size-large: 2.1875rem;
  --font-size-medium: 1.625rem;
  --font-size-small: 1rem;
  --navbar-height: calc( var(--font-size-medium) + 1*var(--gap) );
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  width: 100%;
  padding: var(--gap);
}
.grid.no-padding {
  padding: 0;
}
.grid .col-1 {
  grid-column-start: 1;
}
.grid .col-2 {
  grid-column-start: 2;
}
.grid .col-3 {
  grid-column-start: 3;
}
.grid .col-4 {
  grid-column-start: 4;
}
.grid .span-1 {
  grid-column-end: span 1;
}
.grid .span-2 {
  grid-column-end: span 2;
}
.grid .span-3 {
  grid-column-end: span 3;
}
.grid .span-4 {
  grid-column-end: span 4;
}
@media only screen and (max-width: 767.98px) {
  .grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .grid .col-2 {
    grid-column-start: 1;
  }
  .grid .col-3 {
    grid-column-start: 1;
  }
  .grid .col-4 {
    grid-column-start: 1;
  }
  .grid .span-2 {
    grid-column-end: span 1;
  }
  .grid .span-3 {
    grid-column-end: span 1;
  }
  .grid .span-4 {
    grid-column-end: span 1;
  }
}

.text-right {
  text-align: right;
}

.text-large {
  font-size: var(--font-size-large);
  line-height: 1.1;
  font-variation-settings: "wght" 700;
}

.text-xxlarge {
  font-size: var(--font-size-large);
  line-height: 1.1;
  font-variation-settings: "wght" 700;
}

.text-medium {
  font-size: var(--font-size-medium);
  font-variation-settings: "wght" 400;
}

.visually-hidden {
  visibility: hidden;
  height: 0;
  width: 0;
  overlay: hidden;
}

.pool-logo {
  font-size: 28vw;
  margin-left: -0.05em;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-variation-settings: "wght" 900;
}

@font-face {
  font-family: "GT Standard";
  src: url("../fonts/GT-Standard-Standard-VF.woff2") format("woff2");
}
.navigation {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  font-size: var(--font-size-medium);
  line-height: 1;
  font-variation-settings: "wght" 700, "opsz" 35;
  text-transform: uppercase;
}
.navigation a {
  text-decoration: none;
}
.navigation a:hover {
  font-style: italic;
}
@media only screen and (max-width: 767.98px) {
  .navigation {
    display: flex;
    flex-direction: row;
  }
}

.admin-bar .navigation {
  top: 32px;
}

.pool-text[data-expanded=false] .expandable-text {
  display: block;
  max-height: 0;
  overflow: hidden;
}

.pool-text[data-expanded=true] .expandable-text {
  max-height: unset;
  font-size: var(--font-size-medium);
}
.pool-text[data-expanded=true] .expandable-text h2 {
  font-size: var(--font-size-small);
  margin-top: 1em;
  margin-bottom: 0;
}

.image-wrapper {
  width: 100%;
  padding: calc(2 * var(--gap)) calc(0 * var(--gap));
  object-fit: contain;
  overflow: hidden;
  margin: 2rem 0;
}
.image-wrapper img {
  height: auto;
  width: auto;
  max-width: calc(100vw - 2 * var(--gap));
  max-height: calc(100vh - 2 * var(--gap));
}
.image-wrapper.size-full img {
  width: 100%;
  height: auto;
}

.wp-block-image.size-large,
.wp-block-image.size-full,
.pool-slideshow .splide__slide {
  width: 100%;
  padding: calc(2 * var(--gap)) calc(0 * var(--gap));
  object-fit: contain;
  overflow: hidden;
  margin: 2rem 0;
}
.wp-block-image.size-large img,
.wp-block-image.size-full img,
.pool-slideshow .splide__slide img {
  height: auto;
  width: auto;
  max-width: calc(100vw - 2 * var(--gap));
  max-height: calc(100vh - 5 * var(--gap));
}

.wp-block-image.size-medium {
  width: 100%;
  padding: calc(2 * var(--gap)) calc(0 * var(--gap));
  object-fit: contain;
  overflow: hidden;
  margin: 2rem 0;
}
.wp-block-image.size-medium img {
  height: auto;
  width: auto;
  max-width: calc(100vw - 2 * var(--gap));
  max-height: calc(66.6vh - 2 * var(--gap));
}

.wp-block-gallery.has-nested-images {
  width: 100%;
  padding: calc(2 * var(--gap)) calc(0 * var(--gap));
  object-fit: contain;
  overflow: hidden;
  margin: 2rem 0;
  display: block;
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
  display: inline;
  width: auto !important;
}
.wp-block-gallery.has-nested-images figure.wp-block-image img {
  display: inline !important;
  height: auto !important;
  width: auto !important;
  max-width: calc(100vw - 2 * var(--gap)) !important;
  max-height: calc(100vh - 5 * var(--gap)) !important;
}

.splide__arrow {
  top: calc(100% - 0.5em);
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: unset;
  left: 3em;
}

.single-pool_projects main {
  padding-top: 5rem;
  padding-bottom: 0;
}
.single-pool_projects .pre-title {
  font-size: var(--font-size-medium);
}
.single-pool_projects .project-title {
  font-weight: bold;
  font-size: var(--font-size-xxlarge);
  margin-top: 0;
}
.single-pool_projects .next-post-link {
  display: block;
  max-height: 75vh;
  overflow: hidden;
  border-top: 1px solid var(--black);
  padding-top: 5rem;
  margin-top: 10rem;
}

.team-video-wrapper {
  margin: 4em 0;
}
@media only screen and (max-width: 767.98px) {
  .team-video-wrapper {
    display: block;
  }
}
.team-video-wrapper .video-wrapper {
  position: sticky;
  top: 3.6em;
  grid-column-end: span 3;
  margin-bottom: 4em;
}
.team-video-wrapper .video-wrapper:after {
  display: block;
  position: absolute;
  bottom: -4em;
  content: " ";
  width: 100%;
  height: 4em;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%, rgb(255, 255, 255) 100%);
}
.team-video-wrapper #vimeo-player {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  background: #aaa;
}
.team-video-wrapper #vimeo-player.loaded iframe {
  opacity: 1;
}
.team-video-wrapper iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s;
  opacity: 0;
}
.team-video-wrapper #video-caption {
  position: absolute;
  right: 0;
  bottom: -1.5em;
  z-index: 100;
  display: none;
}
@media only screen and (max-width: 767.98px) {
  .team-video-wrapper #video-caption {
    display: block;
  }
}
.team-video-wrapper .team-list {
  padding-right: 1em;
}
.team-video-wrapper .team-list li {
  cursor: pointer;
  margin-bottom: 0.25em;
  color: #999;
}
.team-video-wrapper .team-list li:hover {
  color: #000;
}
.team-video-wrapper .team-list li.active {
  color: #000;
}
.team-video-wrapper .team-list li.active:before {
  content: " ";
  display: inline-block;
  border-radius: 100%;
  width: 0.72em;
  height: 0.72em;
  margin-right: 0.25em;
  background: black;
}

html {
  font-size: 16px;
}
@media only screen and (max-width: 767.98px) {
  html {
    font-size: 12px;
  }
}

body {
  font-family: var(--font-stack-dafault);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--black);
  padding-top: var(--navbar-height);
}

strong, b {
  font-weight: bold;
}

main {
  padding: var(--page-padding);
  min-height: 100vh;
}
main p {
  max-width: 70rem;
}
main p + p {
  margin-top: 1em;
}
main p.has-large-font-size {
  font-size: var(--font-size-large) !important;
}
main p.has-medium-font-size {
  font-size: var(--font-size-medium) !important;
}

a {
  color: var(--black);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

h1, h2, h3, h4 {
  font-weight: 500;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

h1 {
  font-size: 7em;
}

.project-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--gap);
  width: 100%;
}
.project-grid a {
  text-decoration: none;
}
.project-grid .project-grid-entry {
  width: calc(50% - var(--gap) / 2);
}
.project-grid .project-grid-entry .project-thumbnail {
  object-fit: cover;
  overflow: hidden;
  object-position: center center;
  aspect-ratio: 3/2;
}
.project-grid .project-grid-entry .project-thumbnail img {
  width: 100%;
  height: auto;
}
.project-grid .project-grid-entry .project-info {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.project-grid .project-grid-entry .project-info .project-title {
  font-weight: bold;
  font-size: var(--font-size-medium);
  width: 50%;
}
.project-grid .project-grid-entry .project-info .project-subline {
  font-size: var(--font-size-small);
  opacity: 0;
  padding-top: 0.2em;
  transition: opacity 0.25s;
}
.project-grid .project-grid-entry:hover .project-subline {
  opacity: 1;
}

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