@charset "UTF-8";
html, body {
  height: 100%;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  background: HSL(176, 87%, 3%);
}

body {
  width: 100%;
  animation: fade 0.5s ease-out 0s forwards;
}
@keyframes fade {
  0% {
    margin-top: -24px;
    opacity: 0;
  }
  100% {
    margin-top: 0px;
    opacity: 1;
  }
}

a {
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: none;
}
a button {
  background-color: #82C9FF;
  padding: 16px;
  border-radius: 5px;
  outline: none;
  border: none;
  color: black !important;
  cursor: pointer;
  font-size: 20px !important;
}
a button:hover {
  background-color: #4fb3ff;
}

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

.container {
  text-align: left;
  border-radius: 5px;
  padding: 24px 24px 0px 24px;
  font-size: 22px;
  line-height: 32px;
  margin: auto;
  right: 0;
  left: 0;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.container-work {
  background-color: HSL(176, 87%, 3%);
  position: relative;
  z-index: 1;
}

.hero-container {
  position: relative;
  isolation: isolate;
  background: radial-gradient(120% 100% at 15% 20%, hsl(210, 62%, 98%) 0%, hsl(205, 65%, 97%) 40%, hsl(50, 90%, 98%) 80%), radial-gradient(70% 55% at 75% 15%, hsl(205, 95%, 82%) 0%, hsla(205, 95%, 82%, 0) 60%), radial-gradient(70% 55% at 20% 90%, hsl(50, 100%, 80%) 0%, hsla(50, 100%, 80%, 0) 60%), radial-gradient(60% 50% at 50% 50%, hsla(12, 95%, 85%, 0.9) 0%, hsla(12, 95%, 85%, 0) 55%), radial-gradient(55% 45% at 35% 35%, hsla(330, 80%, 88%, 0.9) 0%, hsla(330, 80%, 88%, 0) 55%), radial-gradient(75% 60% at 90% 85%, hsla(190, 95%, 85%, 0.85) 0%, hsla(190, 95%, 85%, 0) 60%), linear-gradient(180deg, hsl(210, 60%, 99%) 0%, hsl(50, 85%, 99%) 100%);
  width: 100%;
  height: 100vh;
  padding: -24px 0 0 0;
}

.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"), radial-gradient(0.55px 0.55px at 18% 28%, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.08) 1px, transparent 1px), radial-gradient(0.55px 0.55px at 62% 72%, rgba(0, 0, 0, 0.06) 0, rgba(0, 0, 0, 0.06) 1px, transparent 1px), radial-gradient(0.55px 0.55px at 82% 42%, rgba(0, 0, 0, 0.06) 0, rgba(0, 0, 0, 0.06) 1px, transparent 1px), radial-gradient(0.85px 0.85px at 35% 85%, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 1px, transparent 1px), radial-gradient(0.85px 0.85px at 5% 55%, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 1px, transparent 1px), radial-gradient(1.1px 1.1px at 75% 50%, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0.04) 1px, transparent 1px), radial-gradient(1.4px 1.4px at 45% 40%, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 240px 240px, 120px 120px, 160px 160px, 200px 200px, 220px 220px, 260px 260px, 300px 300px, 340px 340px;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.35;
  mix-blend-mode: normal;
  filter: contrast(130%) brightness(100%);
}

.chip {
  color: #ADB1B6;
  background-color: #1E1E1E;
  width: fit-content;
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 24px;
}

.dot-active {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  margin-bottom: 2px;
  background-color: #08be24;
  border-radius: 50%;
  display: inline-block;
}

.dot-past {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  margin-bottom: 2px;
  background-color: #b4b4b4;
  border-radius: 50%;
  display: inline-block;
}

h1 {
  font-family: "Oleo Script", cursive;
  color: #010F0D;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: min(max(64px, 10vw), 80px);
  line-height: 68px;
  letter-spacing: -2px;
}

