@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  font-family: "Roboto Condensed", san-serif;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 25px;
  font-weight: 350;
}

:root {
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --smooth-box:
    0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048),
    0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072),
    0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
  --orange: #ff9100;
  --dark-orange: #775518 ;
}

.fade-in, main section .timeline-container details.appear, main section .content .card.appear, main section.appear, nav .sub-menu-item.appear {
  -webkit-animation: fade-in 3s var(--ease-out-quint);
          animation: fade-in 3s var(--ease-out-quint);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in, header li:last-of-type.appear {
  -webkit-animation: slide-in 1s var(--ease-out-quint);
          animation: slide-in 1s var(--ease-out-quint);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes slide-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slide-down {
  -webkit-animation: slide-down 0.5s var(--ease-out-quint);
          animation: slide-down 0.5s var(--ease-out-quint);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes slide-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.visually-hidden, main section#contact #form-container #need-checklists fieldset input, main section .timeline-container details summary, h2, h3 {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}

body {
  background: black;
  position: relative;
  overflow-x: hidden;
}

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

p {
  margin: 0 0 20px 0;
  line-height: 1.4;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

#container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  height: 100%;
  padding: 10px;
  display: grid;
  grid-template-areas: "header header" "nav main" "footer footer";
  grid-template-columns: 270px 1fr;
  grid-template-rows: auto auto auto;
}

header {
  grid-area: header;
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #open-nav {
  display: none;
  border: none;
  margin-right: 10px;
  background: none;
  cursor: pointer;
}
header #open-nav .menu-state .bar-container, header #open-nav.menu-state .bar-container {
  border: 3px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  position: relative;
}
header #open-nav .menu-state .bar-container .bar, header #open-nav.menu-state .bar-container .bar {
  display: block;
  width: 17px;
  height: 2px;
  background: white;
  margin-bottom: 3px;
  position: relative;
  top: 1px;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
header #open-nav.close #bar-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}
header #open-nav.close #bar-2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header #open-nav.close #bar-3 {
  opacity: 0;
}
header #open-nav.close:hover #bar-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}
header #open-nav.close:hover #bar-2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 17px;
  top: 1px;
  right: 0px;
}
header #open-nav.close:hover #bar-3 {
  opacity: 0;
}
header #open-nav.open #bar-1, header #open-nav:hover #bar-1, header #open-nav:focus #bar-1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 6px;
}
header #open-nav.open #bar-2, header #open-nav:hover #bar-2, header #open-nav:focus #bar-2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 12px;
  top: 6px;
  right: -4px;
}
header #open-nav.open #bar-3, header #open-nav:hover #bar-3, header #open-nav:focus #bar-3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
  right: 4px;
}
header #open-nav:hover .bar-container, header #open-nav:focus .bar-container {
  border-color: var(--orange);
}
header #open-nav:hover .bar-container .bar, header #open-nav:focus .bar-container .bar {
  background: var(--orange);
}
header #breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
header li {
  position: relative;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header li a {
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
header li a:hover {
  color: var(--orange);
}
header li a:not(#timpaikco-link) {
  font-size: 25px;
}
header li a:not(.current) {
  opacity: 0.5;
}
header li a:not(.current):hover {
  opacity: 1;
}
header li:not(:last-child)::after {
  display: block;
  position: absolute;
  content: "/";
  top: 50%;
  right: -25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--dark-orange);
}
header li:last-of-type {
  opacity: 0;
}
header li:first-of-type {
  opacity: 1;
}
header #timpaikco-link {
  font-weight: 400;
  font-size: 28px;
  position: relative;
  top: -1px;
}
header #toggle-theme {
  border: none;
  background: none;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-right: 4px;
}
header #toggle-theme i {
  font-size: 28px;
  position: relative;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
header #toggle-theme:hover i, header #toggle-theme:focus i {
  color: var(--orange);
}
header #toggle-theme.light i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header #logo-link {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header #logo-link #logo {
  width: 85px;
  padding: 7px;
  border-radius: 50%;
}

#menu-item-dot {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  opacity: 0;
  z-index: 1;
}

nav {
  grid-area: nav;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 27px;
  background: rgba(0, 0, 0, 0.7);
}
nav #menu {
  margin: 0;
}
nav #nav-border-left {
  position: absolute;
  display: block;
  width: 1.5px;
  left: 0;
  top: 0;
  background: var(--dark-orange);
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
nav ul {
  list-style: none;
  padding-left: 20px;
}
nav details ul {
  padding-bottom: 5px;
}
nav summary {
  cursor: pointer;
  display: inline-block;
}
nav summary::-webkit-details-marker {
  display: none;
}
nav summary, nav ul li ul li, nav #contact-link {
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 0 3px;
}
nav summary:hover, nav summary:focus, nav ul li ul li:hover, nav ul li ul li:focus, nav #contact-link:hover, nav #contact-link:focus {
  color: var(--orange);
}
nav summary:focus, nav ul li ul li:focus, nav #contact-link:focus {
  -webkit-transition: none;
  transition: none;
}
nav summary a {
  pointer-events: none;
}
nav .sub-menu-item {
  font-size: 24px;
  opacity: 0;
}
nav .sub-menu-item i {
  color: inherit;
  font-size: 14px;
  position: relative;
  top: -1px;
  padding-left: 4px;
  margin-right: 2px;
}
nav .selected,
nav summary:focus, nav ul li ul li:focus {
  color: var(--orange);
}

