html {
  width: 100%;
  overflow-x: hidden;
}

body {
  color: #111;
  background-color: var(--page-background-color);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:root {
  --white: white;
  --black: black;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --header-nav-bkg: rgba(255, 255, 255, 0.85);
  --badge-square-color: black;
  --page-background-color: white;
  --project-menu-bkg: white;
  --font-family-mono: 'RobotoMono-VF', monospace;
  --font-family-base: 'Inter-VF', sans-serif;
}

.l-container {
  --l-max: 1200px;
  --l-pad: clamp(16px, 4vw, 48px);
  margin-inline: auto;
  margin: 0 15px;
}

.l-grid {
  --l-gap: clamp(12px, 2vw, 24px);
  display: grid;
  gap: var(--l-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.l-col-1 {
  grid-column: span 1;
}

.l-col-2 {
  grid-column: span 2;
}

.l-col-3 {
  grid-column: span 3;
}

.l-col-4 {
  grid-column: span 4;
}

.l-col-5 {
  grid-column: span 5;
}

.l-col-6 {
  grid-column: span 6;
}

.l-col-7 {
  grid-column: span 7;
}

.l-col-8 {
  grid-column: span 8;
}

.l-col-9 {
  grid-column: span 9;
}

.l-col-10 {
  grid-column: span 10;
}

.l-col-11 {
  grid-column: span 11;
}

.l-col-12 {
  grid-column: span 12;
}

.l-start-1 {
  grid-column-start: 1;
}

.l-start-2 {
  grid-column-start: 2;
}

.l-start-3 {
  grid-column-start: 3;
}

.l-start-4 {
  grid-column-start: 4;
}

.l-start-5 {
  grid-column-start: 5;
}

.l-start-6 {
  grid-column-start: 6;
}

.l-start-7 {
  grid-column-start: 7;
}

.l-start-8 {
  grid-column-start: 8;
}

.l-start-9 {
  grid-column-start: 9;
}

.l-start-10 {
  grid-column-start: 10;
}

.l-start-11 {
  grid-column-start: 11;
}

.l-start-12 {
  grid-column-start: 12;
}

@media (max-width: 639.98px) {
  .l-grid {
    grid-template-columns: 1fr;
  }
  .l-col-1,
  .l-col-2,
  .l-col-3,
  .l-col-4,
  .l-col-5,
  .l-col-6,
  .l-col-7,
  .l-col-8,
  .l-col-9,
  .l-col-10,
  .l-col-11,
  .l-col-12 {
    grid-column: 1/-1;
  }
}
@media (min-width: 640px) {
  .md-col-1 {
    grid-column: span 1;
  }
  .md-col-2 {
    grid-column: span 2;
  }
  .md-col-3 {
    grid-column: span 3;
  }
  .md-col-4 {
    grid-column: span 4;
  }
  .md-col-5 {
    grid-column: span 5;
  }
  .md-col-6 {
    grid-column: span 6;
  }
  .md-col-7 {
    grid-column: span 7;
  }
  .md-col-8 {
    grid-column: span 8;
  }
  .md-col-9 {
    grid-column: span 9;
  }
  .md-col-10 {
    grid-column: span 10;
  }
  .md-col-11 {
    grid-column: span 11;
  }
  .md-col-12 {
    grid-column: span 12;
  }
  .md-start-1 {
    grid-column-start: 1;
  }
  .md-start-2 {
    grid-column-start: 2;
  }
  .md-start-3 {
    grid-column-start: 3;
  }
  .md-start-4 {
    grid-column-start: 4;
  }
  .md-start-5 {
    grid-column-start: 5;
  }
  .md-start-6 {
    grid-column-start: 6;
  }
  .md-start-7 {
    grid-column-start: 7;
  }
  .md-start-8 {
    grid-column-start: 8;
  }
  .md-start-9 {
    grid-column-start: 9;
  }
  .md-start-10 {
    grid-column-start: 10;
  }
  .md-start-11 {
    grid-column-start: 11;
  }
  .md-start-12 {
    grid-column-start: 12;
  }
}
@media (min-width: 1024px) {
  .lg-col-1 {
    grid-column: span 1;
  }
  .lg-col-2 {
    grid-column: span 2;
  }
  .lg-col-3 {
    grid-column: span 3;
  }
  .lg-col-4 {
    grid-column: span 4;
  }
  .lg-col-5 {
    grid-column: span 5;
  }
  .lg-col-6 {
    grid-column: span 6;
  }
  .lg-col-7 {
    grid-column: span 7;
  }
  .lg-col-8 {
    grid-column: span 8;
  }
  .lg-col-9 {
    grid-column: span 9;
  }
  .lg-col-10 {
    grid-column: span 10;
  }
  .lg-col-11 {
    grid-column: span 11;
  }
  .lg-col-12 {
    grid-column: span 12;
  }
  .lg-start-1 {
    grid-column-start: 1;
  }
  .lg-start-2 {
    grid-column-start: 2;
  }
  .lg-start-3 {
    grid-column-start: 3;
  }
  .lg-start-4 {
    grid-column-start: 4;
  }
  .lg-start-5 {
    grid-column-start: 5;
  }
  .lg-start-6 {
    grid-column-start: 6;
  }
  .lg-start-7 {
    grid-column-start: 7;
  }
  .lg-start-8 {
    grid-column-start: 8;
  }
  .lg-start-9 {
    grid-column-start: 9;
  }
  .lg-start-10 {
    grid-column-start: 10;
  }
  .lg-start-11 {
    grid-column-start: 11;
  }
  .lg-start-12 {
    grid-column-start: 12;
  }
}
@font-face {
  font-family: "Inter-VF";
  src: url("https://ik.imagekit.io/patrikgarde/Inter-VariableFont_opsz,wght.woff2") format("woff2"), url("https://ik.imagekit.io/patrikgarde/Inter-VariableFont_opsz,wght.woff") format("woff");
  font-weight: 100 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoMono-VF";
  src: url("https://ik.imagekit.io/patrikgarde/RobotoMono-VariableFont_wght.woff2") format("woff2"), url("https: //ik.imagekit.io/patrikgarde/RobotoMono-VariableFont_wght.woff") format("woff");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: calc(15px + 0.390625vw);
  line-height: 1.4;
  font-family: var(--font-family-base);
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-style: normal;
  font-weight: 320;
  transition: line-height 0.4s, font-size 0.4s;
  letter-spacing: -0.0135em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}

h1,
.h1 {
  line-height: 1;
  font-size: 3em;
  letter-spacing: -0.035em;
}

h2,
.h2 {
  font-size: 1.6em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.25;
  font-weight: 350;
}

h4,
.h4 {
  font-size: 1.2em;
  line-height: 1.35;
  font-weight: 350;
}

h5,
.h5 {
  font-size: 1.1em;
  line-height: 1.35;
  font-weight: 400;
}

h6,
.h6 {
  font-size: 1.05em;
  line-height: 1.35;
  font-weight: 450;
}

p {
  -webkit-font-smoothing: auto;
}

ul, ol {
  padding-left: 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.badge {
  font-family: var(--font-family-mono);
}

.text-center {
  text-align: center;
}

.btn-close {
  box-sizing: content-box;
  width: 1.2em;
  height: 1.2em;
  padding: 0.25em 0.25em;
  background: transparent center/1.2em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>");
}
.btn-close:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 0.75;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}
.btn-close.btn-close-white {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>");
}
.btn-close.btn-close-red {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c00'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>");
}

header.nav {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 4px 0;
  margin: 0;
  background-color: var(--header-nav-bkg);
  align-items: center;
  height: auto;
  border-bottom: 0.75px solid transparent;
  transition: border-color 0.3s;
  letter-spacing: -0.011em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
header.nav.scrolled {
  border-color: rgba(0, 0, 0, 0.4);
}
header.nav .l-container {
  width: 100%;
  max-width: none;
}
header.nav .l-grid {
  align-items: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
header.nav .nav-left {
  grid-column: 1/span 4;
}
header.nav .project-title {
  grid-column: 5/span 4;
  justify-self: center;
}
header.nav .project-title h1 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.04em;
}
header.nav .nav-right {
  grid-column: 9/-1;
  justify-self: stretch;
}
@media (max-width: 639.98px) {
  header.nav .nav-left {
    grid-column: 1/span 7;
  }
  header.nav .project-title {
    display: none;
  }
  header.nav .nav-right {
    grid-column: 8/-1;
    justify-content: flex-end;
  }
}
header.nav .nav-left,
header.nav .nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header.nav .nav-right {
  justify-content: flex-end;
}
header.nav .nav a.is-active {
  text-decoration: underline;
}
header.nav .project-title {
  display: none;
  text-align: center;
}
@media (min-width: 992px) {
  header.nav .project-title {
    display: block;
  }
}
header.nav .nav-btn {
  display: flex;
  text-decoration: none;
  color: #000;
  background-color: transparent;
  border: none;
  margin: 0;
  border-radius: 0.3em;
  align-items: center;
  padding: 0.5em;
  transition: all 0.5s;
}
header.nav .nav-btn.pg-inc {
  font-size: 17px;
  font-weight: 600;
}
header.nav .nav-btn.pg-inc .svg-mask {
  background-color: black;
  mask-image: url("../img/_icons/pg-icon-blk.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/_icons/pg-icon-blk.png");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin-right: 0.35rem;
  width: 17.5px;
  height: 17.5px;
}
header.nav .nav-btn img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
}
header.nav .nav-btn:hover {
  background: black;
  color: #fff;
}
header.nav .nav-btn:hover .svg-mask {
  background-color: white;
}
header.nav .btn-projects {
  position: relative;
}
header.nav .btn-projects span {
  border-radius: 0.2em;
  margin-right: 0.2em;
  display: inline-block;
  box-sizing: border-box;
  border: solid 2.5px black;
  transition: opacity 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  height: 26px;
  width: 16px;
}
header.nav .btn-projects span:nth-of-type(2) {
  margin-right: 0.5em;
}
header.nav .btn-projects:hover span {
  border-color: white;
}
header.nav .btn-projects::before, header.nav .btn-projects::after {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 50%;
  width: 1.3em;
  height: 2.5px;
  background: #000;
  border-radius: 0.2em;
  opacity: 0;
  transform: translateY(-50%) translateX(25%) scale(1.2);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
header.nav .btn-projects::before {
  transform: translateY(-50%) translateX(25%) rotate(45deg) scale(1.2);
}
header.nav .btn-projects::after {
  transform: translateY(-50%) translateX(25%) rotate(-45deg) scale(1.2);
}
header.nav .btn-projects.is-open {
  color: white;
  background: black;
}
header.nav .btn-projects.is-open span {
  opacity: 0;
}
header.nav .btn-projects.is-open::before, header.nav .btn-projects.is-open::after {
  opacity: 1;
  transform: translateY(-50%) translateX(25%) rotate(45deg) scale(1.2);
  background: white;
}
header.nav .btn-projects.is-open::after {
  transform: translateY(-50%) translateX(25%) rotate(-45deg) scale(1.2);
}

.btn-hamburger {
  z-index: 5;
}
.btn-hamburger:hover #hamburger span {
  background: white;
}

#hamburger,
#hamburger span {
  display: inline-block;
  box-sizing: border-box;
}

#hamburger {
  position: relative;
  width: 24px;
  height: 17.5px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
#hamburger:focus:not(:focus-visible) {
  outline: none;
}
#hamburger span {
  background: #000;
  border-radius: 0.2em;
  width: 100%;
  height: 3px;
  position: absolute;
}
#hamburger span:nth-of-type(1) {
  top: 0;
  left: 0;
  transition: top 0.3s;
}
#hamburger span:nth-of-type(2) {
  top: 43%;
  left: 0;
  transition: opacity 0.3s;
}
#hamburger span:nth-of-type(3) {
  bottom: 0;
  left: 0;
  transition: bottom 0.3s;
}
#hamburger.active span:nth-of-type(1) {
  top: 43%;
  transform: rotate(-45deg);
  transition: top 0.3s cubic-bezier(0.36, -0.42, 0.68, -0.56), transform 0.3s 0.3s;
}
#hamburger.active span:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.05s 0.3s;
}
#hamburger.active span:nth-of-type(3) {
  top: 43%;
  transform: rotate(45deg);
  transition: bottom 0.3s cubic-bezier(0.36, -0.42, 0.68, -0.56), transform 0.3s 0.3s;
}

