@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&family=Josefin+Slab:wght@400;600&display=swap");
html, body {
  background-color: #FAF6F6;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "Josefin Slab", serif;
}

body h1, body h2, body h3, body h4, body p, body ul, body li, body a {
  padding: 0;
  margin: 0;
  line-height: 140%;
}
body caption, body .caption {
  font-style: italic;
}
body ul {
  list-style-type: none;
}
body ul li {
  display: inline-block;
}
body .clearfix {
  float: none;
  clear: both;
}
body .left {
  float: left;
}
body .right {
  float: right;
}

a, button.textButton {
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  display: inline-block;
  border: transparent;
  background-color: transparent;
  color: #0500FF;
  cursor: pointer;
}
a:focus, button.textButton:focus {
  outline-color: inherit;
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
  border-radius: 2px;
}
a.textButton:before, button.textButton.textButton:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  padding: 2px;
  border-radius: 8px;
  transition: 0.2s ease-in background-color;
}
a.textButton:not(.disabled):hover:before, button.textButton.textButton:not(.disabled):hover:before {
  background-color: rgba(5, 0, 255, 0.1);
}
a.ignoreArrow, button.textButton.ignoreArrow {
  background: none !important;
  padding-right: 2px !important;
}
a:not(.button)[target=_blank], button.textButton:not(.button)[target=_blank] {
  padding-right: 20px;
  background-image: url("../img/link-arrow.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
@media screen and (max-width: 840px) {
  a:not(.button)[target=_blank], button.textButton:not(.button)[target=_blank] {
    padding-right: 20px;
    background-size: 16px 16px;
  }
}

section {
  width: 100%;
  padding: 24px;
}

* {
  box-sizing: border-box;
}

.button {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: relative;
  cursor: pointer;
  padding: 8px 16px;
  font-family: "Josefin Sans", sans-serif;
}
.button:focus {
  outline-color: inherit;
  outline-offset: 4px;
  outline-width: 2px;
  outline-style: solid;
  border-radius: 2px;
}
.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  transition: 0.2s ease-in-out background-color;
}
.button:not(.disabled):hover {
  text-decoration: none;
}
.button:not(.disabled):hover:before {
  background-color: rgba(0, 0, 0, 0.1);
}
.button.dropdown {
  padding: 8px 40px 8px 16px;
}
.button.dropdown:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../img/icon-down-arrow.svg") center center no-repeat;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  transition: 0.2s ease-in transform;
}
.button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.social-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.social-wrap a {
  text-decoration: none;
  opacity: 0.5;
  transition: 0.4s ease-in-out opacity, 0.4s ease-in-out background-color;
  padding: 8px;
  display: flex;
  color: #000;
}
.social-wrap a:hover {
  text-decoration: none;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
.social-wrap a:focus {
  opacity: 1;
}
.social-wrap a:before {
  display: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #000;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
}

.field-row {
  display: flex;
  width: 100%;
  gap: 24px;
}

.field {
  position: relative;
  flex: 1;
}

input[type=text], input[type=email], textarea {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 24px;
  line-height: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  width: 100%;
  position: relative;
  padding: 16px 16px;
  text-align: left;
  transition: 0.4s ease-in-out;
  resize: none;
  outline-offset: 4px;
  outline-color: inherit;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: #000;
}
input[type=text]:focus ~ label, input[type=email]:focus ~ label, textarea:focus ~ label {
  transform: scale(0.6) translateY(-130%);
  padding: 0 16px;
  font-weight: 600;
}
input[type=text]:not(:placeholder-shown) ~ label, input[type=email]:not(:placeholder-shown) ~ label, textarea:not(:placeholder-shown) ~ label {
  transform: scale(0.6) translateY(-130%);
  padding: 0 16px;
  font-weight: 600;
}
input[type=text]:not(:valid) ~ label:after, input[type=email]:not(:valid) ~ label:after, textarea:not(:valid) ~ label:after {
  content: " doesn't look right. Please check again.";
}
input[type=text]:placeholder-shown ~ label:after, input[type=email]:placeholder-shown ~ label:after, textarea:placeholder-shown ~ label:after {
  content: " is required";
}
input[type=text] ~ label, input[type=email] ~ label, textarea ~ label {
  position: absolute;
  left: 8px;
  top: 16px;
  transform-origin: left top;
  pointer-events: none;
  background-color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  transition: 0.2s ease-in-out transform, 0.2s ease-in-out padding;
  background-color: white;
  padding: 0 8px;
}
input[type=text] ~ label:after, input[type=email] ~ label:after, textarea ~ label:after {
  display: none;
}
input[type=text][disabled], input[type=email][disabled], textarea[disabled] {
  background-color: #f9f9f9;
}
input[type=text][disabled] ~ label, input[type=email][disabled] ~ label, textarea[disabled] ~ label {
  background-color: #f9f9f9;
  opacity: 0.4;
}

h1, .smallcaps {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1280px) {
  h1, .smallcaps {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  h1, .smallcaps {
    font-size: 14px;
  }
}

h2 {
  font-family: "Josefin Slab", sans-serif;
  font-size: 48px;
}
@media screen and (max-width: 1280px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 840px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 840px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 32px;
  font-weight: 300;
}
@media screen and (max-width: 1280px) {
  h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  h4 {
    font-size: 16px;
  }
}

.primaryText, .timeline-wrap section .secondary-line-wrap,
.subProject .secondary-line-wrap, html, body, .button {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (max-width: 1280px) {
  .primaryText, .timeline-wrap section .secondary-line-wrap,
.subProject .secondary-line-wrap, html, body, .button {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 840px) {
  .primaryText, .timeline-wrap section .secondary-line-wrap,
.subProject .secondary-line-wrap, html, body, .button {
    font-size: 16px;
    line-height: 24px;
  }
}

.text, .portfolioSwitch, footer, .form-error, .subProject .project-description, .subProject .secondary-line-wrap {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 1280px) {
  .text, .portfolioSwitch, footer, .form-error, .subProject .project-description, .subProject .secondary-line-wrap {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 840px) {
  .text, .portfolioSwitch, footer, .form-error, .subProject .project-description, .subProject .secondary-line-wrap {
    font-size: 14px;
    line-height: 20px;
  }
}

section.intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 66vh;
  margin-bottom: 120px;
}
section.intro h2 {
  margin: 64px 0;
}

.logo-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.logo-name-wrap img.logo {
  width: 48px;
  height: 48px;
}

.timeline-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px;
}

.timeline-wrap section .project-description:last-child {
  padding-bottom: 64px;
}

.timeline-wrap section,
.subProject {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .timeline-wrap section,
.subProject {
    gap: 24px;
  }
}
@media screen and (max-width: 840px) {
  .timeline-wrap section,
.subProject {
    gap: 16px;
  }
}
.timeline-wrap section .date-wrap,
.timeline-wrap section .project-wrap,
.subProject .date-wrap,
.subProject .project-wrap {
  flex: 1;
}
.timeline-wrap section .date-wrap,
.subProject .date-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 840px) {
  .timeline-wrap section .date-wrap,
.subProject .date-wrap {
    display: none;
  }
}
.timeline-wrap section .mobile-date-wrap,
.subProject .mobile-date-wrap {
  display: none;
  padding-top: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media screen and (max-width: 840px) {
  .timeline-wrap section .mobile-date-wrap,
.subProject .mobile-date-wrap {
    display: block;
  }
}
.timeline-wrap section .dot-wrap,
.subProject .dot-wrap {
  align-self: stretch;
  position: relative;
}
.timeline-wrap section .dot-wrap:before,
.subProject .dot-wrap:before {
  content: "";
  position: absolute;
  width: 4px;
  margin-left: -2px;
  height: 100%;
  left: 50%;
  top: 20px;
  border-radius: 2px;
}
@media screen and (max-width: 1280px) {
  .timeline-wrap section .dot-wrap:before,
.subProject .dot-wrap:before {
    width: 2px;
    margin-left: -1px;
  }
}
.timeline-wrap section .timeline-dot,
.subProject .timeline-dot {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
  transform: translateY(-20px);
}
@media screen and (max-width: 1280px) {
  .timeline-wrap section .timeline-dot,
.subProject .timeline-dot {
    width: 40px;
    height: 40px;
    transform: translateY(0);
  }
}
.timeline-wrap section .timeline-dot:after,
.subProject .timeline-dot:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border: 6px solid #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .timeline-wrap section .timeline-dot:after,
.subProject .timeline-dot:after {
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border-width: 3px;
  }
}
.timeline-wrap section .project-wrap,
.subProject .project-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding-bottom: 64px;
}
.timeline-wrap section .logo,
.subProject .logo {
  max-width: 75%;
}
.timeline-wrap section .secondary-line-wrap,
.subProject .secondary-line-wrap {
  display: flex;
  gap: 16px;
  font-family: "Josefin Sans";
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .timeline-wrap section .secondary-line-wrap,
.subProject .secondary-line-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .timeline-wrap section .secondary-line-wrap .separator,
.subProject .secondary-line-wrap .separator {
    display: none;
  }
}
.timeline-wrap section .secondary-line-wrap .separator,
.subProject .secondary-line-wrap .separator {
  width: 1px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.4);
}
.timeline-wrap section .secondary-line-wrap .separatorWrapper,
.subProject .secondary-line-wrap .separatorWrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1280px) {
  .timeline-wrap section .secondary-line-wrap .separatorWrapper,
.subProject .secondary-line-wrap .separatorWrapper {
    gap: 8px;
  }
}
.timeline-wrap section .secondary-line-wrap .unavail-text,
.subProject .secondary-line-wrap .unavail-text {
  opacity: 0.4;
}
.timeline-wrap section .secondary-line-wrap .role,
.subProject .secondary-line-wrap .role {
  font-weight: 600;
}
.timeline-wrap section .secondary-line-wrap a,
.subProject .secondary-line-wrap a {
  color: #0500FF;
  padding-top: 8px;
}
.timeline-wrap section .logo img,
.subProject .logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.timeline-wrap section .project-description,
.subProject .project-description {
  padding: 8px 0;
}
.timeline-wrap section.kumospace .timeline-dot,
.subProject.kumospace .timeline-dot {
  background-color: rgba(146, 219, 123, 0.2);
}
.timeline-wrap section.kumospace .timeline-dot:after,
.timeline-wrap section.kumospace .dot-wrap:before, .timeline-wrap section.kumospace + .subProjectsWrapper.hidden:after,
.subProject.kumospace .timeline-dot:after,
.subProject.kumospace .dot-wrap:before,
.subProject.kumospace + .subProjectsWrapper.hidden:after {
  background-color: #92DB7B;
}
.timeline-wrap section.freelance .timeline-dot,
.subProject.freelance .timeline-dot {
  background-color: rgba(0, 0, 0, 0.2);
}
.timeline-wrap section.freelance .timeline-dot:after,
.timeline-wrap section.freelance .dot-wrap:before, .timeline-wrap section.freelance + .subProjectsWrapper.hidden:after,
.subProject.freelance .timeline-dot:after,
.subProject.freelance .dot-wrap:before,
.subProject.freelance + .subProjectsWrapper.hidden:after {
  background-color: #000000;
}
.timeline-wrap section.freelance .role + .separator,
.subProject.freelance .role + .separator {
  display: none;
}
.timeline-wrap section.ugpc .timeline-dot,
.subProject.ugpc .timeline-dot {
  background-color: rgba(20, 143, 182, 0.2);
}
.timeline-wrap section.ugpc .timeline-dot:after,
.timeline-wrap section.ugpc .dot-wrap:before, .timeline-wrap section.ugpc + .subProjectsWrapper.hidden:after,
.subProject.ugpc .timeline-dot:after,
.subProject.ugpc .dot-wrap:before,
.subProject.ugpc + .subProjectsWrapper.hidden:after {
  background-color: #148FB6;
}
.timeline-wrap section.oscar .timeline-dot,
.subProject.oscar .timeline-dot {
  background-color: rgba(0, 59, 222, 0.2);
}
.timeline-wrap section.oscar .timeline-dot:after,
.timeline-wrap section.oscar .dot-wrap:before, .timeline-wrap section.oscar + .subProjectsWrapper.hidden:after,
.subProject.oscar .timeline-dot:after,
.subProject.oscar .dot-wrap:before,
.subProject.oscar + .subProjectsWrapper.hidden:after {
  background-color: #003BDE;
}
.timeline-wrap section.acupuncture .timeline-dot,
.subProject.acupuncture .timeline-dot {
  background-color: rgba(18, 144, 70, 0.2);
}
.timeline-wrap section.acupuncture .timeline-dot:after,
.timeline-wrap section.acupuncture .dot-wrap:before, .timeline-wrap section.acupuncture + .subProjectsWrapper.hidden:after,
.subProject.acupuncture .timeline-dot:after,
.subProject.acupuncture .dot-wrap:before,
.subProject.acupuncture + .subProjectsWrapper.hidden:after {
  background-color: #129046;
}
.timeline-wrap section.huge .timeline-dot,
.subProject.huge .timeline-dot {
  background-color: rgba(234, 23, 140, 0.2);
}
.timeline-wrap section.huge .timeline-dot:after,
.timeline-wrap section.huge .dot-wrap:before, .timeline-wrap section.huge + .subProjectsWrapper.hidden:after,
.subProject.huge .timeline-dot:after,
.subProject.huge .dot-wrap:before,
.subProject.huge + .subProjectsWrapper.hidden:after {
  background-color: #EA178C;
}
.timeline-wrap section.cmu .timeline-dot,
.subProject.cmu .timeline-dot {
  background-color: rgba(174, 0, 0, 0.2);
}
.timeline-wrap section.cmu .timeline-dot:after,
.timeline-wrap section.cmu .dot-wrap:before, .timeline-wrap section.cmu + .subProjectsWrapper.hidden:after,
.subProject.cmu .timeline-dot:after,
.subProject.cmu .dot-wrap:before,
.subProject.cmu + .subProjectsWrapper.hidden:after {
  background-color: #AE0000;
}

