@import url("https://fonts.googleapis.com/css2?family=Gideon+Roman&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
p {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

html {
  font-size: 10px;
  font-family: "Gideon Roman", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #18181b;
  background-color: white;
  color: #FAF9F6;
  color: black;
  font-size: 18px;
}

a,
a:active,
a:visited {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transform: translateY(-100px);
  transition: all 0.6s ease-in-out;
}
header a {
  position: relative;
  left: 45px;
  z-index: 100;
  font-size: 3rem;
  color: #4d5d53;
}
@media (max-width: 768px) {
  header a {
    left: 15px;
  }
}
header.init {
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

.links-wrapper a {
  position: relative;
  display: inline-block;
  color: black;
  margin-right: 35px;
}
.links-wrapper a:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-image: url("assets/link-external.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.links-wrapper a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -3px;
  z-index: -1;
  width: 0;
  --p: 5px;
  height: 5px;
  aspect-ratio: 3/2;
  clip-path: polygon(var(--p) 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
  background: #4d5d53;
  transition: all 0.3s ease-in-out;
}
.links-wrapper a:hover:after {
  width: 100%;
}

main {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 45px;
}

footer {
  padding: 0 45px;
}

h1 {
  font-size: 3.2rem;
}
h1 span {
  display: block;
}
h1 span.name {
  font-size: 3.2rem;
  font-family: "Gideon Roman", serif;
  font-weight: 400;
  font-style: normal;
}
h1 span.title {
  font-size: 2.4rem;
  opacity: 0.6;
}
h1 span em {
  color: #4d5d53;
  font-style: normal;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.tab-text span {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.frame {
  height: inherit;
  margin: 0 auto;
}

section {
  position: relative;
  border-bottom: 1px solid rgb(203, 213, 225);
}
section .content-wrap {
  padding: 60px 0 60px;
}
.intro p {
  font-size: 1.8rem;
}

.projects .projects-wrap .project-wrap {
  position: relative;
  margin-bottom: 75px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width: 768px) {
  .projects .projects-wrap .project-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .projects .projects-wrap .project-wrap a {
    margin-left: 0;
    margin-right: auto;
  }
}
.projects .projects-wrap .project-wrap:nth-last-of-type(even) {
  flex-direction: row-reverse;
}
.projects .projects-wrap .project-wrap:nth-last-of-type(even) .project-text {
  padding-right: 25px;
}
@media (max-width: 768px) {
  .projects .projects-wrap .project-wrap:nth-last-of-type(even) .project-text {
    padding-right: 0;
  }
}
.projects .projects-wrap .project-wrap:nth-last-of-type(odd) .project-text {
  padding-left: 25px;
}
@media (max-width: 768px) {
  .projects .projects-wrap .project-wrap:nth-last-of-type(odd) .project-text {
    padding-left: 0;
  }
}
.projects .projects-wrap .project-wrap .project-text {
  width: 100%;
}
.projects .projects-wrap .project-wrap a {
  position: relative;
  max-width: 520px;
  width: 100%;
  flex: 0 0 auto;
}
.projects .projects-wrap .project-wrap a:before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-image: url("assets/link-external.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.projects .projects-wrap .project-wrap a:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -40px;
  z-index: -1;
  width: 0%;
  --p: 20px;
  height: 30px;
  aspect-ratio: 3/2;
  clip-path: polygon(var(--p) 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
  transition: all 0.6s ease-in-out;
}
.projects .projects-wrap .project-wrap a .project-img {
  position: relative;
  overflow: hidden;
  height: 282px;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 568px) {
  .projects .projects-wrap .project-wrap a .project-img {
    height: 220px;
  }
}
@media (max-width: 420px) {
  .projects .projects-wrap .project-wrap a .project-img {
    height: 180px;
  }
}
.projects .projects-wrap .project-wrap a .project-img img,
.projects .projects-wrap .project-wrap a .project-img video {
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.projects .projects-wrap .project-wrap a:hover:after {
  width: 100%;
}
.projects .projects-wrap .project-wrap a:hover .project-img {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
.projects .projects-wrap .project-wrap a:hover .project-img:before {
  opacity: 0;
}
.projects .projects-wrap .project-wrap .project-text p {
  margin-top: 8px;
}
.projects .projects-wrap .project-wrap.p-ipa a:after {
  background: #11853d;
}
.projects .projects-wrap .project-wrap.p-psgs a:after {
  background: #3B93E3;
}
.projects .projects-wrap .project-wrap.p-vcf a:after {
  background: #ff4b00;
}
.projects .projects-wrap .project-wrap.p-1919 a:after {
  background: #1e2145;
}
.projects .projects-wrap .project-wrap.p-kct a:after {
  background: #c89128;
}
.projects .projects-wrap .project-wrap.p-amberton a:after {
  background: #e76948;
}
.projects .projects-wrap .project-wrap.p-pitcairn a:after {
  background: #030f42;
}
.projects .projects-wrap .project-wrap.p-gfbn a:after {
  background: #ae2840;
}

footer .frame {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
footer .content-wrap {
  padding: 25px 0 25px;
}
footer .footer-meta {
  display: flex;
  flex-wrap: no-wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer-meta {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  footer .footer-meta .links-wrapper {
    margin-bottom: 15px;
  }
  footer .footer-meta .links-wrapper a {
    margin-bottom: 7px;
  }
  footer .footer-meta .copyright,
  footer .footer-meta .links-wrapper {
    width: 100%;
  }
}

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