@font-face {
  font-family: "Sw";
  src: url("./fonts/sw-regular-subset.woff2") format("woff2");
}
@font-face {
  font-family: "Sw";
  font-style: italic;
  font-display: fallback;
  src: url("./fonts/sw-regular-italic-subset.woff2") format("woff2");
}
@font-face {
  font-family: "Sw";
  font-weight: bold;
  font-display: fallback;
  src: url("./fonts/sw-semibold-subset.woff2") format("woff2");
}
@font-face {
  font-family: "Sw";
  font-weight: bold;
  font-style: italic;
  font-display: fallback;
  src: url("./fonts/sw-semibold-italic-subset.woff2") format("woff2");
}
@font-face {
  font-family: "Sw";
  font-stretch: condensed;
  src: url("./fonts/swcond-regular-subset.woff2") format("woff2");
}
@font-face {
  font-family: "Sw";
  font-weight: bold;
  font-stretch: condensed;
  font-display: fallback;
  src: url("./fonts/swcond-semibold-subset.woff2") format("woff2");
}
*,
:after,
:before {
  border: none;
  box-sizing: border-box
}
html {
  font-family: Sw, sans-serif;
  line-height: 1.5rem;
  font-size: 10px;
  text-underline-position: from-font;
  height: 100%;
}
body{
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0.5rem 0;
}
h1{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2em;
}
h2{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2em;
}
h4{
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child{
  margin-top: 0;
}
p{
  font-size: 1.4rem;
  line-height: 1.25em;
  margin: 1.2rem 0;
}
p:first-child{
  margin-top: 0;
}
#site-title{
  margin: 0;
}
#sidebar{
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100%;
  padding: 2.5rem;
  width: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#content{
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
#sidebar h2{
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0;
}
#sidebar a{
  color: black;
  text-decoration: none;
}
#rightbar{
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
#page{
  width: 66.66%;
  margin-left: auto;
}
#projects{
  display: none;
}
.project{
  display: flex;
  width: 100%;
  align-content: end;
}
.project-title{
  width: 33.33%;
  text-align: right;
  padding-right: 2.5rem;
}
.project-title p{
  font-size: 1.2rem;
  opacity: 0.5;
}
.project-content{
  width: 66.66%;
  position: relative;
}
.project-images img{
  height: calc(100vh - 5rem);
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
}
.project-content.show-text .project-images{
  display: none;
}
.project-description{
  min-height: calc(100vh - 5rem);
  max-width: 60rem;
  display: none;
}
.project-content.show-text .project-description{
  display: block;
}
.close{
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: block;
  user-select: pointer;
  background-image: url("./close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  height: 2rem;
}
.splide__arrow{
  border-radius: 0!important;
  background: none!important;
  height: 2rem!important;
}
.splide__arrow svg{
  display: none;
}
.splide__arrow:disabled{
  display: none;
}
.splide__arrow.splide__arrow--prev{
  left: 2.5rem;
}
.splide__arrow.splide__arrow--prev:after{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1.75px solid #111;
  border-left: 1.75px solid #111;
  transform: rotate(-45deg);
}
.splide__arrow.splide__arrow--next{
  right: 2.5rem;
}
.splide__arrow.splide__arrow--next:after{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1.75px solid #111;
  border-right: 1.75px solid #111;
  transform: rotate(45deg);
}