.subProject {
  transition: 0.4s ease-in-out;
}
.subProject:nth-child(1), .subProject:nth-child(1) .project-wrap, .subProject:nth-child(1) .date-wrap {
  transition-delay: 0s;
}
.subProject:nth-child(2), .subProject:nth-child(2) .project-wrap, .subProject:nth-child(2) .date-wrap {
  transition-delay: 0.15s;
}
.subProject:nth-child(3), .subProject:nth-child(3) .project-wrap, .subProject:nth-child(3) .date-wrap {
  transition-delay: 0.3s;
}
.subProject:nth-child(4), .subProject:nth-child(4) .project-wrap, .subProject:nth-child(4) .date-wrap {
  transition-delay: 0.45s;
}
.subProject:nth-child(5), .subProject:nth-child(5) .project-wrap, .subProject:nth-child(5) .date-wrap {
  transition-delay: 0.6s;
}
.subProject:nth-child(6), .subProject:nth-child(6) .project-wrap, .subProject:nth-child(6) .date-wrap {
  transition-delay: 0.75s;
}
.subProject:nth-child(1) .timeline-dot {
  transition-delay: 0.3s;
}
.subProject:nth-child(2) .timeline-dot {
  transition-delay: 0.45s;
}
.subProject:nth-child(3) .timeline-dot {
  transition-delay: 0.6s;
}
.subProject:nth-child(4) .timeline-dot {
  transition-delay: 0.75s;
}
.subProject:nth-child(5) .timeline-dot {
  transition-delay: 0.9s;
}
.subProject:nth-child(6) .timeline-dot {
  transition-delay: 1.05s;
}
.subProject:last-child .project-wrap {
  padding-bottom: 64px;
}
.subProject .secondary-line-wrap .logo img {
  height: 100%;
  width: auto;
}
.subProject.probably-genetic .secondary-line-wrap .logo {
  height: 48px;
  overflow: visible;
}
.subProject.probably-genetic .secondary-line-wrap .logo img {
  height: 80px;
  max-height: none;
}
.subProject.ribbon .secondary-line-wrap .logo {
  height: 32px;
  padding-bottom: 8px;
}
.subProject .timeline-dot {
  transform-origin: center center;
  transform: scale(1);
  transition: 0.2s ease-in transform;
  transition-delay: 0.4s;
}
.subProject .project-wrap, .subProject .date-wrap {
  opacity: 1;
  transform: scale(1) translateX(Y);
  transition: 0.2s ease-in transform;
}
.subProject .date-wrap {
  transform-origin: right center;
}
.subProject .project-wrap {
  padding-bottom: 32px;
  gap: 0;
  transform-origin: left center;
}
.subProject .project-wrap > * {
  padding-left: 10%;
}
.subProject .secondary-line-wrap {
  font-weight: 300;
  width: 100%;
}
.subProject .secondary-line-wrap .logo {
  height: 32px;
}
@media screen and (max-width: 840px) {
  .subProject .secondary-line-wrap .logo {
    margin-bottom: 4px;
  }
}
.subProject .secondary-line-wrap .separator {
  height: 2px;
  width: 2px;
}
.subProject .timeline-dot {
  width: 40px;
  height: 40px;
  transform: translateY(0);
}
.subProject .timeline-dot:after {
  border-width: 3px;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
}