.linear-wipe {
  background: linear-gradient(to right, #4ab0ff 20%, #2f99ea 40%, #2f99ea 60%, #4ab0ff 80%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.big-emoji {
  margin-top: 40px;
  font-size: 54px;
}

.headline {
  font-size: 26px;
  line-height: 36px;
  color: #585a5a;
}

.tagline {
  padding: 0 0 16px 0;
  margin-top: 0;
  color: white;
}

.subtitle {
  margin-top: 0px;
  color: #010F0D;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
}

h2 {
  color: #eceeef;
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 40px;
}

.high-emph {
  color: #eceeef;
  font-weight: 400;
}

.high-emph-color {
  color: #eceeef;
}

.accent-emph {
  color: #82C9FF;
  font-size: 18px;
}

p, ul {
  margin: 5px 0;
  color: #ADB1B6;
}

ul {
  margin-bottom: 24px;
  list-style: none;
  padding-left: 0;
}

a {
  color: #82C9FF;
  font-weight: 400;
  position: relative;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 2px;
  background-color: #82C9FF;
  bottom: -6px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.15s ease-in-out;
}

a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.links {
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
  margin-bottom: 40px;
  font-size: 22px;
  color: #eceeef;
}
.links span {
  margin: 0 5px 0;
}
.links span:nth-child(1) {
  margin: 0 5px 0 0;
}

.personal-project-container {
  display: flex;
  background-color: #1E1E1E;
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 32px;
  border-radius: 6px;
  overflow-y: hidden;
  transition: flex-grow 0.3s ease-in-out;
  position: relative;
}

.view-project-link {
  visibility: hidden;
  position: relative;
  bottom: -20px; /* Adjust as needed */
  opacity: 0;
  height: 0px;
  transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.personal-project-container:hover .view-project-link {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  height: auto;
}

.pp-img {
  flex: 1 0 0;
  overflow: hidden;
}

.pp-info {
  flex: 2 0 0;
  padding: 24px;
}
.pp-info ul {
  margin-bottom: 0;
}

li.research-val-1, li.research-val-2, li.research-val-3 {
  position: relative;
}

li.research-val-1::before {
  content: "🔬";
  position: absolute;
  left: 0px;
}

li.research-val-2::before {
  content: "👁️";
  position: absolute;
  left: 0px;
}

li.research-val-3::before {
  content: "🔭";
  position: absolute;
  left: 0px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 0 0 6px;
}

.code {
  font-family: monospace;
  color: #E78F36;
  border: 1px solid #3E3E3E;
  padding: 4px;
  border-radius: 3px;
}

.debug {
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.3);
}

@media only screen and (max-width: 520px) {
  .personal-project-container {
    flex-direction: column;
  }
  img {
    height: 150px;
    border-radius: 6px 6px 0 0;
  }
  .pp-img {
    flex: 1;
    overflow: hidden;
  }
  .pp-info {
    flex: 1;
    padding: 24px;
  }
}
.work-exp-block {
  display: flex;
}

.work-exp__role {
  font-size: 18px;
  color: #eceeef;
}

.logo, .logo--primer, .logo--sofar, .logo--nautilus, .logo--twomoles, .logo--ro, .logo--f8, .logo--case, .logo--pvtl, .logo--vmw, .logo--hs {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 16px;
}
.logo--hs {
  background-image: url("img/logo-hs.png");
}
.logo--vmw {
  background-image: url("img/logo-vmw.png");
}
.logo--pvtl {
  background-image: url("img/logo-pvtl.png");
}
.logo--case {
  background-image: url("img/logo-case.png");
}
.logo--f8 {
  background-image: url("img/logo-f8.png");
}
.logo--ro {
  background-image: url("img/logo-ro.jpeg");
}
.logo--twomoles {
  background-image: url("img/logo-twomoles.png");
}
.logo--nautilus {
  background-image: url("img/logo-nl.png");
}
.logo--sofar {
  background-image: url("img/logo-sofar.jpeg");
}
.logo--primer {
  background-image: url("img/logo-primer.jpeg");
}

.faq-accordion {
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #3E3E3E;
}
.faq-item:first-child {
  border-top: 1px solid #3E3E3E;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #eceeef;
  font-size: 22px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  text-align: left;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: #82C9FF;
}
.faq-question[aria-expanded=true] {
  color: #82C9FF;
}
.faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  color: #82C9FF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #ADB1B6;
  font-size: 20px;
  line-height: 32px;
}
.faq-answer p {
  margin: 0 0 16px 0;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer a {
  color: #82C9FF;
  font-weight: 400;
}
.faq-answer a:hover {
  color: #4fb3ff;
}

.faq-item[data-expanded=true] .faq-answer {
  max-height: 1000px;
  padding-bottom: 24px;
}

.footer {
  color: #ADB1B6;
  text-align: center;
  padding: 24px 24px 64px 24px;
  line-height: 24px;
}

.body-color {
  color: #ADB1B6;
}

.highlights-container {
  display: flex;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.highlight-row-item {
  transition: transform 0.3s ease;
}

.highlight-image, .highlight-image--piv-medicare, .highlight-image--ro-tasks, .highlight-image--ro, .highlight-image--ro-patientchart, .highlight-image--nautilus, .highlight-image--sofar-fleet, .highlight-image--sofar {
  height: 240px;
  width: 384px;
  border-radius: 6px;
  background-size: cover;
  background-repeat: no-repeat;
}
.highlight-image--sofar {
  background-image: url("img/slider-1-sofar.png");
  background-position: 42% 20%;
  background-size: 135%;
}
.highlight-image--sofar-fleet {
  background-image: url("img/fleet-view.png");
  background-position: 3% 8%;
  background-size: 100%;
}
.highlight-image--nautilus {
  background-image: url("img/slider-2-nautilus.png");
  background-position: 3% 8%;
  background-size: 100%;
}
.highlight-image--ro-patientchart {
  background-image: url("img/slider-ro-patientchart.png");
  background-position: 3% 8%;
  background-size: 100%;
}
.highlight-image--ro {
  background-image: url("img/slider-3-ro-test.png");
  background-position: 25% 70%;
  background-size: 100%;
}
.highlight-image--ro-tasks {
  background-image: url("img/slider-4-ro-taskmgmt.png");
  background-position: 30% 22%;
  background-size: 102%;
}
.highlight-image--piv-medicare {
  background-image: url("img/slider-5-callcenter.png");
  background-position: 40% 0%;
  background-size: 140%;
}

.highlight-caption {
  margin-top: 8px;
  color: #eceeef;
  font-size: 16px;
  font-weight: bold;
}

.highlight-caption-desc {
  color: #ADB1B6;
  font-size: 14px;
  line-height: 22px;
  padding-right: 64px;
}

.highlights-btn-container {
  display: flex;
}

.highlights-btn, .highlights-btn--r, .highlights-btn--l {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #82C9FF;
  cursor: pointer;
}
.highlights-btn--l {
  background-image: url("img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.highlights-btn--r {
  background-image: url("img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}

.highlights-btn.btn-disabled, .btn-disabled.highlights-btn--l, .btn-disabled.highlights-btn--r {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: #82C9FF;
}

.marquee-header {
  color: #eceeef;
  font-size: 18px;
  font-weight: bold;
}

.marquee-content {
  font-size: 18px;
  line-height: 28px;
}
.marquee-content li {
  margin-top: 8px;
}

strong {
  color: #eceeef;
}

.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 1;
  transition: opacity 100ms ease-in-out;
}

.modal.hidden {
  display: none;
}

.modal.fade-in {
  opacity: 1;
}

.modal.fade-out {
  opacity: 0;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
}

.modal-content img {
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 8px auto 0;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  color: #82C9FF;
  cursor: pointer;
}

.modal-carousel-controls {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10000;
}

.modal-carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #82C9FF;
  background-image: url("img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.modal-carousel-btn--r {
  transform: rotate(180deg);
}

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