:root {
  --dark-color: #333333;
  --text-color: #333333;
  --text-color-rgb: 55,55,55;
  --primary-color: #f76690;
  --primary-color-rgb: 247,102,144;
  --secondary-color: #AB0536;
  --secondary-color-rgb: 171,5,54;
  --site-bg-color:#FFFFFF;
  --os-default-font:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  --header-h:80px;
  --header-dropshadow:rgba(0,0,0,0.07);
}

@media screen and (prefers-color-scheme: dark) {
  :root {
    --text-color:#CCCCCC;
    --text-color-rgb:204,204,204;
    --site-bg-color:#222222;
    --site-bg-color-rgb:34,34,34;
    --header-dropshadow:rgba(0,0,0,0.33);
  }
}
.project .project-title {
  margin-bottom: 0;
}
.project .project-title a {
  color: var(--text-color);
}
.project .project-title a:hover {
  color: var(--primary-color);
}
.project .project-metadata {
  font-size: 0.875rem;
}
.project .project-metadata > * {
  opacity: 0.5;
}
.project .project-metadata a {
  color: var(--text-color);
}
.project .project-metadata a:hover {
  opacity: 1;
  color: var(--primary-color);
}
.project .project-details strong {
  font-weight: 900;
}
.project .project-details p:last-child {
  margin-bottom: 0;
}
.project .project-video {
  border-radius: 20px;
  border-radius: 1.5vw;
  overflow: hidden;
}
.project .project-image {
  position: relative;
  height: 0;
  display: block;
  border-radius: 20px;
  border-radius: 1.5vw;
  overflow: hidden;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.project .project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.project .tag-list {
  display: flex;
  gap: 8px;
}
.project .tag-list li {
  padding: 0.6em 0.8em;
  margin: 0;
  background-color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1em;
  color: var(--site-bg-color);
  border-radius: 30px;
}
.project.project--offline .project-title {
  pointer-events: none;
}
.project.project--offline .project-url {
  text-decoration: line-through;
  pointer-events: none;
}
.project.project-primary {
  margin-bottom: 30vh;
}
.project.project-primary .project-media {
  opacity: 0;
  transform: translate3d(10%, 0, 0);
  transition: transform 0.33s ease-out, opacity 0.33s ease-out;
  will-change: transform, opacity;
}
.project.project-primary .project-media.shove-it {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.project.project-primary:nth-child(odd) .project-media {
  transform: translate3d(-10%, 0, 0);
}
.project.project-primary:nth-child(odd) .project-media.shove-it {
  transform: translate3d(0, 0, 0);
}
.project.project-id-sapo-content-framework .project-image:first-child {
  animation: hereWeGo 1s ease-out forwards;
}

@keyframes hereWeGo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 768px) {
  .project.project-primary {
    display: grid;
    grid-template-columns: 2fr 4fr;
    column-gap: 5%;
    column-gap: 4vw;
  }
  .project.project-primary .project-details {
    position: sticky;
    top: 80px;
    top: calc(4vw + 64px);
  }
  .project.project-primary:nth-child(odd) {
    grid-template-columns: 4fr 2fr;
  }
  .project.project-primary:nth-child(odd) > :nth-child(1) {
    order: 2;
  }
  .project.project-primary:nth-child(odd) > :nth-child(2) {
    order: 1;
  }
  .project.project-secondary {
    display: grid;
  }
  .project.project-secondary > :nth-child(1) {
    order: 2;
  }
  .project.project-secondary > :nth-child(2) {
    order: 1;
  }
}
@media (max-width: 768px) {
  .project.project-primary .project-media {
    transform: translate3d(0, 10%, 0);
  }
  .project.project-primary:nth-child(odd) .project-media {
    transform: translate3d(0, -10%, 0);
  }
  .project.project-secondary {
    margin-bottom: 30vh;
  }
}
.album .album-embed {
  position: relative;
  padding-top: 100%;
  height: 0;
}
.album .album-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.album .album-title a,
.album .album-band a {
  color: var(--text-color);
}
.album .album-title a:hover,
.album .album-band a:hover {
  color: var(--primary-color);
}
.album .album-metadata {
  font-size: 0.875rem;
}
.album .album-metadata > * {
  opacity: 0.5;
}
.album .album-metadata a {
  color: var(--text-color);
}
.album .album-metadata a:hover {
  opacity: 1;
  color: var(--primary-color);
}
.album .album-details strong {
  font-weight: 900;
}
.album .album-details p {
  font-size: 0.875rem;
}
.album .album-details p:last-child {
  margin-bottom: 0;
}
.album .album-image {
  display: block;
}

.portfolio-review-layout {
  display: grid;
  min-height: 100vh;
  margin: 5%;
}

.slide {
  display: grid;
  grid-template-columns: 3fr 2fr;
}

/*********/
/*********/
/*********/
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.fs-xxxsmall {
  font-size: 0.5rem;
}

.fs-xxsmall {
  font-size: 0.625rem;
}

.fs-xsmall {
  font-size: 0.75rem;
}

.fs-small {
  font-size: 0.875rem;
}

.fs-medium {
  font-size: 1rem;
}

.fs-large {
  font-size: 1.125rem;
}

.fs-xlarge {
  font-size: 1.25rem;
}

.fs-xxlarge {
  font-size: 1.375rem;
}

.fs-xxxlarge {
  font-size: 1.5rem;
}

.fs-xxxxlarge {
  font-size: 1.625rem;
}

.fs-xxxxlarge {
  font-size: 1.75rem;
}

.fs-xxxxxlarge {
  font-size: 1.875rem;
}

.fs-xxxxxxlarge {
  font-size: 2rem;
}

.ratio-ctn {
  position: relative;
  height: 0;
  overflow: hidden;
}
.ratio-ctn > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.ratio-ctn.ratio-ctn-169 {
  padding-top: 56.25%;
}
.ratio-ctn.ratio-ctn-31 {
  padding-top: 33%;
}
.ratio-ctn.ratio-ctn-21 {
  padding-top: 50%;
}
.ratio-ctn.ratio-ctn-43 {
  padding-top: 75%;
}
.ratio-ctn.ratio-ctn-11 {
  padding-top: 100%;
}
.ratio-ctn.ratio-ctn-45 {
  padding-top: 125%;
}
.ratio-ctn.ratio-ctn-34 {
  padding-top: 150%;
}
.ratio-ctn.ratio-ctn-12 {
  padding-top: 200%;
}

/*********/
/*********/
/*********/
a:hover {
  text-decoration: none;
}

/*********/
/*********/
/*********/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--os-default-font);
  background-color: var(--site-bg-color);
  color: var(--text-color);
}