main {
  grid-area: main;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 700px;
  position: relative;
  scrollbar-color: #444 black;
  padding-left: 5px;
}
main section {
  opacity: 0;
}
main section:focus {
  outline: none;
}
main section .content {
  z-index: 1;
}
main section .content p {
  padding-right: 20px;
}
main section .content .tagline {
  font-family: "Newsreader";
  font-weight: 450;
  font-size: 45px;
  line-height: 1.3;
  text-shadow: 0px 0px 7px rgb(0, 0, 0);
  border-bottom: 1.5px solid var(--dark-orange);
  margin-right: 20px;
  padding-right: 200px;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
main section .content .tagline em {
  font-family: "Newsreader";
  font-weight: 450;
  font-size: inherit;
  line-height: 1.3;
}
main section .content .tagline.full-width {
  padding-right: 0;
  font-size: 40px;
  margin-right: 55px;
}
main section .content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
main section .content .row.align {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 60px);
}
main section .content .row .button {
  padding: 5px 18px 18px 6px;
  margin-top: 10px;
  position: relative;
  left: 5px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(red), to(orange));
  background-image: linear-gradient(to bottom right, red, orange);
  border: 1.5px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  z-index: 1;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  font-size: 24px;
  z-index: 0;
}
main section .content .row .button i {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  color: white;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
main section .content .row .button i.fa-chevron-down {
  margin-right: 0;
  margin-left: 5px;
  font-size: 17px;
}
main section .content .row .button i.fa-linkedin {
  position: relative;
  top: -1px;
}
main section .content .row .button::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  background-color: black;
  border: 1.5px solid var(--dark-orange);
  z-index: -1;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
main section .content .row .button:focus, main section .content .row .button.hover, main section .content .row .button#submit-button:hover {
  color: var(--orange);
  padding: 10.5px 12.5px 12.5px 11.5px;
}
main section .content .row .button:focus i, main section .content .row .button.hover i, main section .content .row .button#submit-button:hover i {
  color: var(--orange);
}
main section .content .row .button:focus::after, main section .content .row .button.hover::after, main section .content .row .button#submit-button:hover::after {
  top: -1.5px;
  left: -1.5px;
}
main section .content .row .location {
  position: relative;
  top: 16px;
}
main section .content .row .location i {
  color: var(--orange);
  margin-right: 5px;
}
main section .content .row.side-by-side {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
main section .content .row.side-by-side:last-of-type {
  margin-bottom: 0;
}
main section .content .row.side-by-side p {
  font-size: 19px;
  position: relative;
  top: 3px;
  left: -5px;
  margin: 0;
  border-left: 1.5px solid var(--dark-orange);
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
  text-shadow: #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px;
}
main section .content .row.side-by-side .button {
  width: 170px;
}
main section .content .row.side-by-side .button.hover .inner {
  color: var(--orange);
}
main section .content .row.side-by-side .button .inner {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
main section .content .row.side-by-side .button .inner i {
  color: inherit;
  font-size: 15px;
  margin-left: 9px;
  margin-right: 0;
  position: relative;
  top: 2px;
}
main section .content .row.side-by-side .button .inner i.front {
  margin-left: 4px;
  margin-right: 13px;
  -webkit-transform: translateY(-2px) scale(1.4);
          transform: translateY(-2px) scale(1.4);
}
main section .content .card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  height: 390px;
  position: relative;
  left: -10px;
}
main section .content .card {
  margin-bottom: auto;
  position: absolute;
  opacity: 0;
}
main section .content .card:last-of-type {
  margin-right: 0;
}
main section .content .card:first-of-type {
  z-index: 1;
  left: 1px;
}
main section .content .card.appear {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}
main section .content .card summary {
  cursor: pointer;
  display: block;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  border: 1.5px solid var(--dark-orange);
  -webkit-transition: -webkit-transform 0.5s var(--ease-out-quint);
  transition: -webkit-transform 0.5s var(--ease-out-quint);
  transition: transform 0.5s var(--ease-out-quint);
  transition: transform 0.5s var(--ease-out-quint), -webkit-transform 0.5s var(--ease-out-quint);
  position: relative;
  background: black;
}
main section .content .card summary::-webkit-details-marker {
  display: none;
}
main section .content .card summary p {
  padding: 10px 0 25px;
  margin-bottom: 0;
  font-size: 25px;
  text-align: center;
  font-weight: 400;
}
main section .content .card summary::after {
  content: "";
  background-image: url("../images/svg/arrow-orange.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  font-family: system-ui;
  position: absolute;
  font-size: 18px;
  background-color: black;
  border-radius: 50%;
  color: var(--orange);
  font-weight: 400;
  border: 1.5px solid var(--dark-orange);
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(0deg);
          transform: translate(-50%, 50%) rotate(0deg);
  -webkit-transition: -webkit-transform 1.5s var(--ease-out-quint);
  transition: -webkit-transform 1.5s var(--ease-out-quint);
  transition: transform 1.5s var(--ease-out-quint);
  transition: transform 1.5s var(--ease-out-quint), -webkit-transform 1.5s var(--ease-out-quint);
}
main section .content .card summary::before {
  content: "";
  position: absolute;
  display: block;
  border-left: 2px solid var(--dark-orange);
  height: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  -webkit-transition: all 1s var(--ease-out-quint);
  transition: all 1s var(--ease-out-quint);
}
main section .content .card summary:hover, main section .content .card summary:focus, main section .content .card summary.selected {
  -webkit-transform: scale(0.945) translateY(-6px);
          transform: scale(0.945) translateY(-6px);
  border: 1.5px solid var(--orange);
}
main section .content .card[open] summary {
  pointer-events: none;
}
main section .content .card[open] summary::after {
  -webkit-transform: translate(-50%, 50%) rotate(180deg);
          transform: translate(-50%, 50%) rotate(180deg);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border: 1.5px solid var(--orange);
}
main section .content .card[open] summary::before {
  bottom: -20px;
  height: 40px;
}
main section .content .card .card-content {
  position: absolute;
  left: 10px;
  border-top: 1.5px solid var(--dark-orange);
  margin-top: 20px;
  background-color: #222;
  border-radius: 0 0 10px 10px;
}
main section .content .card .card-content p {
  margin: 10px 15px;
  font-size: 22px;
  padding-right: 0;
}
main section .content .card .svg-container {
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgb(255, 166, 0)), to(rgb(201, 56, 56)));
  background-image: linear-gradient(to bottom right, rgb(255, 166, 0), rgb(201, 56, 56));
  padding: 10px 20px;
  display: inline-block;
  width: 250px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
main section .content .card .svg-container img {
  width: 100%;
}
main section#product .card-container {
  height: 415px;
}
main section#product .card summary p {
  font-size: 22px;
}
main section .timeline-container {
  position: relative;
  width: calc(100% - 55px);
  height: 310px;
  overflow-y: auto;
  overflow-x: hidden;
}
main section .timeline-container .timeline {
  width: 100%;
  height: 100px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
main section .timeline-container .timeline .line {
  position: absolute;
  width: 100%;
  height: 5px;
  background: #555;
}
main section .timeline-container .timeline .line::before, main section .timeline-container .timeline .line::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
}
main section .timeline-container .timeline .line::before {
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
main section .timeline-container .timeline .line::after {
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  right: 0;
}
main section .timeline-container .timeline .timeline-section-container,
main section .timeline-container .timeline .yr-marker-container {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main section .timeline-container .timeline .timeline-section-container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  height: 43px;
  position: relative;
  top: -10px;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section {
  border: 2px solid #555;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40%;
  z-index: -1;
  top: -10px;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
main section .timeline-container .timeline .timeline-section-container .timeline-section button, main section .timeline-container .timeline .timeline-section-container .timeline-section p {
  position: relative;
  text-align: center;
  padding: 0 7px;
  top: -20px;
  background-color: black;
  border: none;
  z-index: 1;
  display: block;
  height: 40px;
  -webkit-transition: color 0.25s var(--ease-out-quint);
  transition: color 0.25s var(--ease-out-quint);
  color: #555;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section button:hover, main section .timeline-container .timeline .timeline-section-container .timeline-section p:hover {
  color: white;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section p {
  cursor: unset;
  color: white;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section p:hover {
  color: white;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.apple {
  width: 58.1%;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.apple button, main section .timeline-container .timeline .timeline-section-container .timeline-section.apple p {
  font-family: "SF Hello", "SF Pro", system-ui, sans-serif;
  font-weight: 500;
  position: relative;
  top: -21px;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.thinkful {
  width: 16%;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.thinkful button, main section .timeline-container .timeline .timeline-section-container .timeline-section.thinkful p {
  font-weight: bold;
  font-family: system-ui, sans-serif;
  font-size: 24px;
  -webkit-transform: scale(1, 0.825);
          transform: scale(1, 0.825);
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.ucla {
  width: 24.75%;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.ucla button, main section .timeline-container .timeline .timeline-section-container .timeline-section.ucla p {
  font-weight: 700;
  font-family: system-ui;
  font-style: italic;
  letter-spacing: -0.3px;
  position: relative;
  font-size: 25px;
  top: -21px;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.selected {
  border-color: white;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.selected button {
  color: white;
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.selected::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5px;
  height: 0;
  top: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: var(--dark-orange);
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  z-index: -1;
  -webkit-animation: fill-down 1s var(--ease-out-quint);
          animation: fill-down 1s var(--ease-out-quint);
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fill-down {
  to {
    height: 80px;
  }
}
@keyframes fill-down {
  to {
    height: 80px;
  }
}
main section .timeline-container .timeline .timeline-section-container .timeline-section.selected::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  bottom: -18px;
  height: 7px;
  border-radius: 4.5px;
  background: -webkit-gradient(linear, left top, right top, from(orange), to(red));
  background: linear-gradient(to right, orange, red);
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  -webkit-animation: fill-in 1.5s var(--ease-out-quint);
          animation: fill-in 1.5s var(--ease-out-quint);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fill-in {
  to {
    width: 100%;
  }
}
@keyframes fill-in {
  to {
    width: 100%;
  }
}
main section .timeline-container .timeline .yr-marker-container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  top: 2px;
  pointer-events: none;
}
main section .timeline-container .timeline .yr-marker-container .yr-marker {
  color: #555;
}
main section .timeline-container .timeline .yr-marker-container .yr-marker.hidden {
  opacity: 0;
  pointer-events: none;
}
main section .timeline-container .timeline .yr-marker-container .yr-marker::before {
  display: block;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 5px solid #555;
  background-color: black;
  border-radius: 50%;
  top: -29px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: border 0.5s var(--ease-out-quint);
  transition: border 0.5s var(--ease-out-quint);
}
main section .timeline-container .timeline .yr-marker-container .yr-marker.selected {
  color: white;
}
main section .timeline-container .timeline .yr-marker-container .yr-marker.selected.start::before {
  border-color: orange;
}
main section .timeline-container .timeline .yr-marker-container .yr-marker.selected.finish::before {
  border-color: red;
}
main section .timeline-container details {
  margin-bottom: auto;
  position: absolute;
}
main section .timeline-container details:last-of-type {
  margin-right: 0;
}
main section .timeline-container details:first-of-type {
  z-index: 1;
  left: 1px;
}
main section .timeline-container details.appear {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}
main section .timeline-container details summary {
  pointer-events: none;
}
main section .timeline-container details .node-content {
  position: absolute;
  left: 10px;
  border-top: 1.5px solid var(--dark-orange);
  margin-top: 120px;
  background-color: #222;
  border-radius: 0 0 10px 10px;
}
main section .timeline-container details .node-content ul {
  margin: 15px 15px 20px;
  padding-left: 0;
  list-style: none;
}
main section .timeline-container details .node-content ul li {
  font-size: 22px;
  line-height: 1.4;
  padding-left: 40px;
  text-indent: -31px;
  margin-top: 10px;
}
main section .timeline-container details .node-content ul li a {
  font-size: inherit;
  text-decoration: underline;
  text-decoration-color: var(--dark-orange);
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  cursor: help;
}
main section .timeline-container details .node-content ul li a:hover {
  color: var(--orange);
}
main section .timeline-container details .node-content ul li:before {
  content: "•";
  padding: 0px;
  position: relative;
  left: -10px;
  font-family: system-ui;
  font-size: 19px;
  font-weight: 500;
  background-color: #00a000;
  background-image: url("../images/svg/check-white.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-left: 10px;
  width: 20px;
  height: 30px;
  border-radius: 50%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  text-indent: -11px;
}
main section .timeline-container details .node-content ul li:first-of-type {
  margin-top: 0;
}
main section#experience .row {
  padding: 0 10px;
  padding-right: 70px;
}
main section#development .timeline-container {
  height: 430px;
}
main section#development .timeline-container .timeline-section p {
  color: #555;
}
main section#development .timeline-container .yr-marker-container {
  pointer-events: unset;
}
main section#development .timeline-container .yr-marker {
  color: white;
}
main section#development .timeline-container .yr-marker::before {
  display: block;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 5px solid orange;
}
main section#development .timeline-container .yr-marker::after {
  content: "";
  display: block;
  background-color: var(--dark-orange);
  width: 1.5px;
  height: 45px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 5px);
          transform: translate(-50%, 5px);
  z-index: -1;
  -webkit-transition: all 1s var(--ease-out-quint);
  transition: all 1s var(--ease-out-quint);
}
main section#development .timeline-container .yr-marker#yr-marker-2025::after {
  display: none;
}
main section#development .timeline-container .yr-marker.no-line {
  color: #555;
}
main section#development .timeline-container .yr-marker.no-line::before {
  border-color: #555;
}
main section#development .timeline-container .yr-marker.no-line::after {
  display: none;
}
main section#development .timeline-container .yr-marker.center-line::after {
  height: 150px;
}
main section#development .timeline-container .yr-marker.long-line::after {
  -webkit-transition: all 2s var(--ease-out-quint);
  transition: all 2s var(--ease-out-quint);
  height: 250px;
}
main section#development .timeline-container .yr-marker.hold-animate::after {
  height: 0;
}
main section#development .timeline-container .yr-marker.hold-animate .dev-link a {
  opacity: 0;
}
main section#development .timeline-container .yr-marker p {
  position: absolute;
  width: 52.9px;
  height: 31.5px;
  top: 0;
}
main section#development .timeline-container .yr-marker div.dev-link {
  position: absolute;
  line-height: 1.2;
  margin-top: 30px;
  padding-top: 1px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  min-width: 280px;
  top: 20px;
  -webkit-transform: translate(calc(-50% + 25px), 10px);
          transform: translate(calc(-50% + 25px), 10px);
  text-align: center;
  background-color: black;
  -webkit-transition: color 0.25s var(--ease-out-quint);
  transition: color 0.25s var(--ease-out-quint);
}
main section#development .timeline-container .yr-marker div.dev-link a {
  display: block;
  z-index: 1;
  padding-top: 5px;
  opacity: 1;
  -webkit-transition: opacity 3s var(--ease-out-quint);
  transition: opacity 3s var(--ease-out-quint);
  cursor: help;
}
main section#development .timeline-container .yr-marker div.dev-link a span {
  font-size: 20px;
  display: block;
  -webkit-transition: all 1s var(--ease-out-quint);
  transition: all 1s var(--ease-out-quint);
}
main section#development .timeline-container .yr-marker div.dev-link a .skill {
  color: var(--orange);
  margin-bottom: 4px;
  position: relative;
}
main section#development .timeline-container .yr-marker div.dev-link a .skill::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--orange);
  border-radius: 50%;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  opacity: 0;
  top: 12px;
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}
main section#development .timeline-container .yr-marker div.dev-link a .detail {
  color: #555;
  font-size: 19px;
}
main section#development .timeline-container .yr-marker div.dev-link a:hover .detail, main section#development .timeline-container .yr-marker div.dev-link a:focus .detail {
  color: white;
}
main section#development .timeline-container .yr-marker div.dev-link a:hover .skill::before {
  -webkit-transform: translate(-12px, -50%);
          transform: translate(-12px, -50%);
  opacity: 1;
}
main section#development .timeline-container .yr-marker div.dev-link.left-align {
  min-width: 240px;
  -webkit-transform: translate(15px, 120px);
          transform: translate(15px, 120px);
  text-align: left;
}
main section#development .timeline-container .yr-marker div.dev-link.center-align {
  -webkit-transform: translate(calc(-50% + 25px), 110px);
          transform: translate(calc(-50% + 25px), 110px);
}
main section#development .timeline-container .yr-marker div.dev-link.bottom-align {
  -webkit-transform: translate(calc(-50% + 25px), 210px);
          transform: translate(calc(-50% + 25px), 210px);
}
main section#development .timeline-container .yr-marker div.dev-link.right-align {
  min-width: 400px;
  -webkit-transform: translate(-10px, 213px);
          transform: translate(-10px, 213px);
  right: 0;
  text-align: right;
}
main section#development .timeline-container .timeline-section-container {
  padding-left: calc(24px + 7.2%);
}
main section#personal .tagline, main section#personal .tagline ~ p {
  text-shadow: #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px, #000 0px 0px 15px;
}
main section#contact {
  margin-right: 350px;
}
main section#contact .tagline {
  margin-right: 0;
  padding-right: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
