.preload * {
  transition: none !important;
}

* {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

.wf-loading .tk-fade {
  opacity: 0;
  transition: opacity 1s;
}

.wf-active .tk-fade {
  opacity: 1;
}

body {
  color: #174153;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-tap-highlight-color: #0000;
  background: #faf8f5;
  width: 100%;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

body.graybg {
  background-color: #f7f7f7;
}

body.noscroll {
  height: 100vh;
  overflow: hidden;
}

body.masonry {
  overflow-y: scroll;
}

a {
  color: inherit;
  text-decoration: underline;
}

.button_wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  display: flex;
}

a.button {
  color: #174153;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px 50px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
  position: relative;
}

a.button:before {
  content: "";
  clip-path: inset(0% 100% 0% 0%);
  border-top: 2px solid #f35a55;
  border-left: 2px solid #f35a55;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  transition: clip-path .3s;
  position: absolute;
  top: -1px;
  left: -1px;
}

a.button:after {
  content: "";
  clip-path: inset(0% 0% 0% 100%);
  border-bottom: 2px solid #f35a55;
  border-right: 2px solid #f35a55;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  transition: clip-path .3s;
  position: absolute;
  top: -1px;
  left: -1px;
}

a.button:hover {
  color: #f35a55;
}

a.button:hover:before, a.button:hover:after {
  clip-path: inset(0);
}

.breadcrumb {
  width: 100%;
  margin-bottom: 2rem;
  display: block;
}

.breadcrumb a {
  text-transform: uppercase;
  letter-spacing: .07rem;
  justify-content: flex-start;
  align-items: center;
  font-family: p22-underground, sans-serif;
  font-size: .7rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.breadcrumb a svg {
  margin-right: 6px;
  transform: translateY(-1px);
}

h1, h2, h3 {
  font-family: eloquent-jf-pro, serif;
  font-weight: 400;
}

strong, b {
  font-weight: 700;
}

h1, h2, h3, p {
  margin-bottom: 20px;
  line-height: 1.4;
}

h1:last-child, h2:last-child, h3:last-child, p:last-child {
  margin-bottom: 0;
}

span.light {
  font-weight: 400;
}

span.highlight {
  color: #f35a55;
}

em, i {
  font-style: italic;
}

label, input, textarea, select {
  font-size: 16px;
  display: block;
}

input[type="checkbox"], input[type="radio"] {
  display: inline-block;
}

input, textarea {
  color: #000;
  box-sizing: border-box;
  appearance: none;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 0;
  height: 34px;
  padding: 0 10px;
}

input[type="submit"] {
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0 10px;
}

label {
  padding-bottom: 5px;
}

#cursor {
  z-index: 301;
  pointer-events: none;
  mix-blend-mode: multiply;
  background: #f15856;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: transform .2s;
  position: fixed;
  transform: translate(-50%, -50%)scale(.5);
}

#cursor.watch:before {
  opacity: 1;
}

#cursor.link {
  transform: translate(-50%, -50%)scale(1);
}

@media (width <= 1023px) {
  #cursor {
    display: none !important;
  }
}

.page_intro {
  text-align: center;
  width: 90%;
  max-width: 750px;
  margin: 0 auto 2rem;
  position: relative;
}

.page_intro h1 {
  font-size: 2rem;
}

.page_intro h1 span.light {
  font-weight: 400;
}

.page_intro h2 {
  font-size: 1.7rem;
}

