@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Black.ttf?cf56c1b149d0a5e8d7c6503cd98b56a3);
  font-display: auto;
  font-weight: 900;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-BlackItalic.ttf?fd62a10743bd89a3d97caa48d89eb4f5);
  font-display: auto;
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Bold.ttf?f80816a5455d171f948d98c32f20c46e);
  font-display: auto;
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-BoldItalic.ttf?87d61cea6fe1d235d4a8a70304d05603);
  font-display: auto;
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Italic.ttf?87f3afe16a8c3c3706340b027aa43a2e);
  font-display: auto;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Light.ttf?333da16a3f3cc391d0876c6d773efc6f);
  font-display: auto;
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-LightItalic.ttf?c590382422f2742d788b8066d7c10ed4);
  font-display: auto;
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Medium.ttf?7c8d04cd831df3033c8a96a2668d645e);
  font-display: auto;
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-MediumItalic.ttf?82736aaa11c64709055f2b7f1c1dcb0f);
  font-display: auto;
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Regular.ttf?fc2b5060f7accec5cf74437196c1b027);
  font-display: auto;
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Thin.ttf?a732a12eb077422324070eba5dd22533);
  font-display: auto;
  font-weight: 100;
}
@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-ThinItalic.ttf?9d2ca34eae96e77c6eefcc531e02cbe9);
  font-display: auto;
  font-weight: 100;
  font-style: italic;
}
.navbar {
  height: 8vh;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 0px 30px;
  background-color: white;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid black;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .navbar {
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
    flex-direction: column;
    padding: 120px 30px 30px 120px;
    overflow: scroll;
    border: none;
    border-left: 1px solid black;
    left: 100vw;
    width: calc(100vw - 150px);
  }
}
@media screen and (max-width: 700px) {
  .navbar {
    padding: 60px 15px 15px 30px;
    width: calc(100vw - 45px);
  }
}
@media screen and (min-width: 1900px) {
  .navbar {
    height: 80px;
  }
}
.navbar__category {
  width: calc((100vw - 60px) / 5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .navbar__category {
    align-items: flex-start;
    text-align: left;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}
.navbar__name {
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .navbar__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .navbar__name {
    font-size: 16px;
  }
}
.navbar__name:hover {
  cursor: pointer;
  opacity: 60%;
}
.navbar__name:after {
  display: inline-block;
  margin-left: 0.355em;
  margin-bottom: -0.1em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.navbar__list {
  position: fixed;
  top: 8vh;
  max-height: 0px;
  background-color: white;
  width: calc((100vw - 60px) / 5 - 71px);
  display: flex;
  flex-direction: column;
  padding: 0 2vw;
  min-width: 140px;
  border: 1px solid black;
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: scroll;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  .navbar__list {
    position: relative;
    top: 0;
    border: none;
    overflow: hidden;
    padding-top: 0 !important;
    max-height: none;
    height: 0px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}
@media screen and (min-width: 1900px) {
  .navbar__list {
    top: 80px;
  }
}
.navbar__item {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vw;
}
@media screen and (max-width: 900px) {
  .navbar__item {
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.navbar__item:hover {
  cursor: pointer;
}
.navbar__item:hover img {
  opacity: 25%;
  transition: all 1s;
}
.navbar__item:hover p {
  opacity: 100%;
  transition: all 1s;
}
@media screen and (max-width: 900px) {
  .navbar__item:hover p {
    opacity: 60%;
    transition: none;
  }
}
.navbar__item p {
  position: absolute;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0%;
}
@media screen and (max-width: 900px) {
  .navbar__item p {
    opacity: 100%;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    margin: 16px 0;
    font-weight: 400;
    font-style: italic;
  }
}
@media screen and (max-width: 700px) {
  .navbar__item p {
    font-size: 14px;
    line-height: 18px;
    margin: 6px 0;
  }
}
.navbar__item picture {
  width: 100%;
}
.navbar__item img {
  width: 100%;
  height: 12vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 900px) {
  .navbar__item img {
    display: none;
  }
}
.navbar__overlay {
  background-color: transparent;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.navbar__toggle {
  display: none;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 11;
  background-color: white;
  border: 1px solid black;
  border-radius: 6px;
  height: 36px;
  width: 36px;
}
@media screen and (max-width: 900px) {
  .navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 700px) {
  .navbar__toggle {
    top: 25px;
    right: 25px;
  }
}
.navbar__toggle div {
  background-color: black;
  width: 26px;
  height: 1px;
  position: absolute;
}
.navbar__toggle-1 {
  margin-bottom: 14px;
}
.navbar__toggle-3 {
  margin-top: 14px;
}
.navbar__placeholder-image {
  width: 100%;
  height: 12vw;
  background-color: #eee;
}
@media screen and (max-width: 900px) {
  .navbar__placeholder-image {
    display: none;
  }
}

.error {
  font-family: "Roboto", sans-serif;
  color: black;
}
.error__head {
  width: calc(100vw - 600px);
  max-width: 1320px;
  margin: 200px 300px 100px;
}
@media screen and (max-width: 900px) {
  .error__head {
    margin: 80px 40px 100px;
    width: calc(100vw - 80px);
  }
}
@media screen and (max-width: 700px) {
  .error__head {
    margin: 80px 30px 100px;
    width: calc(100vw - 60px);
  }
}
.error__head h1 {
  font-size: 48px;
  font-weight: 500;
}
.error__head h2 {
  font-size: 24px;
  font-weight: 500;
}
.error__head h3 {
  font-size: 16px;
  font-weight: 400;
}
.error__head a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  color: black;
}
.error__head a:hover {
  cursor: pointer;
  opacity: 40%;
}

.slideshow {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  height: 92vh;
  margin-top: 8vh;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .slideshow {
    height: 100vh;
    margin-top: 0;
  }
}
@media screen and (min-width: 1900px) {
  .slideshow {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}
.slideshow img {
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.project {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  max-width: 1320px;
  margin: 200px 15vw 100px;
}
@media screen and (max-width: 900px) {
  .project {
    margin: 80px 40px 100px;
  }
}
@media screen and (max-width: 700px) {
  .project {
    flex-direction: column;
    margin: 80px 30px 100px;
  }
}
.project__text {
  margin-right: 2%;
  width: 48%;
}
@media screen and (max-width: 700px) {
  .project__text {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}
.project__text h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: black;
}
.project__text h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: black;
}
.project__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}
.project__text a {
  color: black;
}
.project__text a:hover {
  color: grey;
}
.project__box {
  border: 1px solid black;
  border-radius: 6px;
  padding: 20px 40px;
}
@media screen and (max-width: 900px) {
  .project__box {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 700px) {
  .project__box {
    padding: 10px 20px;
  }
}
.project__box p {
  border-bottom: 1px solid black;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: black;
  padding: 6px 0;
  margin: 0;
}
.project__box p:last-of-type {
  border: none;
}
.project__media {
  margin-left: 2%;
  margin-top: 54px;
  width: 48%;
}
@media screen and (max-width: 700px) {
  .project__media {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}
.project__media-image {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.project__media-image img {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.project__media-image p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: black;
  margin: 8px 0 40px;
}
.project__media-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: black;
  position: relative;
  z-index: 2;
}
.project__media-link p {
  margin: 8px 0 40px;
}
.project__media-link a {
  color: black;
  overflow-wrap: anywhere;
}
.project__media-link a:hover {
  color: grey;
}
.project__media-video {
  position: relative;
}
.project__media-video iframe {
  height: 25.2vw;
  border: none;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
@media screen and (max-width: 900px) {
  .project__media-video iframe {
    height: calc((100vw - 80px) * 0.48 / 4 * 3);
  }
}
@media screen and (max-width: 700px) {
  .project__media-video iframe {
    height: calc((100vw - 60px) / 4 * 3);
  }
}
@media screen and (min-width: 1900px) {
  .project__media-video iframe {
    height: 475.2px;
  }
}
.project__media-video p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: black;
  margin: 8px 0 40px;
}

body {
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
}