.subProjectsWrapper {
  overflow: hidden;
  max-height: 2500px;
  transition: 0.4s ease-in max-height;
}
.subProjectsWrapper:has(> :nth-child(1):last-child) {
  max-height: 300px;
  transition: 0.2s ease-in max-height;
}
.subProjectsWrapper:has(> :nth-child(2):last-child) {
  max-height: 600px;
  transition: 0.3s ease-in max-height;
}
.subProjectsWrapper:has(> :nth-child(3):last-child) {
  max-height: 900px;
  transition: 0.4s ease-in max-height;
}
.subProjectsWrapper:has(> :nth-child(4):last-child) {
  max-height: 1200px;
  transition: 0.4s ease-in max-height;
}
.subProjectsWrapper:has(> :nth-child(5):last-child) {
  max-height: 1500px;
  transition: 0.5s ease-in max-height;
}
.subProjectsWrapper:has(> :nth-child(6):last-child) {
  max-height: 1800px;
  transition: 0.6s ease-in max-height;
}

.subProjectsWrapper.hidden {
  position: relative;
  padding-bottom: 48px;
  max-height: 0px !important;
}
.subProjectsWrapper.hidden:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .subProjectsWrapper.hidden:after {
    width: 2px;
  }
}
@media screen and (max-width: 840px) {
  .subProjectsWrapper.hidden:after {
    left: 19px;
    right: auto;
    margin: auto;
  }
}
.subProjectsWrapper.hidden .subProject {
  pointer-events: none;
  opacity: 0;
  transition-delay: 0s !important;
}
.subProjectsWrapper.hidden .project-wrap {
  transform: scale(1.4) translateY(60px);
  opacity: 0;
  transition-delay: 0s !important;
}
.subProjectsWrapper.hidden .date-wrap {
  transition-delay: 0s !important;
  transform: scale(1.4) translateY(60px);
  opacity: 0;
}
.subProjectsWrapper.hidden .timeline-dot {
  transform: translateY(-20px) scale(0);
  transition-delay: 0s !important;
}
@media screen and (max-width: 1280px) {
  .subProjectsWrapper.hidden .timeline-dot {
    transform: translateY(0) scale(0);
  }
}