main section#contact p.sm-font {
  font-size: 22px;
  margin-right: 0;
}
main section#contact #form-container {
  margin-top: 20px;
}
main section#contact #form-container p {
  margin-bottom: 10px;
  padding: 0;
}
main section#contact #form-container legend {
  padding: 0 5px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  display: block;
}
main section#contact #form-container p, main section#contact #form-container label {
  font-size: 19px;
}
main section#contact #form-container #need-checklists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
}
main section#contact #form-container #need-checklists fieldset {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  border: 1.5px solid var(--dark-orange);
  margin-right: 30px;
  margin-bottom: 20px;
  padding: 10px 15px;
}
main section#contact #form-container #need-checklists fieldset:last-of-type {
  margin-right: 0;
}
main section#contact #form-container #need-checklists fieldset p {
  padding: 0 5px;
  margin-bottom: 5px;
}
main section#contact #form-container #need-checklists fieldset legend a {
  font-size: inherit;
  font-weight: inherit;
  -webkit-transition: all 0.25s var(--ease-out-quint);
  transition: all 0.25s var(--ease-out-quint);
}
main section#contact #form-container #need-checklists fieldset legend a:hover, main section#contact #form-container #need-checklists fieldset legend a:focus {
  color: var(--orange);
}
main section#contact #form-container #need-checklists fieldset legend i {
  font-size: 15px;
  color: var(--dark-orange);
  margin-left: 2px;
  position: relative;
  top: -1px;
  font-weight: normal;
  -webkit-transition: all 0.25s var(--ease-out-quint);
  transition: all 0.25s var(--ease-out-quint);
}
main section#contact #form-container #need-checklists fieldset .checkbox-list {
  background-color: #222;
  width: calc(100% + 30px);
  position: relative;
  left: -15px;
  top: 10px;
  padding: 10px;
}
main section#contact #form-container #need-checklists fieldset input, main section#contact #form-container #need-checklists fieldset label {
  cursor: pointer;
  font-size: 17.5px;
}
main section#contact #form-container #need-checklists fieldset label {
  position: relative;
  display: inline-block;
  padding: 3px;
  padding-left: 35px;
  margin: 3px 7px;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