.cover {
  opacity: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cover.loaded {
  opacity: 1;
  transition: opacity .3s;
}

.loadme, .loadmeview, .bg-loadme {
  opacity: 0;
}

.loadme.loaded, .loadmeview.loaded, .bg-loadme.loaded {
  opacity: 1;
  transition: opacity .3s;
}

.openOverlay {
  cursor: pointer;
}

.cell .mediawrap {
  width: 100%;
  height: 0;
  position: relative;
}

.cell .mediawrap img.photo, .cell .mediawrap .vidhold, .cell .mediawrap video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.cell .mediawrap .vidhold {
  opacity: 0;
  transition: opacity .3s;
}

.cell.playing .vidhold {
  opacity: 1;
}

.cell.full_playing .mediawrap {
  opacity: 0;
}

.cell svg.play {
  opacity: 1;
  width: 75px;
  transition: opacity .5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cell svg.play * {
  stroke: #fff;
}

@media (width <= 767px) {
  .cell svg.play {
    width: 50px;
  }
}

.resize-image {
  overflow: hidden;
}

.social ul li {
  opacity: 0;
  transition: opacity .3s;
}

.social ul li.loaded {
  opacity: 1;
}

.text-block img, .text-block video {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-block .cols {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.text-block .cols .col {
  display: block;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

p.large {
  font-size: 1.5rem;
}

main {
  z-index: 1;
  opacity: 1;
  pointer-events: all;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

main article {
  min-height: calc(100vh - 127px);
}

main #content:before {
  content: "";
  height: 100px;
  display: block;
}

article.home .masongrid {
  min-height: 100vh;
}

@media (width <= 767px) {
  main #content:before {
    height: 120px;
  }
}

header {
  z-index: 100;
  background: inherit;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100px;
  transition: height .3s, background-color .3s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

header .lines {
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: 4px;
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
}

header .lines .line {
  background-color: #bd2558;
  width: auto;
  height: 100%;
}

header .lines .line:nth-child(2) {
  background-color: #174153;
}

header .lines .line:nth-child(3) {
  background-color: #286375;
}

header .lines .line:nth-child(4) {
  background-color: #f35a55;
}

header .lines .line:nth-child(5) {
  background-color: #174153;
}

header .lines .line:nth-child(6) {
  background-color: #bd2558;
}

header .inner {
  z-index: 15;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

header .inner .logo {
  width: 120px;
  height: auto;
  margin-left: 5%;
  position: relative;
}

header .inner .logo img, header .inner .logo svg {
  width: 100%;
  height: auto;
  display: block;
}

header .inner .logo img.mobile, header .inner .logo svg.mobile {
  display: none;
}

header .inner .logo img *, header .inner .logo svg * {
  fill: #000;
}

header .inner .menuBtn {
  cursor: pointer;
  z-index: 3;
  display: none;
  position: absolute;
  right: 5%;
}

header .inner .menuBtn div {
  width: 30px;
  height: 22px;
  position: relative;
}

header .inner .menuBtn div .line {
  opacity: 1;
  background-color: #000;
  width: 100%;
  height: 2px;
  transition-property: background-color, opacity, transform, top;
  transition-duration: .2s, .1s, .3s, .3s;
  transition-delay: 0s, 0s, 0s, 0s;
  display: block;
  position: absolute;
  right: 0;
  transform: rotate(0);
}

header .inner .menuBtn div .line:first-child {
  top: 0;
}

header .inner .menuBtn div .line:nth-child(2) {
  top: 10px;
}

header .inner .menuBtn div .line:nth-child(3) {
  top: 20px;
}

header nav {
  z-index: 16;
  text-align: right;
  margin-left: auto;
  margin-right: 5%;
  position: relative;
}

header nav ul.primary {
  height: 100%;
  list-style-type: none;
  display: flex;
}

header nav ul.primary li {
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  transition: background-color .3s;
  display: flex;
  position: relative;
}

header nav ul.primary li:last-child {
  margin-right: 0;
}

header nav ul.primary li a {
  letter-spacing: .07rem;
  text-transform: uppercase;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  font-family: p22-underground, sans-serif;
  font-size: .7rem;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

header nav ul.primary li a.nolink {
  pointer-events: none;
}

header nav ul.primary li a span {
  padding: 0 30px 12px;
}

header nav ul.primary li a.pageOn {
  color: #f35a55;
}

header nav ul.primary li svg {
  margin-left: 3px;
  transform: translateY(-1px);
}

header nav ul.primary li.itemOn a, header nav ul.primary li:hover a {
  color: #f35a55;
}

header nav ul.subs {
  color: #fff;
  pointer-events: none;
  text-align: left;
  columns: 2;
  z-index: -1;
  opacity: 0;
  background-color: #174153f2;
  width: 250px;
  height: auto;
  padding: 40px;
  font-weight: 400;
  transition: opacity .3s;
  display: none;
  position: absolute;
  top: 55px;
}

header nav ul.subs li {
  text-align: left;
  height: auto;
  display: block;
  border-top: 0 !important;
}

header nav ul.subs li:hover {
  background-color: #0000 !important;
}

header nav ul.subs li a {
  color: #fff;
  opacity: 1;
  text-transform: unset;
  line-height: 2.2;
  transition: opacity .2s;
  display: block;
}

header nav ul.subs li a:hover {
  opacity: .7;
}

header .secondary_nav {
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: 90%;
  left: 0;
}

header .secondary_nav.open {
  opacity: 1;
  pointer-events: all;
}

header .secondary_nav .triangle {
  position: absolute;
  top: -15px;
  right: 150px;
}

header .secondary_nav .wrapper {
  color: #fff;
  background-color: #174153f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

header .secondary_nav .wrapper .list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: none;
}

header .secondary_nav .wrapper .list.open {
  display: flex;
}

header .secondary_nav .wrapper .list ul {
  columns: 5;
  column-gap: 7rem;
  margin: 0 auto;
  list-style-type: none;
}

header .secondary_nav .wrapper .list ul.three_col {
  columns: 3;
}

header .secondary_nav .wrapper .list ul li a {
  letter-spacing: .03rem;
  padding: .5rem 0;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

header .secondary_nav .wrapper .list ul li a:hover {
  color: #f35a55;
}

.homepage header {
  background: none;
}

.scroll_down header {
  background-color: #faf8f5e6;
  height: 70px;
}

.textpage header {
  background: none;
}

.textpage .inner .logo img {
  filter: brightness(0) invert();
}

.textpage nav ul.primary li:nth-child(4n) {
  background-color: #0000 !important;
}

.textpage nav ul.primary li a {
  color: #fff;
}

.menuOn header .inner .menuBtn .line {
  transition-property: background-color, opacity, transform, top;
  transition-duration: .2s, .1s, .3s, .3s;
  transition-delay: 0s, 0s, 0s, 0s;
  background-color: #000 !important;
}

.menuOn header .inner .menuBtn .line:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.menuOn header .inner .menuBtn .line:nth-child(2) {
  opacity: 0;
  transition: opacity .1s;
}

.menuOn header .inner .menuBtn .line:nth-child(3) {
  top: 8px;
  transform: rotate(135deg);
}

.menuOn header nav.takeover {
  opacity: 1;
  pointer-events: all;
}

@media (width <= 1040px) {
  header {
    border-bottom: 1px solid #474747;
  }

  header .inner .logo img.desktop, header .inner .logo svg.desktop {
    display: none;
  }

  header .inner .logo img.mobile, header .inner .logo svg.mobile, header .inner .menuBtn {
    display: block;
  }

  header nav {
    background-color: #fff;
    width: 100%;
    height: auto;
    display: none;
    position: absolute;
    top: 101px;
    left: 0;
  }

  header nav ul {
    flex-direction: column;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0 40px;
  }

  header nav ul.primary li {
    border-top: 0;
    border-bottom: 2px solid #163f52;
    flex-direction: column;
    padding-top: 20px;
    position: relative;
  }

  header nav ul.primary li svg {
    display: none;
  }

  header nav ul.primary li:hover {
    background-color: #0000;
  }

  header nav ul.primary li:hover a {
    color: #000;
  }

  header nav ul.primary li:hover ul.subs {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    display: none;
  }

  header nav ul.primary li:nth-child(2n) {
    border-top: 0 solid #bc2357;
    border-bottom: 2px solid #bc2357;
  }

  header nav ul.primary li:nth-child(2n) ul.subs {
    background-color: #bc2357;
  }

  header nav ul.primary li:nth-child(2n).itemOn, header nav ul.primary li:nth-child(2n):hover {
    background-color: #0000;
  }

  header nav ul.primary li:nth-child(3n) {
    border-top: 0 solid #f15856;
    border-bottom: 2px solid #f15856;
  }

  header nav ul.primary li:nth-child(3n).itemOn, header nav ul.primary li:nth-child(3n):hover {
    background-color: #0000;
  }

  header nav ul.primary li:nth-child(4n) {
    border-top: 0 solid #276174;
    border-bottom: 2px solid #276174;
  }

  header nav ul.primary li:nth-child(4n).itemOn, header nav ul.primary li:nth-child(4n):hover {
    background-color: #0000;
  }

  header nav ul.primary li a {
    z-index: 11;
    justify-content: flex-start;
    padding-bottom: 10px;
    padding-left: 20px;
    font-size: 1.2rem;
    transition: color .2s;
    position: relative;
  }

  header nav ul.primary li a.pageOn {
    color: #000;
  }

  header nav ul.primary li a.nolink {
    pointer-events: all;
  }

  header nav ul.primary li a span {
    padding: 0 0 10px 10px;
  }

  header nav ul.primary li ul.subs {
    z-index: 10;
    width: calc(100% - 20px);
    margin-top: -43px;
    padding: 60px 10px 20px;
    display: none;
    position: relative;
    top: 0;
    left: 0;
  }

  header nav ul.primary li ul.subs li {
    border: 0 !important;
  }

  header nav ul.primary li ul.subs li a {
    padding: 0;
    font-size: .9rem;
  }

  header nav ul.primary li ul.subs li a:after {
    display: none;
  }

  header nav ul.primary li.subTrigger a:after {
    content: url("chevron.c6c405f8.svg");
    filter: invert(100);
    transition: filter .2s;
    position: absolute;
    top: 0;
    right: 20px;
  }

  header nav ul.primary li.open a {
    color: #fff;
  }

  header nav ul.primary li.open a:after {
    filter: invert(0);
    rotate: 180deg;
  }

  header nav ul.primary li.open ul.subs {
    opacity: 1;
    pointer-events: all;
    display: block;
  }

  header nav ul.primary li.open ul.subs li {
    padding: 0;
  }

  .homepage header {
    background-color: #fff;
  }

  .homepage.white_text header .inner .logo {
    filter: unset;
  }

  .homepage.white_text header nav ul.primary li a {
    color: #000;
  }

  .homepage.white_text header nav ul.primary li.subTrigger.open a, .homepage.white_text header nav ul.primary li ul.subs li a {
    color: #fff;
  }

  .textpage header {
    border-bottom: 0;
  }

  .textpage header nav ul.primary li a {
    color: #000;
  }

  .textpage header nav ul.primary li.open a, .textpage header nav ul.primary ul.subs li a {
    color: #fff;
  }
}

.white_text header .inner .logo {
  filter: brightness(0) invert();
}

.white_text header nav ul.primary li a {
  color: #fff;
}

.menuOn header nav {
  display: block;
}

.menuOn.textpage header {
  background-color: #fff;
}

.menuOn.textpage header .inner .logo {
  filter: invert(100);
}

footer {
  z-index: 5;
  text-align: center;
  color: #000;
  font-size: .8rem;
  position: relative;
}

footer .col.newsletter {
  background-color: #ebebeb;
}

footer .inner {
  text-align: center;
  width: 100%;
  margin: auto;
  padding: 0;
}

footer .inner .grid {
  grid-template-columns: 1fr 1fr 1fr;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
}

footer .inner .grid .logos {
  justify-content: flex-start;
  justify-self: flex-start;
  align-items: flex-start;
  display: flex;
}

footer .inner .grid .logos img {
  width: auto;
  height: 40px;
  margin-right: 1rem;
  display: block;
}

footer .inner .grid .logos img:last-child {
  margin-right: 0;
}

footer .inner .grid .credit {
  justify-self: flex-end;
}

footer .inner .grid .credit a {
  text-decoration: none;
}

footer .inner .columns {
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

footer .inner .columns .col {
  width: 100%;
  display: block;
}

footer .inner .columns .col.info {
  padding: 1rem 0;
}

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

footer .inner .social {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

footer .inner .social ul {
  align-items: center;
  display: flex;
}

footer .inner .social ul li {
  margin: 0 10px;
}

footer .inner .social ul li svg {
  width: auto;
  height: 20px;
}

footer .inner .social ul li svg * {
  stroke: none;
  fill: #000;
}

.textpage footer {
  color: #fff;
  border-top: 1px solid #fff;
}

@media (width <= 767px) {
  footer .inner .grid {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }

  footer .inner .grid .logos, footer .inner .grid .info, footer .inner .grid .credit {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
  }

  footer .inner .grid .logos {
    flex-direction: row;
  }

  footer .inner .grid .credit {
    margin-bottom: 0;
  }

  footer .inner .columns {
    flex-direction: column;
  }

  footer .inner .columns .col {
    text-align: center;
    border-top: 1px solid #163f52;
    order: 2;
    width: 90%;
    margin: 0 auto;
    padding: 30px 5%;
  }

  footer .inner .columns .col.newsletter {
    order: 1;
    width: 90%;
    margin: 0 auto;
    padding: 30px 5%;
  }

  footer .inner .columns .col.newsletter h3 {
    font-size: 1.4rem;
  }

  footer .inner p {
    line-height: 2;
  }

  footer .inner p .desktopOnly {
    display: none;
  }

  footer .inner p a:first-child, footer .inner p .mobilebreak {
    width: 100%;
    display: block;
  }
}

#splash {
  z-index: 300;
  opacity: 1;
  pointer-events: none;
  background-color: #276174;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  transition: opacity 1s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

#splash.hide {
  opacity: 0;
}

#splash .logo {
  z-index: 10;
  background: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

#splash .logo svg {
  width: 90%;
  max-width: 325px;
  height: auto;
  display: block;
}

#splash .bg1, #splash .bg2 {
  z-index: 1;
  width: 200vw;
  height: 100%;
  transition: transform 1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-150%);
}

#splash .bg1.show, #splash .bg2.show {
  transform: translateX(0);
}

#splash .bg1 svg, #splash .bg2 svg {
  width: auto;
  height: 100%;
  display: block;
}

#splash .bg2 {
  transform: translateX(-150%);
}

@media (width <= 767px) {
  #splash .bg1 svg, #splash .bg2 svg {
    width: 100%;
    height: 100%;
  }

  #splash .bg2 svg {
    width: 110%;
  }
}

.password_content {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 450px);
  display: flex;
}