a {
  color: var(--primary-color);
}
a:hover {
  color: var(--text-color);
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--special-font);
  font-weight: 900;
  color: var(--text-color);
}

/*********/
/*********/
/*********/
header {
  position: sticky;
  z-index: 1;
  top: 0;
  padding-left: 5%;
  padding-left: 4vw;
  padding-right: 5%;
  padding-right: 4vw;
  background: var(--site-bg-color);
  transition: box-shadow 0.33s ease-out;
  will-change: box-shadow;
}
header .layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
}
header.stuck {
  transition: box-shadow 1s ease-out;
  box-shadow: 0 0 30px 0 var(--header-dropshadow);
}

.logo {
  line-height: 20px;
}
.logo a {
  display: inline-block;
  padding: 1em 0;
  line-height: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
}
.logo a:hover {
  color: var(--primary-color);
}

@keyframes swoosh {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.menu li {
  display: inline-block;
}
.menu li a {
  display: block;
  padding: 1em;
  line-height: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
}
.menu li a:hover {
  color: var(--primary-color);
}
.menu li:not(:last-child) {
  margin-right: -0.4em;
}
.menu.main-menu li {
  opacity: 0;
  transform: translateY(-100%);
  animation: 1s ease-out swoosh forwards;
}
.menu.main-menu li:nth-child(1) {
  animation-delay: 1s;
}
.menu.main-menu li:nth-child(2) {
  animation-delay: 1.5s;
}
.menu.main-menu li:nth-child(3) {
  animation-delay: 2s;
}
.menu.contact-menu li a {
  padding-left: 0;
  padding-right: 0;
}

.section-title {
  text-transform: uppercase;
}

.content {
  padding: 0 5%;
  padding: 0 4vw;
}

section {
  position: relative;
  margin-bottom: 30vh;
}
section .section-anchor {
  position: absolute;
  top: calc((var(--header-h) + 3rem) * -1);
}

.section-hero {
  margin: 20vh 0;
}
.section-hero .nope {
  text-decoration: line-through;
}
.section-hero .yep {
  font-size: clamp(2em, 4vw, 6em);
}

.section-about img {
  max-width: 200px;
  margin: 5vh auto;
  border-radius: 100%;
}
.section-about p {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 100px;
  }
  .main-menu {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 1em;
    background-color: var(--site-bg-color);
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
  }
}

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