.show-more.collapse:after {
  transform: rotate(180deg);
}

.about-me {
  display: flex;
  max-width: 1200px;
  width: 100%;
  padding: 10vh 24px;
  margin: 0 auto;
  gap: 5%;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .about-me {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
.about-me > * {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .about-me > * {
    width: 100%;
  }
  .about-me > *.me {
    max-width: 75%;
  }
}
.about-me img {
  max-width: 420px;
  height: auto;
  border-radius: 8px;
}
.about-me .about-wrap {
  flex-grow: 1;
}
.about-me .about-wrap p {
  margin-top: 16px;
}

.contact-me-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 10vh 0;
}

.contact-card {
  width: 100%;
  padding: 48px 48px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin-top: 24px;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .contact-card {
    padding: 24px;
  }
}

.cta-row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .cta-row {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }
}

input[type=submit].button {
  background-color: #000;
  color: #fff;
  outline-color: #000;
  outline-offset: 4px;
  outline-width: 2px;
  transition: 0.2s ease-in background-color;
}
input[type=submit].button:not(.disabled):hover {
  background-color: #333;
}

.form-error {
  text-align: left;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
  border-top: 0 solid rgba(0, 0, 0, 0.2);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: 0.2s ease-in padding-top, 0.2s ease-in margin-top, 0.2s ease-in border-top-width, 0.4s ease-in opacity;
}
.form-error.show {
  padding-top: 24px;
  margin-top: 24px;
  border-top-width: 1px;
  opacity: 1;
  height: auto;
}
.form-error p {
  max-width: 100%;
  color: #999;
}

