/* Helper for getting a color from a map */
/* Helper for setting a color */
.ns-btn {
  --btn-bg-color: #000;
  --btn-label-color: #fff;
  --btn-border-color: var(--btn-bg-color);
  --btn-padding-x: 24px;
  --btn-height: 2.5rem;
  --btn-width: 100%;
  --btn-cursor: pointer;
  --btn-uppercase: uppercase;
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01313rem;
  text-transform: uppercase;
  text-transform: var(--btn-uppercase) !important;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0 var(--btn-padding-x);
  width: var(--btn-width);
  min-height: var(--btn-height);
  background-color: var(--btn-bg-color);
  color: var(--btn-label-color);
  border: 1px solid var(--btn-border-color);
  border-radius: 8px;
  -webkit-transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
  cursor: var(--btn-cursor);
}
.ns-btn:hover {
  --btn-bg-color: #dfddd2;
  --btn-label-color: #000;
}
.ns-btn:active {
  --btn-bg-color: #9c9a90;
}
.ns-btn:disabled {
  --btn-bg-color: #e9e9e9;
  --btn-label-color: #434343;
  --btn-cursor: default;
}
.ns-btn--secondary {
  --btn-bg-color: #fff;
  --btn-border-color: #000;
  --btn-label-color: #000;
}
.ns-btn--secondary:hover {
  --btn-border-color: var(--btn-bg-color);
}
.ns-btn--subtle {
  --btn-bg-color: transparent;
  --btn-label-color: #000;
}
.ns-btn--link {
  --btn-bg-color: transparent;
  --btn-label-color: #000;
  --btn-border-color: #000;
  --btn-padding-x: 0;
  --btn-width: auto;
  --btn-height: auto;
  --btn-uppercase: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: inherit;
  font-weight: inherit;
  border-width: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--btn-border-color);
}
.ns-btn--link:hover {
  --btn-bg-color: transparent;
  --btn-label-color: #7b7b7b;
  --btn-border-color: #7b7b7b;
}
.ns-btn--icon {
  --btn-bg-color: transparent;
  --btn-padding-x: 0;
  --btn-width: auto;
  --btn-height: auto;
  border-width: 0;
  border-radius: 0;
}
.ns-btn--icon:hover {
  --btn-bg-color: transparent;
}
.ns-btn--sm {
  --btn-height: 2.25rem;
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 0.625rem;
  line-height: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0125rem;
  text-transform: uppercase;
}
.ns-btn--lg {
  --btn-height: 2.75rem;
}

/* Helper for getting a color from a map */
/* Helper for setting a color */
/*other shade of black used #1C1D1C,#252725, #000*/
/*other shade of light grey used #F4F4F4*/
/* ICONS */
/* svg Icons */
/* Sprite svg Icons */
/* Helper for getting a color from a map */
/* Helper for setting a color */
/*other shade of black used #1C1D1C,#252725, #000*/
/*other shade of light grey used #F4F4F4*/
/* ICONS */
/* svg Icons */
/* Sprite svg Icons */
body {
  --scrollbarWidth: 0px;
}
body.modal-open {
  overflow-y: hidden !important;
  width: calc(100% - var(--scrollbarWidth));
}