.hamburger-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(280px, 50vw, 500px);
  height: 100vh;
  visibility: hidden;
  display: flex;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9607843137);
  flex-direction: column;
  justify-content: center;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  box-shadow: -1em 0 2em rgba(0, 0, 0, 0.5);
}
.hamburger-menu menu {
  display: flex;
  flex-direction: column;
  margin: 10vh auto auto;
  justify-content: center;
  align-self: auto;
  padding: 0;
  width: 100%;
  text-align: left;
}
.hamburger-menu menu label {
  display: block;
  text-align: left;
  padding: 1em;
  text-transform: uppercase;
  font-size: 11px;
  color: #4388e3;
}
.hamburger-menu menu a {
  color: #000;
  padding: 1rem;
  font-size: 1.2em;
  text-decoration: none;
  line-height: 1.5;
  border-bottom: solid 0.5px rgba(0, 0, 0, 0.4);
  padding-left: clamp(2rem, 8vw, 10rem);
  font-weight: 550;
  letter-spacing: -0.025em;
}
.hamburger-menu menu a:hover {
  background: black;
  color: white;
}

.hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
}

.projects-menu {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.56);
  top: 70px;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.projects-menu .project-card-scroll {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  background: var(--project-menu-bkg);
  margin: 0;
  padding: 1.5em 0 2em 2em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.28);
  box-shadow: 0 2em 2em rgba(0, 0, 0, 0.1);
  border-top: solid 1px rgba(0, 0, 0, 0.2196078431);
}