form#message textarea {
  min-height: 8em;
}

footer {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  margin: 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  footer {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  footer .item {
    text-align: left;
  }
}
footer * {
  color: #333;
}

.archive {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fakeSelectAndLabel {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.fakeSelect {
  position: relative;
  min-width: 80px;
}
.fakeSelect .item.selected {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.fakeSelect .item.selected:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  transition: 0.2s ease-in-out background-color;
}
.fakeSelect .item.selected:hover:before {
  background-color: rgba(0, 0, 0, 0.1);
}
.fakeSelect select {
  display: none;
}
.fakeSelect.open .itemWrap {
  max-height: 200px;
  opacity: 1;
}
.fakeSelect .item {
  padding: 4px 8px;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in background-color;
  position: relative;
}
.fakeSelect .item.selected:after {
  background: url("../img/icon-down-arrow.svg") right center no-repeat;
  transform: rotate(180deg);
}
.fakeSelect .item.sel:after {
  background: url("../img/icon-check.svg") right center no-repeat;
}
.fakeSelect .item.selected:after, .fakeSelect .item.sel:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
}
.fakeSelect .item.sel {
  font-weight: 600;
  background-color: #efefef;
}
.fakeSelect .itemWrap {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
  max-height: 0px;
  opacity: 0;
  transition: 0.4s ease-in max-height, 0.2s ease-in opacity;
}
.fakeSelect .itemWrap .item:hover:before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(5, 0, 255, 0.1);
}

.portfolioSwitch {
  padding: 4px 8px;
}

.button-tooltip-wrap {
  position: relative;
}
.button-tooltip-wrap.disabled:hover .tooltip {
  transform: translateY(0);
  opacity: 1;
}

.disabled .button {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background-color: #000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  display: inline-block;
  white-space: nowrap;
  font-weight: 300;
  margin-bottom: 8px;
  transform: translateY(16px);
  opacity: 0;
  transition: 0.2s ease-in transform, 0.2s ease-in opacity;
}