main section#contact #form-container #need-checklists fieldset label:after, main section#contact #form-container #need-checklists fieldset label:before {
  content: "";
  padding: 0px;
  position: absolute;
  top: -1px;
  left: 0px;
  font-family: system-ui;
  font-size: 19px;
  font-weight: 500;
  background-color: #444;
  color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-left: 10px;
  width: 20px;
  height: 30px;
  border-radius: 50%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  text-indent: -11px;
  -webkit-transition: color 0.5s var(--ease-out-quint);
  transition: color 0.5s var(--ease-out-quint);
}
main section#contact #form-container #need-checklists fieldset label:hover, main section#contact #form-container #need-checklists fieldset label:focus {
  color: var(--orange);
}
main section#contact #form-container #need-checklists fieldset label:hover:after, main section#contact #form-container #need-checklists fieldset label:focus:after {
  color: var(--orange);
  background-image: url("../images/svg/check-orange.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
main section#contact #form-container #need-checklists fieldset label.selected:after {
  background-image: url("../images/svg/check-white.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #00a000;
  color: white;
  -webkit-animation: pop-in 0.5s var(--ease-out-quint);
          animation: pop-in 0.5s var(--ease-out-quint);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes pop-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(0.925);
            transform: scale(0.925);
    opacity: 0.8;
  }
  to {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
}
@keyframes pop-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(0.925);
            transform: scale(0.925);
    opacity: 0.8;
  }
  to {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
}
main section#contact #form-container #overview-container {
  border: 1.5px solid var(--dark-orange);
  width: calc(100% - 2px);
  padding-bottom: 0;
  margin-top: 3px;
}
main section#contact #form-container #overview-container label {
  display: block;
  font-size: 19px;
  margin-bottom: 15px;
  position: relative;
  left: 4px;
}
main section#contact #form-container #overview-container textarea {
  font-size: 17px;
  display: block;
  width: calc(100% + 37px);
  position: relative;
  left: -19px;
  resize: none;
  background: #222;
  color: white;
  border: none;
  padding: 15px 24px;
}
main section#contact #form-container #submit-row {
  position: absolute;
  bottom: 0;
  right: -240px;
  width: 210px;
}
main section#contact #form-container #mailto-link {
  display: none;
}
main #profile-photo {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 120px));
          transform: translateY(calc(-50% - 120px));
  right: 30px;
  width: 280px;
  z-index: -1;
  border-radius: 15px;
  -webkit-transition: none 0.5s var(--ease-out-quint);
  transition: none 0.5s var(--ease-out-quint);
}
main #profile-photo.hide {
  opacity: 0;
}
main #particles-container {
  position: absolute;
  height: 50px;
  width: 85%;
  top: 50px;
  right: 22%;
  z-index: -1;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.65;
}
main #particles-container.hide {
  opacity: 0;
}
main #particles-container #particles {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-area: footer;
  border-top: 1.5px solid #282828;
  margin: 0 20px;
  height: 50px;
}
footer p {
  font-size: 17px;
  margin: 5px 0;
  color: #888;
}
footer p i {
  font-size: 17px;
  margin-right: 3px;
  color: #666;
}
footer p a {
  font-size: inherit;
  text-decoration: underline;
  text-decoration-color: #555;
  -webkit-transition: all 0.25s var(--ease-out-quint);
  transition: all 0.25s var(--ease-out-quint);
}
footer p a:hover, footer p a:focus {
  color: var(--orange);
  text-decoration-color: var(--dark-orange);
}
footer p span {
  font-size: inherit;
  color: inherit;
}

#development .timeline-container #thinkful-p {
  -webkit-transform: scale(0.9, 0.74) !important;
          transform: scale(0.9, 0.74) !important;
}

@media only screen and (min-width: 1800px) {
  body {
    height: calc(100% - 150px);
  }
  #container {
    -webkit-transform: translate(0, 70px) scale(1.1) !important;
            transform: translate(0, 70px) scale(1.1) !important;
  }
}
.mobile-br {
  display: none;
}