.projects-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.projects-menu.is-open .project-card-scroll {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer-nav {
  margin-bottom: 1rem;
}
.footer-nav a {
  font-size: 1.3em;
  text-decoration: none;
  line-height: 1;
  padding: 0.5em;
  border-bottom: solid 1px black;
  display: block;
}
.footer-nav a:hover {
  background: black;
  color: white;
}
@media (min-width: 576px) {
  .footer-nav a {
    display: inline-block;
    border: none;
    border-radius: 0.3em;
  }
}

main {
  flex: 1 0 auto;
}
main section {
  padding: 2em 0 1.5em 0;
  padding: 4vw 1.5vw;
  margin: 0;
  position: relative;
}
@media (min-width: 640px) {
  main section {
    margin: 0 1.5em;
  }
}
main section > label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: -0.0315em;
  font-weight: 500;
  color: #3d92f1;
  opacity: 60%;
  font-family: RobotoMono-VF;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.email-link {
  border: solid 1px black;
  border-radius: 0.3em;
  padding: 0.12em 0.5em;
  text-decoration: none;
}
.email-link:hover {
  background-color: black;
  color: white;
  text-decoration: none;
}

[data-aos] {
  will-change: transform, opacity;
}

.specialty-bullets {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9em;
}
.specialty-bullets code {
  display: block;
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.specialty-bullets strong {
  letter-spacing: 0.02em;
  color: black;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-weight: 450;
  display: block;
}

.nowrap {
  white-space: nowrap;
}

code,
.code {
  display: block;
  font-family: var(--font-family-mono);
  font-weight: 400;
  letter-spacing: -0.055em;
  margin-bottom: 1em;
  font-size: 0.9em;
  line-height: 1.35;
}

ul.code {
  font-family: var(--font-family-mono);
  font-size: 0.7em;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 400;
  list-style-type: square;
  margin: 0;
  margin-bottom: 1.5em;
}

.has-divider {
  padding-top: 3em;
  padding-bottom: 4em;
}
.has-divider:before {
  content: "";
  position: absolute;
  left: -2em;
  top: 0;
  width: calc(100% + 2em);
  height: 0.5px;
  background: linear-gradient(90deg, rgba(90, 168, 255, 0.5), rgba(71, 173, 255, 0));
  pointer-events: none;
  transform-origin: left center;
}
.has-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 0.5px;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 148, 255, 0), rgba(90, 168, 255, 0.5), rgba(0, 148, 255, 0));
  pointer-events: none;
  transform-origin: center bottom;
}