.window-modal {
  position: relative;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .window-modal {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
}
@media (min-width: 1024px) {
  .window-modal {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.window-modal.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.window-modal.is-active .close-btn {
  opacity: 1;
}

.window-modal-underlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translateX(101vw);
          transform: translateX(101vw);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 1999999999;
}
@media (prefers-reduced-motion: reduce) {
  .window-modal-underlay {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
}
@media (min-width: 1024px) {
  .window-modal-underlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
.window-modal-underlay.is-active {
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 1024px) {
  .window-modal-underlay.is-active + div.modal-bg {
    height: 100vh;
  }
}

.modal-bg {
  display: none;
}
@media (min-width: 1024px) {
  .modal-bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 100vw;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 400ms linear;
    transition: opacity 400ms linear;
  }
}
.modal-bg.is-active {
  opacity: 1;
}

.close-btn-wrapper {
  position: sticky;
  top: 0px;
  height: 0;
  z-index: 2;
}

.close-btn {
  position: relative;
  width: 45px;
  height: 45px;
  margin-left: 8px;
  border: 0;
  background: none;
  opacity: 0;
}
@media (min-width: 1024px) {
  .close-btn {
    margin-right: 1.5rem;
    margin-top: 5px;
  }
}
.close-btn > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  z-index: 3;
  -webkit-transition: -webkit-transform 50ms ease-out;
  transition: -webkit-transform 50ms ease-out;
  transition: transform 50ms ease-out;
  transition: transform 50ms ease-out, -webkit-transform 50ms ease-out;
}
.close-btn:active > img {
  -webkit-transform: scale3d(0.95, 0.95, 1);
          transform: scale3d(0.95, 0.95, 1);
}

@font-face {
  font-family: "Blanka Expanded";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-RegularExpanded.woff2") format("woff2"), url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-RegularExpanded.woff") format("woff");
}
@font-face {
  font-family: "Blanka Expanded";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-MediumExpanded.woff2") format("woff2"), url("https://watchbox-sfcc.imgix.net/webfonts/the-1916-co/F37Blanka-MediumExpanded.woff") format("woff");
}
body {
  --bg: #fff;
  --bg-opacity: 0;
  --txt: #000;
  --linkHover: #737268;
  background-color: var(--bg);
  -webkit-transition: background-color 650ms ease;
  transition: background-color 650ms ease;
}
@media (prefers-reduced-motion: reduce) {
  body {
    -webkit-transition-duration: 0ms;
            transition-duration: 0ms;
  }
}

article {
  background: #fff;
  width: min(100%, 1450px);
  min-height: 100vh;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 2px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 2px 12px rgba(0, 0, 0, 0.2);
}
article p {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
}

blockquote {
  font-size: 14px;
  font-size: 1.1666666667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  blockquote {
    padding: 0 11rem;
  }
}
@media (min-width: 1024px) {
  blockquote {
    font-size: 16px;
    font-size: 1.3333333333rem;
    padding: 0 15.5rem;
  }
}
blockquote::before, blockquote::after {
  -ms-flex-item-align: center;
      align-self: center;
  width: 2rem;
  height: 2rem;
}
blockquote::before {
  content: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&cs=srgb&usm=5&usmrad=5&vib=5#quotation-mark-start-dark");
  margin-bottom: 5.5rem;
}
blockquote::after {
  content: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&cs=srgb&usm=5&usmrad=5&vib=5#quotation-mark-start-dark");
  margin-top: 5.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
blockquote > footer, blockquote > p {
  font-size: inherit;
  color: inherit;
  background: none;
}

.page {
  overflow: visible;
}

h1 {
  margin-bottom: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  h1 {
    margin-top: 4rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    margin-top: 5rem;
  }
}

.bio-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.team-grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@supports (display: grid) {
  .team-grid-container {
    display: grid;
    gap: 3rem 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 768px) {
    .team-grid-container {
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem 2rem;
    }
  }
  @media (min-width: 1200px) {
    .team-grid-container {
      grid-template-columns: repeat(6, 1fr);
      gap: 5rem 2rem;
    }
  }
}

@media (min-width: 1024px) {
  .profile-grid {
    grid-template-columns: 30rem 1fr;
  }
  .profile-grid > .profile-content {
    grid-column: 2/span 1;
    min-height: 70rem;
  }
  .profile-grid > .intro-video {
    grid-column: 1/span 2;
  }
}
@media (min-width: 1480px) {
  .profile-grid {
    grid-template-columns: 45rem 1fr;
  }
}
.profile-grid > .swiper-container {
  grid-column: 1/span 1;
  width: 100%;
}

section,
.section-margin {
  margin-bottom: 3rem;
}

.section-margin-top {
  margin-top: 3rem;
}

.section-nav-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .section-nav-btn, .section-nav-btn:hover, .section-nav-btn:active {
    border: 0;
    border-radius: 0;
    color: #000;
    background: none;
  }
  .section-nav-btn.is-active {
    border-bottom: 1px solid #000;
  }
}
@media (min-width: 768px) {
  .section-nav-btn {
    width: 100%;
    padding: 0.5rem;
  }
  .section-nav-btn.is-active {
    color: #fff;
    background: #000;
  }
}
@media (min-width: 1024px) {
  .section-nav-btn {
    padding: 1rem;
  }
}

.main-content {
  -webkit-transition: color 650ms ease;
  transition: color 650ms ease;
}
.main-content h1 {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.035rem;
}
@media (min-width: 768px) {
  .main-content h1 {
    line-height: 1;
    font-family: "Caslon Text Regular Condensed", ui-serif, serif;
    font-size: 4.188rem;
    font-weight: 400;
    letter-spacing: -0.08375rem;
  }
}
.main-content h1 > * {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content p,
.main-content .team-card-button {
  color: var(--text);
}
.main-content .team-card-button:hover {
  color: var(--linkHover);
}

.prof-pic-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  height: 100%;
}

.animated-title {
  overflow: hidden;
}
.animated-title > span {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  .animated-title > span {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.hero-wrapper {
  position: relative;
  height: 0;
  padding-top: 33.3333333333%;
  margin-bottom: 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-wrapper {
    margin-bottom: 3rem;
  }
}
.hero-wrapper > video, .hero-wrapper > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-wrapper > video {
    display: none;
  }
}
.hero-wrapper > img {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-wrapper > img {
    display: block;
  }
}

.section-nav-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
  border-bottom: 2px solid #000;
  z-index: 95;
}
@media (min-width: 768px) {
  .section-nav-container {
    position: sticky;
    top: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section-nav-container {
    top: 3rem;
  }
}

.section-nav__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 content;
          flex: 0 0 content;
}
@media (min-width: 768px) {
  .section-nav__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.page-description {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page-description {
    margin-bottom: 4.5rem;
  }
}
.page-description > p {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
}
@media (min-width: 768px) {
  .page-description > p {
    line-height: 1;
    font-family: "Blanka Expanded", ui-sans-serif, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02625rem;
  }
}

.team-title {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.035rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .team-title {
    line-height: 1;
    font-family: "Caslon Text Regular Condensed", ui-serif, serif;
    font-size: 2.375rem;
    font-weight: 400;
    letter-spacing: -0.0475rem;
  }
}

.team-section {
  padding-top: 2.5rem;
  margin-bottom: calc(4rem - 2.5rem);
}
@media (min-width: 768px) {
  .team-section {
    margin-bottom: calc(5rem - 2.5rem);
  }
}
@media (min-width: 1024px) {
  .team-section {
    padding-top: 3.5rem;
    margin-bottom: calc(11rem - 3.5rem);
  }
}
.team-section:last-child {
  margin-bottom: 8rem;
}

.team-card {
  cursor: pointer;
}
.team-card button {
  text-align: left;
  background: transparent;
  border-width: 0;
}
.team-card span {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0;
}
.team-card span.team-card-name {
  line-height: 1;
  font-family: "Blanka Expanded", ui-sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  margin-bottom: 10px;
}
.team-card .prof-pic-wrapper {
  width: 100%;
  padding-top: 150%;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transition: opacity 120ms ease;
  transition: opacity 120ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-card .prof-pic-wrapper {
    -webkit-transition-duration: 0ms;
            transition-duration: 0ms;
  }
}
@media (min-width: 1024px) {
  .team-card .prof-pic-wrapper:hover .photo-secondary {
    opacity: 1;
  }
}
.team-card .prof-pic-wrapper > img {
  position: absolute;
  top: 0;
  left: 0;
}
.team-card .prof-pic-wrapper .photo-secondary {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 90ms ease-out;
  transition: opacity 90ms ease-out;
}

.profile-section-heading {
  line-height: 1;
  font-family: "Blanka Expanded", ui-sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-top: 1.25rem;
}
.profile-section-heading:not(.profile-title-wrapper) {
  margin-bottom: 3rem;
}
.profile-section-heading:not(.profile-title-wrapper)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-top: 3px solid #000;
}

.profile-section-subheading {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.location-icon {
  margin-right: 2px;
  width: 2rem;
  height: 2rem;
}

@media (min-width: 576px) {
  .profile-grid .prof-pic-wrapper {
    height: 100vh;
  }
}
@media (min-width: 768px) {
  .profile-grid .prof-pic-wrapper {
    height: 42rem;
  }
}
@media (min-width: 1024px) {
  .profile-grid .prof-pic-wrapper {
    height: 100%;
  }
}

.profile-content {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .profile-content {
    margin-top: 4rem;
  }
}

.profile-header {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .profile-header {
    margin-bottom: 3rem;
  }
}

.profile-name {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 3.188rem;
  font-weight: 400;
  letter-spacing: -0.06375rem;
  margin-bottom: 1.5rem;
}

.profile-title {
  line-height: 1;
  font-family: "Caslon Text Regular Condensed", ui-serif, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.035rem;
}

.profile-title-wrapper {
  padding: 0;
  margin-bottom: 0;
}

.profile-location {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.25rem;
}

.profile-bio {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .profile-bio {
    margin-bottom: 3rem;
  }
}
.profile-bio > p:not(:last-child) {
  margin-bottom: 1rem;
}

.team-contact-links, .team-connect-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.team-contact-links > li, .team-connect-links > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-contact-links > li, .team-contact-links > li > a, .team-connect-links > li, .team-connect-links > li > a {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  white-space: nowrap;
}
.team-contact-links .email-icon, .team-connect-links .email-icon {
  background: url("https://watchbox-sfcc.imgix.net/icons/wb_sprite.svg?auto=format,compress&cs=srgb&usm=5&usmrad=5&vib=5#email-dark") no-repeat center;
}

.social-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
}

.intro-video {
  position: relative;
  width: auto;
}

.video-title {
  font-size: 64px;
  font-size: 5.3333333333rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  color: #fff;
  z-index: 999;
}

.swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.playlist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.playlist-video, .playlist-title {
  margin-bottom: 15px;
}

.playlist-video {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .playlist-video {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.playlist-title {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .playlist-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 1024px) {
  .playlist-title {
    font-size: 14px;
    font-size: 1.1666666667rem;
    margin-bottom: 1.5rem;
  }
}

.playlist-description {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.playlist-description > p {
  font-family: "Blanka", ui-sans-serif, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
  font-weight: 300;
  margin-bottom: 0;
}
.playlist-description > p.truncated {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* autoprefixer ignore next */
  -webkit-box-orient: vertical;
}
@media (min-width: 1024px) {
  .playlist-description > p.truncated {
    -webkit-line-clamp: 5;
  }
}
.playlist-description > button {
  font-size: 16px;
  font-size: 1.3333333333rem;
  padding: 0;
  border: 0;
  background: none;
}

.profile-transition-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile-transition-btns > button {
  font-size: 10px;
  font-size: 0.8333333333rem;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}
@media (min-width: 576px) {
  .profile-transition-btns > button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.profile-transition-btns > button:not(.d-none) + button {
  border-left-style: none;
}

.calendly-overlay {
  z-index: 9999999999 !important;
}

.swiper-container {
  position: relative;
}
.swiper-container .swiper-button-prev {
  left: 0;
}
.swiper-container .swiper-button-next {
  right: 0;
}

.swiper-pagination {
  position: relative;
  margin-top: 3rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  border-radius: 0;
  width: 2.5rem;
  height: 2px;
  background: #c4c4c4;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}

.profile-grid .swiper-pagination {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.profile-grid .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
}
.profile-grid .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.profile-pic-swiper .swiper-button-prev, .profile-pic-swiper .swiper-button-next {
  opacity: 0;
  -webkit-transition: opacity 80ms ease;
  transition: opacity 80ms ease;
}
.profile-pic-swiper:hover .swiper-button-prev:not(.swiper-button-disabled), .profile-pic-swiper:hover .swiper-button-next:not(.swiper-button-disabled) {
  opacity: 1;
}