@media only screen and (max-width: 1375px) {
  .card-container {
    height: 380px !important;
  }
  #product .card-container {
    height: 400px !important;
  }
  #experience .timeline-container {
    height: 370px !important;
  }
  #experience .timeline-container #thinkful-button {
    -webkit-transform: scale(0.8, 0.66);
            transform: scale(0.8, 0.66);
  }
  #experience .timeline-container .node-content li {
    font-size: 22px !important;
  }
  #development .timeline-container {
    height: 420px !important;
  }
  #development .timeline-container #thinkful-p {
    -webkit-transform: scale(0.7, 0.58) !important;
            transform: scale(0.7, 0.58) !important;
  }
  #personal {
    margin-top: 200px !important;
  }
  #container {
    grid-template-rows: 120px 1fr auto !important;
  }
  main {
    height: unset !important;
  }
  footer {
    height: unset !important;
    margin-top: 20px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width: 1330px) {
  #personal {
    margin-top: 160px !important;
  }
  #contact {
    margin-right: 25px !important;
    -webkit-animation-duration: 1s !important;
            animation-duration: 1s !important;
  }
  #need-checklists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    background: black;
    width: calc(100% + 25px) !important;
  }
  #need-checklists fieldset {
    margin-right: 25px !important;
  }
  #overview-container {
    width: calc(100% - 2px) !important;
  }
  #submit-row {
    position: relative !important;
    left: 3px;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  fieldset {
    margin-right: 0 !important;
  }
  #development .dev-link a {
    -webkit-transform: scale(0.825) translateY(-10px) !important;
            transform: scale(0.825) translateY(-10px) !important;
  }
  .left-align {
    left: -30px !important;
  }
  .right-align {
    right: -35px !important;
  }
  #usc-link {
    min-width: 370px !important;
  }
  #usc-link span {
    font-size: 18px !important;
  }
}
@media only screen and (max-width: 1300px) {
  #welcome .row {
    width: 450px !important;
    gap: 0;
  }
  #welcome .row .button {
    margin-bottom: 10px;
    margin-right: 30px;
  }
  #welcome .row .location {
    margin-bottom: 10px;
  }
  #welcome .row .location:last-of-type {
    margin-left: 0 !important;
    position: relative;
    right: -7px;
  }
  #welcome .row .location:last-of-type i {
    position: relative;
    left: -3px;
  }
}
@media only screen and (max-width: 1280px) {
  .tagline.full-width {
    font-size: 35px !important;
  }
  .card-content p {
    font-size: 20px !important;
  }
  #functional .card summary p {
    font-size: 20px;
  }
  #product .card summary p {
    font-size: 17px !important;
    padding-right: 5px;
    padding-left: 5px;
  }
  #process .card summary p {
    font-size: 20px !important;
  }
  #thinkful-p {
    -webkit-transform: scale(0.7, 0.58);
            transform: scale(0.7, 0.58);
  }
  #personal {
    margin-top: 100px !important;
  }
  #hci-link-container {
    min-width: 220px !important;
  }
  #hci-link-container span {
    font-size: 18px !important;
  }
}
@media only screen and (max-width: 1133px) and (max-height: 744px) {
  main {
    -webkit-transform: scale(0.9) translate(30px, 20px);
            transform: scale(0.9) translate(30px, 20px);
  }
}
@media only screen and (max-width: 1130px) {
  #thinkful-button {
    -webkit-transform: scale(0.7, 0.58) !important;
            transform: scale(0.7, 0.58) !important;
  }
  #development .dev-link a {
    -webkit-transform: scale(0.75) translateY(-10px) !important;
            transform: scale(0.75) translateY(-10px) !important;
  }
  #development .timeline-container #thinkful-p {
    -webkit-transform: scale(0.6, 0.5) !important;
            transform: scale(0.6, 0.5) !important;
  }
  .right-align {
    right: -45px !important;
  }
  #apple-a11y-link, #nng-link {
    margin-left: 10px !important;
  }
  #usc-link {
    min-width: 320px !important;
  }
  #usc-link a {
    width: calc(100% + 200px);
    position: relative;
    left: -175px;
  }
  #personal {
    margin-top: 0px !important;
  }
}
@media only screen and (max-width: 1100px) {
  .yr-marker .yr {
    display: block;
    -webkit-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
  }
  #usc-link span {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 1050px) {
  #functional .card summary p {
    font-size: 17px !important;
  }
  #product .card summary p {
    font-size: 15px !important;
  }
  #process .card summary p {
    font-size: 17px !important;
  }
  .tagline.full-width {
    font-size: 30px !important;
  }
  .timeline-container {
    height: 410px !important;
  }
  .timeline-container .node-content li {
    font-size: 21px !important;
  }
  #experience .timeline-container {
    height: 430px !important;
  }
  #experience .row .button {
    font-size: 22px;
  }
  #development .timeline-container {
    width: 100% !important;
  }
  #thinkful-button {
    -webkit-transform: scale(0.65, 0.54) !important;
            transform: scale(0.65, 0.54) !important;
  }
  #personal {
    margin-top: 0px !important;
  }
  #personal .tagline {
    padding-right: 0px !important;
    margin-right: 320px !important;
    font-size: 30px !important;
  }
  #personal .tagline ~ p {
    padding-right: 300px !important;
    font-size: 20px !important;
  }
  #personal .tagline ~ p br {
    display: none;
  }
  #development .dev-link a {
    -webkit-transform: scale(0.75) translateY(-10px) !important;
            transform: scale(0.75) translateY(-10px) !important;
  }
  .right-align {
    right: 0 !important;
  }
  #apple-a11y-link, #nng-link {
    margin-left: 10px !important;
  }
  #nng-link a {
    position: relative;
    left: -10px;
  }
  #usc-link {
    min-width: 265px !important;
  }
  #usc-link a {
    width: calc(100% + 200px);
    position: relative;
    left: -145px;
  }
}
@media only screen and (max-width: 1000px) {
  html, body {
    overflow-x: hidden;
  }
  #open-nav {
    display: block !important;
  }
  /* Responsive menu start */
  #container {
    grid-template-areas: "header header" "main main" "footer footer";
    grid-template-columns: 270px 1fr;
    grid-template-rows: 120px 1fr auto;
  }
  #menu-item-dot {
    -webkit-transition: none;
    transition: none;
  }
  #nav-border-left {
    display: none;
  }
  #personal .row.align {
    padding: 0 !important;
    margin: 0 !important;
  }
  header {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
  }
  nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 1;
    padding: 20px 30px 45px 20px;
    opacity: 0;
    -webkit-animation: fade-in 1s var(--ease-out-quint);
            animation: fade-in 1s var(--ease-out-quint);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    width: 100%;
    backdrop-filter: saturate(100%) blur(10px);
    -webkit-backdrop-filter: saturate(100%) blur(10px);
    border-bottom: 1px solid rgba(255, 162, 0, 0.526);
    -webkit-box-shadow: var(--smooth-box);
            box-shadow: var(--smooth-box);
    margin-left: 0;
  }
  nav.open, header nav#open-nav:hover, header nav#open-nav:focus {
    display: block;
  }
  nav a {
    font-size: 25px !important;
  }
  @-webkit-keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  main {
    padding: 0 0 20px 20px;
    height: unset;
    -webkit-transform: unset;
            transform: unset;
  }
  main section {
    width: calc(100% - 20px) !important;
    padding-right: 20px !important;
  }
  /* Responsive menu end */
  .tagline {
    font-size: 40px !important;
    margin-right: 330px !important;
    padding-right: 0 !important;
  }
  .tagline.full-width {
    margin-right: 0 !important;
  }
  .content {
    width: calc(100% + 20px);
  }
  .row.align {
    width: 100% !important;
  }
  #profile-photo {
    margin-right: 20px;
  }
  #functional .card summary p {
    font-size: 20px !important;
  }
  #product .card summary p {
    font-size: 19px !important;
  }
  #process .card summary p {
    font-size: 20px !important;
  }
  .timeline-container {
    height: 370px !important;
    width: 100% !important;
  }
  .timeline-container .node-content li {
    font-size: 21px !important;
  }
  .node-content {
    margin-right: 0 !important;
    -webkit-transform: scale(1.04) translate(7px);
            transform: scale(1.04) translate(7px);
  }
  #experience .row .button {
    font-size: 22px;
  }
  #welcome {
    margin-top: 0px !important;
  }
  #expertise, #career {
    margin-top: 120px !important;
  }
  #personal {
    margin-top: 280px !important;
  }
  #thinkful-button {
    -webkit-transform: scale(0.9, 0.74) !important;
            transform: scale(0.9, 0.74) !important;
    padding: 0 2px !important;
  }
  #development .dev-link a {
    -webkit-transform: scale(0.825) translateY(-10px) !important;
            transform: scale(0.825) translateY(-10px) !important;
  }
  .left-align {
    left: -30px !important;
  }
  .right-align {
    right: -35px !important;
  }
  #usc-link {
    min-width: 340px !important;
  }
  #usc-link a {
    width: calc(100% + 200px);
    position: relative;
    left: -185px;
  }
  #contact {
    background-color: black;
  }
  #contact #need-checklists fieldset {
    margin-right: 25px !important;
  }
  #contact #overview-container {
    width: 100% !important;
  }
  .yr-marker .yr {
    display: block;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}