.plus {
  position: absolute;
  top: -12px;
  left: -12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  pointer-events: all;
  background: transparent;
  z-index: 5;
  background: white;
  border-radius: 1em;
  --plus-color: #4388e3;
  --plus-opacity: .5;
}
.plus::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
  background-color: var(--plus-color);
  opacity: var(--plus-opacity);
}
.plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
  background-color: var(--plus-color);
  opacity: var(--plus-opacity);
}
.plus:hover {
  cursor: pointer;
  transform: rotate(360deg);
  transition: all 0.5s ease-in-out;
  animation: rotate 0.5s linear infinite;
  animation-iteration-count: 1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
}

.cta-btn, .cta-link {
  margin: 0.5rem 0.5rem 1rem;
  padding: 0.5em 1em;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.25rem;
}
.cta-btn:hover, .cta-link:hover {
  text-decoration: none;
}

.cta-btn {
  background: black;
  color: white;
}
.cta-btn:hover {
  background: #3288e7;
  color: white;
}

.cta-link {
  border: 1px solid black;
  color: black;
}
.cta-link:hover {
  border-color: #3288e7;
  color: #3288e7;
}

footer {
  margin-top: 0;
  padding-block: 18px 30px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}
footer .footer-legal {
  margin-top: 1em;
}