.password_content p.status {
  color: #bf2f60;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}

.password_content form {
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

.password_content form .title {
  margin-bottom: 1rem;
}

.password_content form .title h1 {
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.password_content form .title p {
  font-size: 1rem;
  font-weight: 400;
}

.password_content form .row {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.password_content form input {
  border: 1px solid #ccc;
  width: calc(100% - 55px);
  height: auto;
  margin-right: 10px;
  padding: 15px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.password_content form input::placeholder {
  font-family: neue-haas-grotesk-display, sans-serif;
}

.password_content form input[type="submit"] {
  color: #fff;
  cursor: pointer;
  background-color: #bf2f60;
  border: 0;
  margin-top: 10px;
}

.password_content form svg {
  cursor: pointer;
  width: 45px;
  height: auto;
  transition: transform .2s;
  transform: scale(1);
}

.password_content form svg:hover {
  transform: scale(.95);
}

.roster {
  width: 100%;
  margin-top: 100px;
  position: relative;
}

.roster .cell {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}

.roster .cell a {
  text-decoration: none;
}

.roster .cell .info {
  text-align: center;
  width: 90%;
  margin: 10px auto 0;
  display: block;
}

.roster .cell .info h2 {
  margin: 0 auto;
  font-size: 1.3rem;
}

.artist-header, .artist-secondary-header {
  color: #222f3b;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  width: 90%;
  margin: 0 auto 22px;
  display: flex;
}

.artist-header h1, .artist-secondary-header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: .7;
  position: relative;
}

.artist-header .activePage, .artist-secondary-header .activePage {
  display: none;
}

.artist-header nav ul, .artist-secondary-header nav ul {
  flex-wrap: wrap;
  margin-left: 30px;
  list-style-type: none;
  display: flex;
}

.artist-header nav ul li, .artist-secondary-header nav ul li {
  margin: 0 1rem;
}

.artist-header nav ul li a, .artist-secondary-header nav ul li a {
  text-transform: uppercase;
  letter-spacing: .07rem;
  font-family: p22-underground, sans-serif;
  font-size: .8rem;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}

.artist-header nav ul li a.pageOn, .artist-header nav ul li a:hover, .artist-secondary-header nav ul li a.pageOn, .artist-secondary-header nav ul li a:hover {
  color: #f35a55;
  text-decoration: underline;
}

.artist-header .view-toggle, .artist-secondary-header .view-toggle {
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 0 auto;
  display: flex;
}

.artist-header .view-toggle a:last-child, .artist-secondary-header .view-toggle a:last-child {
  margin-left: 10px;
}

.intro-text {
  width: 90%;
  margin: 2rem auto 0;
  position: relative;
}

.intro-text h1, .intro-text h2, .intro-text h3 {
  margin-bottom: .5rem;
}

.intro-text h2 {
  font-size: 1.8rem;
}

@media (width <= 767px) {
  .intro-text h2 {
    font-size: 1.5rem;
  }
}

.artist-secondary-header {
  z-index: 100;
  opacity: 0;
  background-color: #ededed;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  align-items: center;
  width: 100%;
  margin: 0;
  transition: transform .5s, opacity .5s;
  position: fixed;
  top: 70px;
  left: 0;
  transform: translateY(-100px);
}

.artist-secondary-header h2 {
  color: #faf8f5;
  background-color: #bd2558;
  margin-bottom: 0;
  padding: 20px 25px 16px 17px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 0;
}

.artist-secondary-header h2 a {
  text-decoration: none;
}

.artist-secondary-header nav ul {
  padding-top: 0;
}

.artist-secondary-header .view-toggle {
  margin-right: 30px;
  padding-top: 5px;
}

.artist-secondary-header.show {
  opacity: 1;
  transform: translateY(0);
}

@media (width <= 1230px) {
  .artist-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .artist-header nav ul {
    margin: 20px 0 0;
  }

  .artist-header nav ul li {
    margin-left: 0;
    margin-right: 30px;
  }

  .artist-header .view-toggle {
    margin-top: -30px;
  }
}

@media (width <= 767px) {
  .artist-header, .artist-secondary-header {
    width: calc(100% - 30px);
    margin: 20px auto;
    position: relative;
  }

  .artist-header h1, .artist-secondary-header h1 {
    font-size: 1.2rem;
  }

  .artist-header .activePage, .artist-secondary-header .activePage {
    text-transform: uppercase;
    padding-right: 18px;
    font-size: .9rem;
    text-decoration: underline;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .artist-header .activePage:after, .artist-secondary-header .activePage:after {
    content: url("chevron.c6c405f8.svg");
    filter: invert(100);
    transform-origin: center;
    transition: transform .2s, top .2s;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(0);
  }

  .artist-header nav, .artist-secondary-header nav {
    width: 100%;
    display: none;
  }

  .artist-header nav ul, .artist-secondary-header nav ul {
    flex-direction: column;
    width: 90%;
    margin: 30px auto;
  }

  .artist-header nav ul li, .artist-secondary-header nav ul li {
    border-bottom: 4px solid #163f52;
    width: 100%;
    margin: 5px 0;
    padding: 10px 0;
  }

  .artist-header nav ul li:nth-child(2n), .artist-secondary-header nav ul li:nth-child(2n) {
    border-bottom: 4px solid #bf2f60;
  }

  .artist-header nav ul li:nth-child(3n), .artist-secondary-header nav ul li:nth-child(3n) {
    border-bottom: 4px solid #f15856;
  }

  .artist-header nav ul li:nth-child(4n), .artist-secondary-header nav ul li:nth-child(4n) {
    border-bottom: 4px solid #276174;
  }

  .artist-header nav ul li a, .artist-secondary-header nav ul li a {
    padding-left: 10px;
    font-size: 1.2rem;
  }

  .artist-header .view-toggle, .artist-secondary-header .view-toggle {
    display: none;
  }

  .artist-header.open .activePage:after, .artist-secondary-header.open .activePage:after {
    top: -5px;
    transform: rotate(180deg);
  }

  .artist-header.open nav, .artist-secondary-header.open nav {
    display: block;
  }

  .artist-secondary-header {
    width: 100%;
    position: fixed;
    top: 50px;
  }

  .artist-secondary-header .activePage {
    top: 12px;
    right: 15px;
  }
}

.image-list {
  width: 60%;
  margin: 0 auto;
  position: relative;
}

.image-list .cell {
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
}

.image-list .cell.portrait {
  width: 50%;
}

.image-list .cell .inner {
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  width: 100%;
  height: 100%;
  transition: opacity .5s;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.image-list .cell .inner iframe, .image-list .cell .inner video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.image-list .cell.full_playing .inner {
  opacity: 1;
  pointer-events: all;
}

.image-list .cell.full_playing svg.play {
  opacity: 0;
  pointer-events: none;
}

@media (width <= 767px) {
  .image-list {
    width: 90%;
  }

  .image-list .cell svg.play {
    width: 50px;
  }
}

.artist_info {
  color: #222f3b;
  background-color: #faf8f5;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  position: relative;
}

.artist_info .wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  margin: 0 auto;
  display: flex;
}

.artist_info .wrap .col {
  width: calc(50% - 12.5px);
  display: block;
}

.artist_info .wrap .col h1, .artist_info .wrap .col h2, .artist_info .wrap .col h3 {
  margin-bottom: 30px;
  font-size: 2.7rem;
  line-height: .7;
}

.artist_info .wrap .col img, .artist_info .wrap .col video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.artist_info .wrap .col p {
  color: #174153;
  font-weight: 300;
  line-height: 1.6;
}

.artist_info .wrap .col a {
  color: #f35a55;
}

.artist_info .wrap .col .bio_slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.artist_info .wrap .col .bio_slideshow .slide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1124px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.artist_info .wrap .col .bio_slideshow .slide img.photo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

.artist_info .wrap .col.bio {
  border: 1px solid #707070;
}

.artist_info .wrap .col.bio .text_wrap {
  padding: 2rem;
}

@media (width <= 767px) {
  .artist_info {
    padding: 50px 0;
  }

  .artist_info .wrap {
    flex-direction: column;
  }

  .artist_info .wrap .col {
    width: 100%;
    margin: 0 auto 40px;
  }

  .artist_info .wrap .col h3 {
    font-size: 2rem;
  }

  .artist_info .wrap .col:last-child {
    margin-bottom: 0;
  }

  .artist_info .wrap .col .bio_slideshow .slide {
    height: 50vh;
  }
}

.postpage .post {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.postpage .post .columns {
  grid-template-columns: 30% 1fr;
  align-items: start;
  column-gap: 65px;
  display: grid;
  position: relative;
}

.postpage .post .columns .column {
  position: relative;
}

.postpage .post .columns .column h2.sectionTitle {
  border-top: 1px solid #174153;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding-top: 1rem;
  display: flex;
}

.postpage .post .intro h1 {
  width: 60%;
  margin-left: 0%;
}

.postpage .post .intro p {
  width: 100%;
}

.postpage .post .intro .featured {
  width: 100%;
  margin: 40px auto;
  position: relative;
}

.postpage .post .intro .featured.portrait {
  width: 70%;
  margin: 0 auto;
}

.postpage .post h1 {
  font-size: 2rem;
  font-weight: 400;
}

.postpage .post h1, .postpage .post h2, .postpage .post h3 {
  margin-bottom: 20px;
  line-height: 1.3;
}

.postpage .post p {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.postpage .post p:last-child {
  margin-bottom: 0;
}

.postpage .post img {
  width: 125%;
  height: auto;
  display: block;
}

.postpage .post .featured {
  margin-bottom: 6%;
}

.postpage .post .centered {
  width: 100%;
  margin: 0 auto 6%;
}

.postpage .post .centered .cell.portrait {
  width: 70%;
  margin: 0 auto 6%;
}

.postpage .post .centered .cell:hover {
  opacity: 1;
}

.postpage .post .flexgrid {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 6% auto 0;
  display: flex;
}

.postpage .post .flexgrid .cell {
  width: 47%;
  margin-bottom: 6%;
}

.postpage .post .mod_text {
  margin: 40px auto;
}

@media (width <= 767px) {
  .postpage .post {
    width: 90%;
    margin: 0 auto;
  }

  .postpage .post h1, .postpage .post h2, .postpage .post h3, .postpage .post p, .postpage .post a {
    width: 100%;
  }

  .postpage .post .intro h1 {
    width: 100%;
    margin: 20px 0 13px;
    font-size: 2rem;
  }

  .postpage .post .columns {
    grid-template-columns: 1fr;
  }

  .postpage .post .columns .column.info {
    margin-bottom: 2rem;
    position: relative;
    top: auto;
  }
}

.textpage {
  color: #fff;
  background-color: #276174;
}

.textpage .textwrap {
  z-index: 20;
  width: 90%;
  max-width: 800px;
  margin: 120px auto 50px;
  position: relative;
}

.textpage .textwrap h1, .textpage .textwrap h2, .textpage .textwrap h3 {
  margin-bottom: 40px;
  line-height: 1.3;
}

.textpage .textwrap h1 {
  width: 85%;
  font-size: 2.5rem;
}

.textpage .textwrap h2 {
  font-size: 2rem;
}

.textpage .textwrap h3 {
  font-size: 1.5rem;
}

.textpage .textwrap a {
  text-decoration: none;
}

.textpage .textwrap hr {
  background-color: #f7f7f7;
  width: 100%;
  height: 2px;
  margin-bottom: 30px;
  display: block;
}

.textpage .textwrap p {
  margin-bottom: 40px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
}

.textpage .textwrap .columns {
  column-count: 3;
  column-gap: 20px;
}

.textpage .textwrap .column {
  vertical-align: top;
  width: 48%;
  margin-bottom: 10px;
  margin-right: -4px;
  display: inline-block;
}

.textpage .textwrap .column p {
  margin-bottom: 20px;
}

.textpage .textwrap .small_column {
  vertical-align: top;
  width: 32%;
  margin-bottom: 10px;
  margin-right: -4px;
  display: inline-block;
}

.textpage .textwrap .small_column p {
  margin-bottom: 20px;
}

.textpage .topShape {
  z-index: 5;
  position: absolute;
  top: -310px;
  right: -726px;
}

.textpage .midShape {
  z-index: 5;
  position: absolute;
  top: -342px;
  left: -1104px;
}

.textpage .bottomShape {
  z-index: 5;
  position: absolute;
  top: 100vh;
  right: -400px;
}

.textpage #sb_instagram {
  margin: 40px auto 0;
}

.textpage #sb_instagram .sb_instagram_header, .textpage #sb_instagram #sbi_images {
  margin-bottom: 25px;
  padding: 0 !important;
}

.textpage #sb_instagram #sbi_images .sbi_item {
  margin-bottom: -12px !important;
}

.textpage #sb_instagram p {
  font-size: 1rem;
}

@media (width <= 767px) {
  .textpage .textwrap {
    margin: 30px auto;
  }

  .textpage .textwrap h1 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .textpage .textwrap p {
    font-size: 1rem;
  }

  .textpage .textwrap .columns {
    column-count: 2;
  }

  .textpage .textwrap .small_column {
    width: 48%;
  }

  .textpage .textwrap .small_column p {
    font-size: 1rem;
  }

  .textpage .midShape {
    left: -1200px;
  }

  .textpage .bottomShape {
    right: -800px;
  }
}

.centered {
  width: 84%;
  margin: 0 auto;
}

.centered .cell {
  width: 100%;
  margin: 0 auto 6%;
  position: relative;
}

.centered .cell img, .centered .cell video {
  width: 100%;
  display: block;
  position: relative;
}

.centered .cell .info {
  margin: 10px 0 0;
}

.centered .cell .info h2 {
  font-size: 1.5rem;
}

.centered .cell .info p {
  font-size: 1rem;
}

.centered .cell:hover {
  opacity: .7;
}

.category h1.catTitle {
  text-transform: uppercase;
  margin-left: 48px;
  font-size: 2.5vw;
  display: inline-block;
  position: relative;
}

.category h1.catTitle:after {
  content: "";
  background-color: #276174;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 5px;
  left: 0;
}

@media (width <= 767px) {
  .category h1.catTitle {
    margin-top: 20px;
    margin-left: 15px;
    font-size: 1.5rem;
  }

  .category .ar-rows {
    width: calc(100% - 30px);
  }

  .category .ar-rows .row {
    width: 100%;
    display: block;
  }

  .category .ar-rows .row .cell {
    pointer-events: all;
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: unset !important;
    margin-bottom: 15px !important;
  }

  .category .ar-rows .row .cell svg.play {
    pointer-events: all;
    width: 50px;
    display: block;
  }

  .category .ar-rows .row .cell .mediawrap {
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .category .ar-rows .row .cell .mediawrap img.photo, .category .ar-rows .row .cell .mediawrap video {
    height: 100% !important;
  }

  .category .ar-rows .row .cell .mediawrap .inner {
    object-fit: cover;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    transition: opacity .5s;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .category .ar-rows .row .cell .mediawrap .inner iframe, .category .ar-rows .row .cell .mediawrap .inner video {
    object-fit: cover;
    object-fit: unset;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .category .ar-rows .row .cell.full_playing .mediawrap .inner {
    opacity: 1;
    pointer-events: all;
  }
}

.flex_grid {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.flex_grid h2.title {
  text-align: center;
  margin: 2.5% auto 4%;
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
}

.flex_grid h2.title:after {
  content: "";
  background-color: #bf2f60;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.flex_grid a.view_more {
  color: #fff;
  opacity: 1;
  background-color: #f15856;
  border-radius: 30px;
  margin: 0 auto 4rem;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-block;
}

.flex_grid a.view_more:hover {
  opacity: .7;
}

.flex_grid .grid {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.flex_grid .grid .cell {
  width: 47.5%;
  margin-bottom: 100px;
  position: relative;
}

.flex_grid .grid .cell a {
  text-decoration: none;
  transition: color .3s;
}

.flex_grid .grid .cell img, .flex_grid .grid .cell video {
  border-radius: 0;
  transition: opacity .3s, border-radius .3s;
}

.flex_grid .grid .cell.large {
  width: 100%;
}

.flex_grid .grid .cell:hover img, .flex_grid .grid .cell:hover video {
  border-radius: 200px 200px 20px 20px;
}

.flex_grid .grid .cell:hover .info h2 {
  color: #f15856;
}

.flex_grid .grid .cell .info {
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.flex_grid .grid .cell .info h3.artist {
  color: #fff;
  background-color: #f15856;
  border-radius: 15px;
  margin-bottom: 15px;
  padding: 5px 15px 2px;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
}

.flex_grid .grid .cell .info h2 {
  color: #163f52;
  font-size: 1.3rem;
  font-weight: 500;
  transition: color .3s;
}

@media (width <= 767px) {
  .flex_grid {
    width: 80%;
    margin: 0 auto;
  }

  .flex_grid h2.title {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }

  .flex_grid .grid {
    flex-direction: column;
  }

  .flex_grid .grid .cell {
    width: 100%;
    margin-bottom: 45px;
  }
}

.justified {
  width: 84%;
  margin: 0 auto;
}

.croppedgrid {
  flex-flow: wrap;
  width: 84%;
  margin: 0 auto;
  list-style-type: none;
  display: flex;
}

.croppedgrid .cell {
  opacity: 1;
  flex: 0 auto;
  width: 20%;
  margin: 0 2.5% 5%;
  transition: opacity .3s;
  position: relative;
  overflow: hidden;
}

.croppedgrid .cell:hover {
  opacity: .7;
}

.croppedgrid .cell .info {
  margin: 10px 0 0;
}

.croppedgrid .cell .info h2 {
  font-size: 1.5rem;
}

.croppedgrid .cell .info p {
  font-size: 1rem;
}

.ar-rows {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

.ar-rows .row {
  text-align: center;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.ar-rows .row .cell {
  float: left;
  opacity: 1;
  box-sizing: border-box;
  border: 0 solid #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ar-rows .row .cell svg.play {
  display: none;
}

.ar-rows .row .cell figcaption {
  text-align: left;
  color: #174153;
  flex-direction: column;
  margin-top: 6px;
  transition: color .2s;
  display: flex;
}

.ar-rows .row .cell figcaption h2 {
  margin-bottom: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.ar-rows .row .cell figcaption p {
  font-size: .8rem;
}

.ar-rows .row .cell:hover figcaption {
  color: #bf2f60;
}

.gridpage .ar-rows {
  width: 90%;
  margin: 40px auto 0;
}

@media (width <= 767px) {
  .ar-rows {
    width: calc(100% - 30px);
  }

  .ar-rows .row {
    width: 100%;
    display: block;
  }

  .ar-rows .row .cell {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: unset !important;
    margin-bottom: 15px !important;
  }

  .ar-rows .row .cell.with_info {
    padding-bottom: 50px !important;
  }

  .ar-rows .row .cell figcaption {
    margin-top: 10px;
  }

  .ar-rows .row .cell figcaption h2 {
    font-size: 1.1rem;
  }

  .ar-rows .row .cell svg.play {
    pointer-events: all;
    width: 50px;
    display: block;
  }

  .ar-rows .row .cell .mediawrap {
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .ar-rows .row .cell .mediawrap img.photo, .ar-rows .row .cell .mediawrap video {
    height: 100% !important;
  }

  .ar-rows .row .cell .mediawrap .inner {
    object-fit: cover;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    transition: opacity .5s;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .ar-rows .row .cell .mediawrap .inner iframe, .ar-rows .row .cell .mediawrap .inner video {
    object-fit: cover;
    object-fit: unset;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .ar-rows .row .cell.full_playing .mediawrap .inner {
    opacity: 1;
    pointer-events: all;
  }
}

.about_page .text-block {
  width: 90%;
  max-width: 718px;
  margin: 0 auto 5rem;
  position: relative;
}

.about_page .text-block:first-child {
  margin-top: 6rem;
}

@media (width <= 767px) {
  .about_page .text-block table colgroup col, .about_page .text-block table tr {
    width: 100%;
    display: block;
  }

  .about_page .text-block table tr td {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }

  .about_page .text-block table tr td:last-child {
    margin-bottom: 0;
  }

  .about_page .text-block:first-child {
    margin-top: 0;
  }
}

.text-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5rem 0;
  display: flex;
  position: relative;
}

.text-wrap .text-block {
  max-width: 1000px;
  margin: 0 auto;
}

.text-wrap .text-block:first-child {
  margin-top: 0;
}

.horz_scroll_wrap {
  margin: 2rem auto;
}

.horz_scroll_wrap h2.sectionTitle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  display: flex;
}

.horz_scroll {
  justify-content: flex-start;
  align-items: flex-start;
  height: 90vh;
  display: flex;
  position: relative;
  overflow-x: auto;
}

.horz_scroll::-webkit-scrollbar {
  display: none;
}

.horz_scroll .cell {
  align-self: flex-start;
  width: auto;
  height: 100%;
  margin: 0 20px;
}

.horz_scroll .cell:first-child {
  margin-left: 5%;
}

.horz_scroll .cell:last-child {
  margin-right: 5%;
}

.horz_scroll .cell a {
  text-decoration: none;
}

.horz_scroll .cell .vertwrap {
  width: auto;
  height: calc(100% - 30px);
  display: block;
  position: relative;
}

.horz_scroll .cell .vertwrap img.photo, .horz_scroll .cell .vertwrap video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.horz_scroll .cell .caption {
  margin-top: 5px;
  font-size: .9rem;
}

.horz_scroll_wrap .arrows {
  display: none;
}

@media (width <= 767px) {
  .horz_scroll_wrap h2.sectionTitle {
    align-items: flex-start;
    margin-left: 5%;
    font-size: 1.5rem;
  }

  .horz_scroll {
    height: 30vh;
  }

  .horz_scroll .cell {
    height: 100%;
    margin: 0 10px;
  }

  .horz_scroll .cell:first-child {
    margin-left: 10px;
  }

  .horz_scroll .cell:last-child {
    margin-right: 10px;
  }
}

.scrolling-logos {
  letter-spacing: 0;
  background-color: #174153;
  width: 100%;
  height: 28vh;
  margin: 0 auto;
  font-size: 0;
  position: relative;
  overflow: hidden;
}

.scrolling-logos .scrollwrap {
  white-space: nowrap;
  text-align: center;
  height: 100%;
  margin-left: 0;
  position: absolute;
}

.scrolling-logos .scrollwrap .cell {
  text-align: center;
  width: 200px;
  height: 100%;
  display: inline-block;
}

.scrolling-logos .scrollwrap .cell .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.scrolling-logos .scrollwrap .cell .mediawrap {
  width: 100%;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scrolling-logos .scrollwrap .cell .mediawrap img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scrolling-logos .scrollwrap .cell img {
  zoom: 1;
  vertical-align: middle;
  max-width: 72%;
  max-height: 38%;
  display: inline-block;
}

@media (width <= 767px) {
  .scrolling-logos {
    height: 15vh;
  }

  .scrolling-logos .scrollwrap .cell {
    width: 125px;
  }
}

.centered-media {
  width: 72%;
  margin: 0 auto;
  position: relative;
}

.centered-media .cell {
  width: 100%;
  margin: 0 auto 3rem;
  position: relative;
}

.centered-media .cell .caption {
  text-align: center;
  margin-top: 10px;
  font-size: .9rem;
}

@media (width <= 767px) {
  .centered-media {
    width: 90%;
  }
}

.contact_columns {
  grid-template-columns: 1fr 350px;
  column-gap: 40px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.contact_columns .column.text {
  padding-top: 20px;
}

.contact_columns h1, .contact_columns h2, .contact_columns h3 {
  font-weight: 500;
}

.contact_columns h1 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.contact_columns h2 {
  font-size: 2rem;
}

.contact_columns h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact_columns p {
  font-size: .9rem;
  line-height: 1.7;
}

.contact_columns a {
  color: #f35a55;
  text-decoration: none;
}

@media (width <= 767px) {
  .contact_columns {
    grid-template-columns: 1fr;
  }
}

.masongrid {
  opacity: 0;
  width: 90%;
  margin: 0 auto;
  list-style-type: none;
  transition: opacity .3s;
}

.masongrid.loaded {
  opacity: 1;
}

.masongrid.four_col .grid-sizer, .masongrid.four_col .cell {
  width: 22.5%;
}

.masongrid.four_col .gutter-sizer {
  width: 3.33%;
}

.masongrid.three_col .grid-sizer, .masongrid.three_col .cell {
  width: 31%;
}

.masongrid.three_col .gutter-sizer {
  width: 3.5%;
}

.masongrid.three_col .cell {
  margin-bottom: 2rem;
}

.masongrid.three_col .cell.large {
  width: 65.5%;
}

.masongrid.three_col.half {
  width: 60%;
}

.masongrid.three_col.half .grid-sizer, .masongrid.three_col.half .cell {
  width: 48%;
}

.masongrid.three_col.half .gutter-sizer {
  width: 4%;
}

.masongrid.three_col.half .cell {
  margin-bottom: 2rem;
}

.masongrid.three_col.half .cell.large {
  width: 100%;
}

.masongrid .grid-sizer, .masongrid .cell {
  width: 47%;
  height: auto;
}

.masongrid .gutter-sizer {
  width: 6%;
}

.masongrid .cell {
  float: left;
  text-align: left;
  display: block;
  overflow: hidden;
}

.masongrid .cell:hover .mediawrap {
  border-radius: 30px;
}

.masongrid .cell:hover .info {
  color: #bd2558;
}

.masongrid .cell .mediawrap {
  border-radius: 0;
  width: 100%;
  height: 0;
  transition: border-radius .3s;
  position: relative;
  overflow: hidden;
}

.masongrid .cell .mediawrap img.photo, .masongrid .cell .mediawrap video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.masongrid .cell .info {
  margin-top: 10px;
  transition: color .3s;
}

.masongrid .cell .info h2 {
  margin: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.masongrid .cell .info h3 {
  margin: 3px 0 0;
  font-size: .8rem;
  font-weight: 400;
}

.masongrid .cell.large {
  width: 100%;
}

.masongrid .cell a, .masongrid .cell img {
  border: none;
  outline: none;
  width: 100%;
  text-decoration: none;
  display: block;
}

.masongrid.effect-2 .cell {
  opacity: 0;
}

.masongrid.effect-2 .cell.shown {
  opacity: 1;
}

.masongrid.center_title .cell .info {
  color: #fff;
  text-align: center;
  z-index: 5;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.masongrid.center_title .cell .info h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.masongrid.center_title .cell .info p {
  letter-spacing: .07rem;
  font-family: p22-underground, sans-serif;
  font-size: .7rem;
  font-weight: 300;
}

.masongrid.center_title .cell:after {
  content: "";
  opacity: .5;
  pointer-events: none;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.masongrid.center_title .cell:hover:after {
  opacity: 0;
}

.masongrid .shown .cell, .no-js .masongrid figure.cell, .no-cssanimations .masongrid figure.cell {
  opacity: 1;
}

.masongrid.effect-1 figure.animate {
  animation: .65s forwards fadeIn;
}

.masongrid.effect-2 figure.animate {
  opacity: 1;
  animation: .65s forwards moveUp;
  transform: translateY(200px);
}

@-webkit-keyframes moveUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@media (width <= 767px) {
  .masongrid .cell, .masongrid .grid-sizer {
    width: 100% !important;
    margin-bottom: 2rem !important;
  }

  .masongrid .gutter-sizer {
    width: 0 !important;
  }
}

.slideshow {
  text-align: center;
  width: 100%;
  height: 100vh;
  position: relative;
  top: auto;
  overflow: hidden;
}

.slideshow .arrow {
  z-index: 10;
  transition: transform .2s;
  position: absolute;
  top: calc(50% - 21px);
  transform: scale(1);
}

.slideshow .arrow:hover {
  transform: scale(.9);
}

.slideshow .arrow.next {
  right: 48px;
}

.slideshow .arrow.prev {
  left: 48px;
}

.slideshow .cell {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: relative;
}

.slideshow .cell.is-selected {
  z-index: 2;
}

.slideshow .cell a {
  width: 100%;
  height: 100%;
  display: block;
}

.slideshow .cell a.nolink {
  pointer-events: none;
}

.slideshow .cell img.photo, .slideshow .cell video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.slideshow .cell .info {
  z-index: 10;
  color: #163f52;
  background: #fff;
  border-left: 6px solid #f15856;
  position: absolute;
  bottom: 48px;
  left: 48px;
}

.slideshow .cell .info:before {
  content: "";
  background-color: #f15856;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 17px;
  left: -5px;
  transform: rotate(45deg);
}

.slideshow .cell .info p {
  margin-bottom: 0;
  padding: 15px 20px 12px 13px;
  font-weight: 500;
  line-height: 1;
}

.slideshow.fullbleed h1 {
  z-index: 10;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slideshow.center figure:before {
  content: "";
  vertical-align: middle;
  width: 0;
  height: 100%;
  display: inline-block;
}

.slideshow.center figure img.photo {
  vertical-align: middle;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: inline-block;
}

@media (width <= 767px) {
  .slideshow {
    height: 50vh;
    margin-top: 100px;
    margin-bottom: 25px;
  }

  .slideshow .arrow {
    display: none;
  }

  .slideshow .cell {
    height: 50vh;
  }

  .slideshow .cell .info {
    bottom: 25px;
    left: 25px;
  }
}

#overlay {
  text-align: center;
  opacity: 0;
  z-index: -1;
  background-color: #000000e6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: z-index 0s .4s, transform 0s .4s, opacity .3s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

#overlay.on {
  opacity: 1;
  z-index: 300;
  transition: z-index, transform, opacity .3s;
  transform: translateX(0%);
}

#overlay .logo {
  filter: invert();
  width: 120px;
  height: auto;
  position: absolute;
  top: 31px;
  left: 5%;
}

#overlay .logo img {
  width: 100%;
  height: auto;
  display: block;
}

#overlay .closer {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#overlay .closer .closeIcon {
  z-index: 11;
  cursor: pointer;
  width: 22px;
  height: 22px;
  transition: transform .2s;
  position: absolute;
  top: 43px;
  right: 5%;
  transform: scale(1);
}

#overlay .closer .closeIcon:hover {
  transform: scale(1.1);
}

#overlay .closer .closeIcon .line {
  background: #fff;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(45deg);
}

#overlay .closer .closeIcon .line:last-child {
  transform: translate(-50%, -50%)rotate(-45deg);
}

#overlay .arrow {
  cursor: pointer;
  z-index: 5;
  color: #fff;
  width: 23px;
  height: auto;
  position: absolute;
  bottom: 35px;
}

#overlay .arrow.left {
  right: calc(5% + 30px);
}

#overlay .arrow.right {
  right: 5%;
}

#overlay .inner {
  z-index: 10;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

#overlay .inner .wrap {
  text-align: center;
  pointer-events: all;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 80%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

#overlay .inner .wrap.videoEmbed {
  width: 60%;
  height: auto;
  display: block;
}

#overlay .inner .wrap video, #overlay .inner .wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}

#overlay .inner .info {
  color: #fff;
  z-index: 5;
  text-align: left;
  position: absolute;
  bottom: 35px;
  left: 5%;
}

#overlay .inner .info h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

#overlay .inner .info p {
  margin: 0;
  font-size: .8rem;
}

@media (width <= 767px) {
  #overlay .inner .info {
    bottom: 80px;
  }

  #overlay .inner .wrap, #overlay .inner .wrap.videoEmbed {
    width: 100%;
  }

  #overlay .inner .wrap.videoEmbed iframe {
    width: 100%;
    height: 56.25vw;
  }
}
/*# sourceMappingURL=styles.css.map */