@media only screen and (max-width: 900px) {
  .tagline {
    font-size: 35px !important;
    margin-right: 280px !important;
  }
  #profile-photo {
    width: 230px !important;
  }
  .card summary p {
    font-size: 20px !important;
  }
  #functional .card summary p {
    font-size: 18px !important;
  }
  #product .card summary p {
    font-size: 17px !important;
  }
  #process .card summary p {
    font-size: 17px !important;
  }
  #thinkful-button {
    -webkit-transform: scale(0.7, 0.58) !important;
            transform: scale(0.7, 0.58) !important;
  }
  #development .timeline-section-container {
    padding: 0 22px !important;
    padding-left: calc(30px + 7.2%) !important;
  }
  #development .yr-marker-container {
    top: 2px !important;
  }
  #development .yr-marker {
    font-size: 20px;
  }
  #personal .tagline {
    padding-right: 0px !important;
    margin-right: 280px !important;
    font-size: 30px !important;
  }
  #personal .tagline ~ p {
    padding-right: 280px !important;
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 830px) {
  #hci-link-container {
    min-width: 200px !important;
  }
  #hci-link-container span {
    font-size: 17px !important;
  }
  #usc-link span {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 780px) {
  #development .dev-link a {
    -webkit-transform: scale(0.75) translateY(-10px) !important;
            transform: scale(0.75) translateY(-10px) !important;
  }
  .right-align {
    right: 0 !important;
  }
  #apple-a11y-link, #nng-link {
    margin-left: 10px !important;
  }
  #nng-link a {
    position: relative;
    left: -10px;
  }
  #usc-link {
    min-width: 265px !important;
  }
  #usc-link a {
    width: calc(100% + 200px);
    position: relative;
    left: -145px;
  }
}
@media only screen and (max-width: 750px) {
  #experience .row .button {
    font-size: 19px;
  }
  #experience .timeline-container {
    height: 430px !important;
  }
  #thinkful-p {
    -webkit-transform: scale(0.6, 0.5) !important;
            transform: scale(0.6, 0.5) !important;
  }
  #personal .tagline {
    padding-right: 0px !important;
    margin-right: 280px !important;
    font-size: 25px !important;
  }
  #personal .row.side-by-side {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 40px !important;
  }
  #personal .row.side-by-side p {
    padding-left: 10px;
    margin-left: 5px;
    border: bottom;
  }
  #personal .row.side-by-side:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 700px) {
  .tagline.full-width {
    width: calc(100% + 20px);
  }
  #product .card summary p {
    font-size: 17px !important;
    line-height: 1.2 !important;
    padding-top: 10px !important;
  }
  #process .card summary p {
    font-size: 16px !important;
  }
  .timeline-section-container {
    padding: 0 10px !important;
  }
  .yr-marker-container {
    top: -10px !important;
  }
  .yr-marker {
    font-size: 14px !important;
  }
  #development .timeline-section-container {
    padding: 0 11px !important;
  }
  #development .yr-marker-container {
    top: -10px !important;
  }
}
@media only screen and (max-width: 715px) {
  #development .timeline-container {
    height: 600px !important;
  }
  #development .timeline-container .line, #development .timeline-container .timeline-section-container, #development .timeline-container .hidden {
    display: none !important;
  }
  #development .timeline-container .yr-marker-container {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #development .timeline-container .yr-marker-container .yr-marker {
    font-size: 26px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    margin-bottom: 20px;
  }
  #development .timeline-container .yr-marker-container .yr-marker::before, #development .timeline-container .yr-marker-container .yr-marker::after {
    display: none !important;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link {
    position: unset !important;
    -webkit-transform: unset !important;
            transform: unset !important;
    margin-top: 0 !important;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link a {
    padding-top: 0;
    text-align: left;
    padding-left: 10px;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link a span {
    font-size: 20px !important;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link a .skill::before {
    top: 12px !important;
  }
  #development .timeline-container .yr-marker-container #yr-marker-2025 {
    display: none;
  }
  #development .dev-link a {
    -webkit-transform: unset !important;
            transform: unset !important;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link a {
    margin-left: 0 !important;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link#apple-a11y-link a {
    margin-left: 0px !important;
    left: 0 !important;
    padding-left: 0 !important;
  }
  #usc-link {
    width: unset !important;
  }
  #usc-link a {
    width: unset !important;
    left: 0 !important;
  }
}
@media only screen and (max-width: 680px) {
  #breadcrumb {
    display: none !important;
  }
  #toggle-theme {
    margin-left: auto;
  }
  #logo-link {
    margin-left: 0 !important;
  }
  .mobile-br {
    display: unset;
  }
  .card summary p {
    padding-top: 5px !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
  }
  #process .card summary p {
    font-size: 15px !important;
  }
  #experience .timeline-container {
    height: 500px !important;
  }
  #experience .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: calc(100% - 20px);
    padding-right: 0 !important;
  }
  #experience .row .button {
    font-size: 25px !important;
  }
  .timeline-section button {
    -webkit-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
  }
  #thinkful-button {
    -webkit-transform: scale(0.6, 0.5) !important;
            transform: scale(0.6, 0.5) !important;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 600px) {
  #profile-photo {
    width: 160px !important;
    top: 50% !important;
    -webkit-transform: translate(20px, -125%) !important;
            transform: translate(20px, -125%) !important;
  }
  #particles-container {
    top: 50% !important;
    -webkit-transform: scale(0.7) translate(0, -800%) !important;
            transform: scale(0.7) translate(0, -800%) !important;
  }
  .tagline {
    padding-right: 100px !important;
    margin-right: 0 !important;
    font-size: 30px !important;
  }
  #welcome, #expertise, #career, #personal {
    margin-top: 120px !important;
  }
  #product .card summary p {
    font-size: 15px !important;
  }
  #process .card summary p {
    line-height: 1.2 !important;
    padding-top: 10px !important;
  }
  #experience .timeline-container {
    height: 550px !important;
  }
  #thinkful-button {
    -webkit-transform: scale(0.5, 0.41) !important;
            transform: scale(0.5, 0.41) !important;
  }
  #development .timeline-container {
    height: 650px !important;
  }
  #personal .tagline ~ p {
    padding-right: 10px !important;
  }
  #personal .tagline {
    padding-right: 0px !important;
    margin-right: 0px !important;
    font-size: 30px !important;
  }
  #contact p.sm-font {
    padding-right: 35px;
    width: calc(100% + 35px);
    position: relative;
  }
  #contact p.sm-font::after {
    content: "";
    position: absolute;
    bottom: -600px;
    right: 0;
    width: 35px;
    height: 600px;
    z-index: 1;
  }
}
@media only screen and (max-width: 600px) and (max-height: 1000px) {
  #profile-photo {
    width: 160px !important;
    top: 0 !important;
    -webkit-transform: translate(20px, 0px) !important;
            transform: translate(20px, 0px) !important;
  }
  #particles-container {
    top: -30px !important;
    -webkit-transform: scale(0.7) translate(0, 0) !important;
            transform: scale(0.7) translate(0, 0) !important;
  }
  #contact p.sm-font::after {
    content: "" !important;
    position: absolute !important;
    bottom: -200px !important;
    right: 0 !important;
    width: 35px !important;
    height: 600px !important;
    z-index: 1 !important;
  }
}
@media only screen and (max-width: 500px) {
  .tagline.full-width {
    padding-right: 10px !important;
  }
  .tagline ~ p {
    font-size: 20px !important;
  }
  .location {
    font-size: 22px !important;
  }
  .location:last-of-type {
    margin-bottom: 15px !important;
  }
  .location i {
    font-size: inherit;
  }
  #functional .card summary p {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  #product .card summary p {
    font-size: 14px !important;
  }
  .card-container {
    height: 940px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-container .card {
    width: 99.5% !important;
    position: relative !important;
    margin-bottom: 20px !important;
  }
  .card-container .card summary {
    left: 0 !important;
    position: relative !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 0px !important;
            flex: 1 1 0px !important;
  }
  .card-container .card summary .svg-container {
    width: 50% !important;
    height: 150px !important;
    padding: 15px !important;
  }
  .card-container .card summary p {
    padding: 0 !important;
    text-align: left !important;
    width: 50% !important;
  }
  .card-container .card summary.selected {
    -webkit-transform: scale(0.9) !important;
            transform: scale(0.9) !important;
  }
  .card-container .card .card-content {
    position: relative !important;
    margin: 23px 0 0 10px !important;
    padding-bottom: 5px;
    -webkit-transform: translate(-3px, 0) scale(0.98);
            transform: translate(-3px, 0) scale(0.98);
    -webkit-animation: fade-in 3s var(--ease-out-quint);
            animation: fade-in 3s var(--ease-out-quint);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  #product .card-container {
    height: 940px !important;
  }
  #product .card-container .card-content p {
    text-align: left !important;
  }
  #process .card-container {
    height: 930px !important;
  }
  #functional .card summary p {
    font-size: 30px !important;
  }
  #product .card summary p,
  #process .card summary p {
    font-size: 21px !important;
    padding: 20px !important;
  }
  .mobile-br {
    display: none !important;
  }
  #experience .timeline-container {
    height: 600px !important;
  }
  #experience .timeline-container .timeline .yr-marker-container .yr-marker.hidden {
    display: none !important;
  }
  #experience .timeline-container .yr-marker-container {
    top: -5px !important;
  }
  #experience .timeline-container .yr-marker {
    font-size: 18px !important;
  }
  #experience .timeline-container .timeline-section-container {
    width: calc(100% - 11px);
    left: 6px !important;
  }
  #experience .timeline-container .timeline-section {
    width: 32.4% !important;
  }
  #experience .timeline-container #thinkful-button {
    padding: 0 5px !important;
    -webkit-transform: scale(0.7, 0.58) !important;
            transform: scale(0.7, 0.58) !important;
  }
  #experience .timeline-container .node-content li {
    font-size: 21px !important;
  }
  #development .timeline-container {
    height: 700px !important;
  }
  #personal .tagline {
    padding-right: 80px !important;
  }
  #personal .tagline ~ p {
    padding-right: 100px !important;
  }
  footer {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
    height: unset !important;
  }
}
@media only screen and (max-width: 450px) {
  #experience .timeline-container {
    height: 570px !important;
  }
  #experience .timeline-container .node-content li {
    font-size: 18px !important;
  }
  #experience .row .button {
    font-size: 19px !important;
  }
  #development .timeline-container {
    height: 700px !important;
  }
  #personal .tagline {
    padding-right: 0 !important;
  }
  #personal .tagline ~ p {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 400px) {
  #functional .card-container,
  #product .card-container,
  #process .card-container {
    height: 1000px !important;
  }
  #experience .timeline-container {
    height: 645px !important;
  }
  #development .timeline-container {
    height: 760px !important;
    width: calc(100% + 30px) !important;
  }
  footer {
    -webkit-transform: scale(0.9) translate(-20px, 0);
            transform: scale(0.9) translate(-20px, 0);
    width: calc(100% + 10px);
  }
}
@media only screen and (max-width: 1000px) and (max-height: 500px) {
  #profile-photo {
    width: 150px !important;
    -webkit-transform: translateY(-70%) !important;
            transform: translateY(-70%) !important;
    right: 0 !important;
    -webkit-box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3) !important;
            box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3) !important;
  }
  #welcome, #expertise, #career, #personal {
    margin-top: 0 !important;
  }
  .tagline {
    margin-right: 170px !important;
    font-size: 32px !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
  }
  .tagline.full-width {
    font-size: 30px !important;
    width: 100% !important;
  }
  .tagline ~ p {
    font-size: 21px !important;
    margin-right: 150px !important;
  }
  .button {
    font-size: 25px !important;
  }
  .button i {
    font-size: 18px !important;
    margin-right: 0px !important;
    top: 1px !important;
  }
  .button i.fa-chevron-down {
    font-size: 12px !important;
    margin-left: 0px !important;
  }
  .location {
    font-size: 21px !important;
  }
  .card-container, #product .card-container, #process .card-container {
    position: relative;
    left: -5px !important;
    height: 400px !important;
  }
  .card-content p, .node-content ul, .node-content ul li {
    -webkit-transform: scale(0.95) !important;
            transform: scale(0.95) !important;
  }
  .svg-container {
    margin-bottom: 10px !important;
  }
  #functional .card summary p {
    font-size: 18.5px !important;
  }
  #product .card summary p {
    font-size: 16px !important;
  }
  #experience .timeline-container {
    height: 430px !important;
  }
  #experience .row .button {
    font-size: 22px !important;
  }
  #development .timeline-container .yr-marker-container .yr-marker .dev-link a span {
    font-size: 19px !important;
  }
  #experience .timeline-container {
    height: 460px !important;
  }
  #development .timeline-container {
    height: 400px !important;
  }
  main section#development .timeline-container .yr-marker div.dev-link.right-align {
    -webkit-transform: translate(-10px, 210px) !important;
            transform: translate(-10px, 210px) !important;
  }
  #personal .tagline, #personal .tagline ~ p,
  #contact .tagline, #contact .tagline ~ p {
    width: 100% !important;
    padding-right: 0 !important;
  }
  .row.side-by-side {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .row.side-by-side p {
    font-size: 17px !important;
  }
  main section .content .row.side-by-side .button .inner {
    font-size: 23px !important;
  }
  main section .content .row.side-by-side .button .inner i.front {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin-right: 10px !important;
  }
  main section .content .row.side-by-side .button .inner i.fa-arrow-up-right-from-square {
    font-size: 17px !important;
  }
  #personal .content {
    width: calc(100% + 50px) !important;
    background: black !important;
    padding-right: 50px !important;
  }
  footer p {
    font-size: 15px !important;
  }
  #container {
    grid-template-rows: 100px 1fr auto !important;
    padding-top: 0 !important;
  }
  body.light #personal .content {
    background: white !important;
  }
  legend, main section#contact #form-container p, main section#contact #form-container label {
    font-size: 18px !important;
  }
  #personal .tagline {
    font-size: 32px !important;
  }
}
@media only screen and (max-width: 700px) and (max-height: 500px) {
  #development .timeline-container {
    height: 550px !important;
  }
  main section#development .timeline-container .yr-marker div.dev-link.right-align {
    -webkit-transform: unset !important;
            transform: unset !important;
  }
}
body.light {
  background-color: #fff;
}
body.light .tagline {
  color: #333;
  text-shadow: #fff 0px 0px 30px, #fff 0px 0px 30px, #fff 0px 0px 30px, #fff 0px 0px 30px, #fff 0px 0px 30px, #fff 0px 0px 30px !important;
  border-color: rgba(255, 132, 0, 0.7764705882) !important;
  border-width: 1.75px !important;
}
body.light .tagline em {
  color: inherit;
  font-weight: inherit;
}
body.light i, body.light p, body.light li, body.light summary, body.light h1 {
  color: #333;
}
body.light a, body.light p, body.light li {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.light a, body.light i {
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
body.light #logo {
  -webkit-filter: invert(1);
          filter: invert(1);
  opacity: 0.85;
}
body.light #profile-photo {
  -webkit-box-shadow: var(--smooth-box);
          box-shadow: var(--smooth-box);
  -webkit-filter: brightness(1.1) contrast(0.9);
          filter: brightness(1.1) contrast(0.9);
  border: none;
}
body.light #menu-item-dot {
  background: #F3A561;
}
body.light #open-nav .bar-container {
  border-color: #333;
}
body.light #open-nav .bar {
  background: #333 !important;
}
body.light #open-nav:hover .bar-container, body.light #open-nav:focus .bar-container {
  border-color: #ff7c01;
}
body.light #open-nav:hover .bar, body.light #open-nav:focus .bar {
  background: #ff7c01 !important;
}
body.light nav {
  background: rgba(255, 255, 255, 0.4) !important;
}
body.light nav #nav-border-left {
  background: #F3A561 !important;
  width: 1.5px !important;
}
body.light summary:hover, body.light summary:focus, body.light a:hover, body.light a:focus, body.light summary.selected, body.light li.selected {
  color: #ff7c01 !important;
}
body.light summary:hover i, body.light summary:focus i, body.light a:hover i, body.light a:focus i, body.light summary.selected i, body.light li.selected i {
  color: #ff7c01 !important;
  -webkit-transition: all 0.5s var(--ease-out-quint);
  transition: all 0.5s var(--ease-out-quint);
}
body.light main section .content .row .button {
  margin-top: 10px;
  position: relative;
  left: 5px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgb(255, 102, 0)), to(rgb(255, 187, 0)));
  background-image: linear-gradient(to bottom right, rgb(255, 102, 0), rgb(255, 187, 0));
  border: none;
  color: #333;
  font-weight: 400;
}
body.light main section .content .row .button span {
  color: inherit;
  font-weight: inherit;
}
body.light main section .content .row .button i {
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
body.light main section .content .row .button::after {
  background: #fff;
  border: 1px solid #333;
  -webkit-transition-property: top, left;
  transition-property: top, left;
}
body.light main section .content .row .button.hover, body.light main section .content .row .button:focus {
  color: #ff7c01;
}
body.light main section .content .card-container,
body.light main section .content .timeline-container {
  overflow-x: unset;
  overflow-y: unset;
}
body.light main section .content .card summary {
  border-color: rgba(0, 0, 0, 0.3333333333);
}
body.light main section .content .card summary.selected {
  border-color: #F3A561;
}
body.light main section .content .card summary::before {
  border-color: #F3A561;
  border-width: 1.5px;
}
body.light main section .content .card summary::after {
  background-color: #fff;
  background-image: url("../images/svg/arrow-gray.svg");
  color: rgba(0, 0, 0, 0.3333333333);
  border-color: rgba(0, 0, 0, 0.3333333333);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
body.light main section .content .card summary.selected::after {
  color: #ff6a00;
  border-color: #F3A561;
  background-image: url("../images/svg/arrow-orange.svg");
}
body.light .card-container summary {
  background: #fff !important;
  -webkit-box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}
body.light .card-container summary p {
  color: #222;
}
body.light .card-container summary .svg-container {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgb(255, 213, 0)), to(rgb(234, 59, 11)));
  background-image: linear-gradient(to bottom right, rgb(255, 213, 0), rgb(234, 59, 11));
}
body.light .card-content, body.light .node-content {
  background-color: #fff !important;
  -webkit-box-shadow: inset 0 1px 1px 0 hsla(0, 0%, 100%, 0.1), 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 1px 1px 0 hsla(0, 0%, 100%, 0.1), 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
  border-color: #F3A561 !important;
}
body.light .card-content a, body.light .node-content a {
  text-decoration-color: #F3A561 !important;
  text-decoration-thickness: 1.5px !important;
}
body.light .card-content li::before, body.light .node-content li::before {
  background-color: #00b500 !important;
}
body.light .timeline-container .timeline .line {
  background: #ddd;
}
body.light .timeline-container .timeline .line::before {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
body.light .timeline-container .timeline .line::after {
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
body.light .timeline-container .timeline-section {
  border-color: #ddd !important;
}
body.light .timeline-container .timeline-section::before {
  background: #F3A561 !important;
}
body.light .timeline-container .timeline-section.selected {
  border-color: #EEA459 !important;
}
body.light .timeline-container .timeline-section.selected button, body.light .timeline-container .timeline-section.selected p {
  color: black !important;
}
body.light .timeline-container .timeline-section.selected::after {
  background: -webkit-gradient(linear, left top, right top, from(#f1c500), to(#ff7700)) !important;
  background: linear-gradient(to right, #f1c500, #ff7700) !important;
}
body.light .timeline-container .timeline-section button, body.light .timeline-container .timeline-section p {
  color: #bbb !important;
  background-color: #fff !important;
}
body.light .timeline-container .yr-marker {
  color: #bbb !important;
  font-weight: 400 !important;
}
body.light .timeline-container .yr-marker .yr {
  color: #444 !important;
}
body.light .timeline-container .yr-marker.selected {
  color: #333 !important;
}
body.light .timeline-container .yr-marker.selected.start::before {
  border-color: #f1c500 !important;
}
body.light .timeline-container .yr-marker.selected.finish::before {
  border-color: #ff7700 !important;
}
body.light .timeline-container .yr-marker::before {
  border-color: #ddd !important;
  background: #fff !important;
}
body.light .timeline-container .yr-marker::after {
  background-color: #F3A561 !important;
}
body.light .timeline-container .yr-marker .dev-link {
  background-color: #fff !important;
}
body.light .timeline-container .yr-marker .dev-link a .detail {
  color: #444 !important;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1.5px;
  -webkit-transition: all 0.25s var(--ease-out-quint);
  transition: all 0.25s var(--ease-out-quint);
}
body.light .timeline-container .yr-marker .dev-link a .skill {
  color: #ef7300 !important;
}
body.light .timeline-container .yr-marker .dev-link a span {
  font-weight: 400 !important;
}
body.light .timeline-container .yr-marker .dev-link a:hover .detail,
body.light .timeline-container .yr-marker .dev-link a:focus .detail {
  color: black !important;
  text-decoration-color: #EEA459;
}
body.light #development .yr-marker {
  color: #444 !important;
}
body.light #development .yr-marker::before {
  border-color: #EEA459 !important;
}
body.light #personal .tagline, body.light #personal .tagline ~ p {
  text-shadow: #fff 0px 0px 15px, #fff 0px 0px 15px, #fff 0px 0px 15px, #fff 0px 0px 15px, #fff 0px 0px 15px !important;
}
body.light .row.side-by-side p {
  border-color: #F3A561 !important;
  text-shadow: #fff 0px 0px 15px, #fff 0px 0px 15px, #fff 0px 0px 15px, #fff 0px 0px 15px, #fff 0px 0px 15px !important;
}
body.light #contact {
  background: white !important;
}
body.light #contact p.sm-font, body.light #contact p.sm-font::after {
  background-color: white;
}
body.light #contact #need-checklists {
  background: white;
}
body.light legend {
  color: #333;
}
body.light legend i {
  color: #F3A561 !important;
}
body.light fieldset {
  border-color: #F3A561 !important;
  -webkit-box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}