.intro h1 {
  font-weight: 400;
  line-height: 1.1;
  font-size: 3.2em;
}
@media (min-width: 1400px) {
  .intro .timeline-col {
    grid-column: 10/13;
  }
}

.about {
  background: #f7f6f5;
}
.about img {
  filter: saturate(0.5);
  border-radius: 50%;
  width: calc(10em + 5vw);
}
.about .h4 {
  color: #3288e7;
}
.about .download svg {
  transform: rotate(90deg);
}

.about-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
}
.about-contact a {
  color: cyan;
  text-decoration: none;
  font-weight: 500;
}
.about-contact a:hover {
  color: cyan;
  text-decoration: none;
}

.timeline {
  position: relative;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6.59rem;
  width: 1px;
  background: #5aa8ff;
}

.timeline-item {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 1.5rem;
  padding: 1.125rem 0;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 6.3rem;
  top: 1.3rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid #5aa8ff;
  z-index: 1;
}
.timeline-item:hover::before {
  background: #5aa8ff;
}
.timeline-item:hover .timeline-role {
  color: rgb(0, 0, 0);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5aa8ff;
  letter-spacing: 0.02rem;
  text-align: right;
  margin-right: 0.5rem;
}

.timeline-role {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.015em;
  margin-bottom: 0.1875rem;
  line-height: 1.2;
}

.timeline-company {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.005em;
  line-height: 1.1;
}

/*# sourceMappingURL=t2-about.css.map */