body.light fieldset .checkbox-list {
  background-color: #f7f7f7 !important;
}
body.light main section#contact #form-container #need-checklists fieldset label:after, body.light main section#contact #form-container #need-checklists fieldset label:before {
  background-color: #ddd;
  color: transparent;
}
body.light main section#contact #form-container #need-checklists fieldset label:hover::after,
body.light main section#contact #form-container #need-checklists fieldset label:focus::after {
  color: #ff7700 !important;
}
body.light main section#contact #form-container #need-checklists fieldset label.selected:after {
  background-color: #00b500 !important;
  color: white !important;
}
body.light label {
  color: #333;
  font-weight: 400;
}
body.light textarea {
  background-color: #f7f7f7 !important;
  color: #333 !important;
  font-weight: 400;
}
body.light footer {
  border-color: #ddd;
}
body.light footer p {
  color: #666;
}
body.light footer p i {
  color: #999;
}
body.light footer p a {
  color: #666;
}
body.light footer p a:hover, body.light footer p a:focus {
  color: #ff7c01;
  text-decoration-color: var(--orange);
}
body.light .fade-in, body.light nav .sub-menu-item.appear, nav body.light .sub-menu-item.appear, body.light main section.appear, main body.light section.appear, body.light main section .content .card.appear, main section .content body.light .card.appear, body.light main section .timeline-container details.appear, main section .timeline-container body.light details.appear {
  -webkit-animation-duration: 2.5s !important;
          animation-duration: 2.5s !important;
}
body.light main section .content .row.side-by-side p {
  font-size: 18.5px;
}/*# sourceMappingURL=style.css.map */