:root {
  --bg: #080d1a;
  --bg-2: #101727;
  --panel: #151d30;
  --panel-2: #1a2337;
  --line: #26324a;
  --text: #f4f7fb;
  --muted: #91a0b9;
  --accent: #08c8f4;
  --accent-2: #1977ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .26);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
  --dark: #111111;
  --lightDark: #191919;
  --myDark: #27292d;
  --light: #ffffff;
  --lightGrey: #ddd;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 10%, rgba(8, 200, 244, .055), transparent 28%), radial-gradient(circle at 90% 60%, rgba(25, 119, 255, .05), transparent 25%);
  z-index: -2
}

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

button,
input,
textarea {
  font: inherit
}

.shell {
  /* width: var(--shell); */
  width: 80%;
  margin: auto
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 10px 14px;
  background: var(--accent);
  color: #00121a;
  z-index: 1000;
  border-radius: 8px
}

.skip-link:focus {
  top: 16px
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(8, 13, 26, .72); */
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  font: 700 2.5rem "Space Grotesk";
  letter-spacing: -.03em
}

.brand span,
.footer span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px
}

.nav-links>a {
  font-size: .82rem;
  color: #aab6c9;
  position: relative
}

.nav-links>a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: .25s
}

.nav-links>a:hover,
.nav-links>a.active {
  color: #fff
}

.nav-links>a:hover:after,
.nav-links>a.active:after {
  transform: scaleX(1)
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(8, 200, 244, .35);
  border-radius: 999px;
  color: #fff !important
}

.nav-cta span {
  color: var(--accent)
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 42px;
  height: 42px
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 4px
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 0 90px
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent)
}

#ballpit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center
}

.hero-copy {
  max-width: 650px
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em
}

.hero h1 {
  font: 700 clamp(3.5rem, 7vw, 6.4rem)/.95 "Space Grotesk";
  letter-spacing: -.065em;
  margin: 0
}

.hero h1 span {
  display: block;
  color: var(--accent)
}

.hero-role {
  font: 700 clamp(1.3rem, 2.5vw, 2rem) "Space Grotesk";
  margin: 24px 0 12px
}

.hero-text {
  color: #aab5c8;
  max-width: 620px;
  font-size: 1rem
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 18px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: .25s
}

.btn-primary {
  background: var(--accent);
  color: #00151d;
  box-shadow: 0 10px 28px rgba(8, 200, 244, .17)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(8, 200, 244, .26)
}

.btn-ghost {
  border-color: #334057;
  background: rgba(14, 22, 38, .55)
}

.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-3px)
}

.hero-socials {
  display: flex;
  gap: 10px;
  margin-top: 30px
}

.hero-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aab6c9;
  background: rgba(18, 28, 47, .72);
  transition: .25s
}

.hero-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px)
}

.code-card {
  justify-self: end;
  width: min(470px, 100%);
  background: rgba(21, 29, 48, .78);
  border: 1px solid rgba(124, 146, 180, .2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.5deg)
}

.code-top {
  height: 42px;
  background: #1d273b;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px
}

.code-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e95d5d
}

.code-top i:nth-child(2) {
  background: #f0b33f
}

.code-top i:nth-child(3) {
  background: #37d178
}

.code-top span {
  margin-left: auto;
  color: #6f7e97;
  font: 500 .7rem monospace
}

.code-card pre {
  margin: 0;
  padding: 25px;
  color: #c8d4e8;
  font: 500 .78rem/2 monospace
}

.code-card b {
  color: #d85bff
}

.code-card em {
  color: #78e0a8;
  font-style: normal
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--accent);
  animation: bob 2s ease-in-out infinite
}

.scroll-cue span {
  font-size: 1.2rem
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12
}

.glow-a {
  width: 320px;
  height: 320px;
  background: var(--accent);
  left: -120px;
  top: 25%
}

.glow-b {
  width: 280px;
  height: 280px;
  background: var(--accent-2);
  right: -100px;
  bottom: 5%
}

.section {
  padding: 98px 0
}

.section-alt {
  background: var(--bg-2)
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 65px
}

.section-heading h2 {
  font: 700 clamp(2.1rem, 4vw, 3.5rem)/1.05 "Space Grotesk";
  letter-spacing: -.05em;
  margin: 0 0 16px
}

.section-heading h2 span {
  color: var(--accent)
}

.section-heading>p:last-child {
  color: var(--muted);
  margin: 0
}

.align-left {
  text-align: left;
  margin-left: 0
}

.about-layout {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 26px
}

.panel {
  background: linear-gradient(145deg, #172035, #121a2c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow)
}

.panel-kicker {
  display: block;
  color: var(--accent);
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 20px
}

.about-copy p {
  color: #aab5c8
}

.about-copy p:last-child {
  margin-bottom: 0
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 22px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.stat strong {
  font: 700 1.7rem "Space Grotesk";
  color: var(--accent)
}

.stat strong span {
  font-size: 1rem
}

.stat small {
  color: #aab6c9;
  line-height: 1.35;
  margin-top: 6px
}

.education {
  margin-top: 30px
}

.edu-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  margin-top: 12px
}

.edu-icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #08e1b4, #08bff2);
  color: #03151d;
  display: grid;
  place-items: center;
  font-weight: 900
}

.edu-card b {
  display: block;
  font-size: .88rem
}

.edu-card small {
  display: block;
  color: #8d9ab0;
  font-size: .72rem
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 32px
}

.timeline:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), rgba(8, 200, 244, .08))
}

.timeline-item {
  position: relative;
  padding: 0 0 48px
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 7px rgba(8, 200, 244, .07)
}

.timeline-date {
  color: #7e8ca5;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 10px
}

.timeline-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 27px 30px
}

.timeline-role {
  font: 700 1.15rem "Space Grotesk";
  margin: 0
}

.timeline-company {
  color: var(--accent);
  font-weight: 800;
  margin: 3px 0 15px
}

.timeline-card ul {
  margin: 0;
  padding-left: 19px;
  color: #9ca9bc
}

.timeline-card li {
  margin: 7px 0
}

.tag-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 18px
}

.tag-row span {
  padding: 5px 10px;
  border: 1px solid rgba(8, 200, 244, .2);
  background: rgba(8, 200, 244, .07);
  border-radius: 999px;
  color: #78dff6;
  font-size: .68rem;
  font-weight: 700
}

.skill-groups {
  display: grid;
  gap: 45px
}

.skill-group h3 {
  text-align: center;
  color: var(--accent);
  font: 700 .9rem "Space Grotesk";
  margin: 0 0 17px
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.skill-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden
}

.skill-card span {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: linear-gradient(135deg, #08c8f4, #117bff);
  display: grid;
  place-items: center;
  color: #03141d;
  font-size: .72rem;
  font-weight: 900
}

.skill-card b {
  font-size: .77rem
}

.skill-card i {
  position: absolute;
  left: 58px;
  right: 15px;
  bottom: 9px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  opacity: .8
}

.projects-section {
  background: #0d1423
}

.project-list {
  display: grid;
  gap: 70px
}

.project-story {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center
}

.project-story.reverse {
  grid-template-columns: .85fr 1.15fr
}

.project-story.reverse .project-media {
  order: 2
}

.project-story.reverse .project-info {
  order: 1
}

.project-media {
  min-height: 370px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #141e32;
  box-shadow: var(--shadow)
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .55s
}

.project-story:hover .project-media img {
  transform: scale(1.025)
}

.project-number {
  font: 700 3rem "Space Grotesk";
  color: rgba(8, 200, 244, .18);
  display: block;
  line-height: 1
}

.project-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 800
}

.project-info h3 {
  font: 700 clamp(2rem, 4vw, 3rem) "Space Grotesk";
  letter-spacing: -.05em;
  margin: 7px 0 13px
}

.project-info>p:not(.project-label):not(.project-number) {
  color: #9ba8bd
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px
}

.contact-section {
  background: #080d1a
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 26px;
  align-items: start
}

.contact-details {
  display: grid;
  gap: 13px
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px;
  transition: .25s
}

.contact-card:hover {
  border-color: rgba(8, 200, 244, .45);
  transform: translateX(4px)
}

.contact-card>span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #08c8f4, #087eea);
  display: grid;
  place-items: center;
  color: #03151d;
  font-weight: 900
}

.contact-card b,
.contact-card small {
  display: block
}

.contact-card b {
  font-size: .83rem
}

.contact-card small {
  color: #8e9bb0;
  font-size: .73rem;
  margin-top: 2px
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 28px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

.contact-form label {
  display: block;
  margin-bottom: 13px
}

.contact-form label span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0)
}

input,
textarea {
  width: 100%;
  border: 1px solid #29354d;
  background: #111a2c;
  color: #fff;
  border-radius: 9px;
  padding: 14px 15px;
  outline: none;
  transition: .2s
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(8, 200, 244, .1)
}

textarea {
  resize: vertical;
  min-height: 140px
}

.contact-form .btn {
  width: 100%
}

.form-note {
  min-height: 20px;
  color: var(--accent);
  font-size: .78rem;
  margin: 9px 0 0
}


/* ================================
   FOOTER
================================ */

.footer {
  background: #111a2b;
  border-top: 1px solid var(--line);
  color: #ffffff;
  padding: 70px 0 22px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 50px;
  align-items: start;
}


/* ================================
   BRAND
================================ */

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font: 700 1.8rem "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  transition: color 0.25s ease;
}

.footer-logo span {
  color: var(--accent);
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-brand p {
  margin: 16px 0 0;
  color: #7e8ba1;
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 310px;
}


/* ================================
   FOOTER HEADINGS
================================ */

.footer-nav h4,
.footer-connect h4 {
  margin: 0;
  color: #7e8ba1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ================================
   NAVIGATION
================================ */

.footer-nav nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(70px, 1fr));
  gap: 13px 25px;
  margin-top: 18px;
}

.footer-nav a {
  width: fit-content;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(3px);
}


/* ================================
   SOCIAL
================================ */

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;

  color: #ffffff;
  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111a2b;
  transform: translateY(-3px);
}


/* ================================
   EMAIL
================================ */

.footer-email {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-height: 100%;
}

.footer-email>a:first-child {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
  transition: color 0.25s ease;
}

.footer-email>a:first-child:hover {
  color: var(--accent);
}


/* ================================
   BACK TO TOP
================================ */

.back-top {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  margin-top: 32px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;

  background: #ffffff;
  color: #111a2b;

  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.back-top:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-4px);
}


/* ================================
   BOTTOM BAR
================================ */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 55px;
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #66748b;
  font-size: 0.72rem;
  font-weight: 500;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }

  .footer-email {
    align-items: flex-start;
  }

  .back-top {
    margin-top: 22px;
  }
}


@media (max-width: 600px) {

  .footer {
    padding: 50px 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-email {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    margin-top: 40px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-delay {
  transition-delay: .12s
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: screen;
  display: none
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent)
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(8, 200, 244, .65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s
}

.cursor-dot {
  transform: translate(-50%, -50%)
}

@keyframes bob {
  50% {
    transform: translateX(-50%) translateY(7px)
  }
}

@media (pointer:fine) {

  .cursor-dot,
  .cursor-ring {
    display: block
  }
}

@media(max-width:900px) {
  :root {
    --shell: min(100% - 32px, 760px)
  }

  .brand {
    font: 700 1.5rem "Space Grotesk";
    letter-spacing: -.03em
  }

  .nav {
    min-height: 70px
  }

  .menu-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #111a2b;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links>a {
    padding: 8px 4px
  }

  .nav-links>a:not(.nav-cta):after {
    display: none
  }

  .nav-cta {
    text-align: center
  }

  .hero {
    min-height: 760px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .code-card {
    justify-self: start;
    max-width: 500px
  }

  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .project-story,
  .project-story.reverse {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .project-story.reverse .project-media,
  .project-story.reverse .project-info {
    order: initial
  }

  .project-media {
    min-height: 300px
  }

  .skill-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  :root {
    --shell: calc(100% - 24px)
  }

  .section {
    padding: 85px 0
  }

  .hero {
    padding-top: 110px
  }

  .hero h1 {
    font-size: 3.35rem
  }

  .hero-role {
    font-size: 1.35rem
  }

  .hero-text {
    font-size: .9rem
  }

  .code-card {
    transform: none
  }

  .code-card pre {
    font-size: .67rem;
    padding: 18px
  }

  .panel {
    padding: 23px
  }

  .stats {
    grid-template-columns: 1fr 1fr
  }

  .stat {
    padding: 16px;
    min-height: 100px
  }

  .skill-grid {
    grid-template-columns: 1fr
  }

  .project-media {
    min-height: 220px
  }

  .contact-form {
    padding: 18px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-inner {
    flex-wrap: wrap
  }

  .footer-inner p {
    order: 3;
    width: 100%
  }

  .timeline {
    padding-left: 25px
  }

  .timeline:before {
    left: 5px
  }

  .timeline-dot {
    left: -28px
  }

  .timeline-card {
    padding: 22px
  }

  .project-info h3 {
    font-size: 2rem
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .scroll-cue {
    animation: none
  }

  .project-media img,
  .btn,
  .contact-card {
    transition: none
  }
}


/* ---------------------------------------------------------when dark theme toggle is pressed-------------------------------------------------------------  */
.dark-theme {
  background-color: var(--lightDark);
  color: var(--light);
  transition: 0.3s ease-in-out;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

canvas {
  -ms-touch-action: auto;
  touch-action: auto;
  margin-bottom: -1em;
}

/* sun and moon icon for theme toggle */
#icon {
  width: 30px;
  cursor: pointer;
  color: var(--light);
}

.main-section {
  background: var(--dark);
  color: var(--light);
  height: 100vh;
}

.main-section .hero-section {
  width: 80%;
  margin: 0 auto;
  max-width: 1600px;
  pointer-events: none;
}

.main-section .hero-section .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* max-width: 1170px; */
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  z-index: 30;
  position: absolute;
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}

.main-section .hero-section .navbar .logo {
  font-family: "Dancing Script", cursive;
  font-size: 1.5em;
  font-weight: 700;
  pointer-events: all;
  margin-top: 0.5em;
  -webkit-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
}

.main-section .hero-section .navbar .logo:hover {
  opacity: 0.8;
}

.main-section .hero-section .navbar .logo a {
  display: block;
}

.main-section .hero-section .navbar h2 {
  margin-top: 0.5em;
}

.main-section .hero-section .navbar.hidden {
  opacity: 0;
  pointer-events: none;
}

.main-section .hero-section .navbar .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: all;
}

.main-section .hero-section .navbar .nav-links div {
  cursor: pointer;
}

.main-section .hero-section .navbar .nav-links .moon-icon {
  display: none;
}

.main-section .hero-section .navbar .nav-links .phone-icon:hover {
  -webkit-animation: shake 4s ease-in-out infinite;
  animation: shake 4s ease-in-out infinite;
}

.main-section .hero-section .navbar .nav-links .whatsapp-icon-img {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.main-section .hero-section .navbar .nav-links .whatsapp-icon-img:hover {
  -webkit-animation: popShake 4s ease-in-out infinite;
  animation: popShake 4s ease-in-out infinite;
}

.main-section .hero-section .navbar .nav-links .sun-icon-img {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.main-section .hero-section .navbar .nav-links .sun-icon-img:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.main-section .hero-section .navbar .nav-links div+div {
  margin-left: 2.5em;
}

.main-section .hero-section .hero-section-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  width: 100%;
  left: 0;
  z-index: 20;
}

.main-section .hero-section .hero-section-text .hero-content {
  width: 80%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 2em;
}

.main-section .hero-section .hero-section-text .hero-content h1 {
  font-size: 4em;
  font-family: "Spartan", sans-serif;
  margin: 0;
}

@media (max-width: 1000px) {
  .main-section .hero-section .hero-section-text .hero-content h1 {
    font-size: 3em;
  }
}

@media (max-width: 650px) {
  .main-section .hero-section .hero-section-text .hero-content h1 {
    font-size: 2em;
  }
}

.main-section .hero-section .hero-section-text .hero-content p {
  font-family: "Merriweather", serif;
  font-style: italic;
  margin: 1.25em 0 2.25em;
}

.main-section .hero-section .hero-section-text .hero-content .about-me-btn {
  display: inline-block;
  background: -webkit-gradient(linear, right top, left top, from(#1595b6), to(rgba(31, 38, 103, 0.9)));
  background: linear-gradient(to left, #1595b6, rgba(31, 38, 103, 0.9));
  background-color: #4595eb;
  border-radius: 5px;
  padding: 0.6em 1.25em;
  font-weight: 800;
  position: relative;
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.main-section .hero-section .hero-section-text .hero-content .about-me-btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 650px) {
  .main-section .hero-section .hero-section-text .hero-content {
    margin-top: 1.2em;
  }
}

.main-section .hero-section .hero-section-text .name-logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  -webkit-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  z-index: -2;
}

.main-section .hero-section .hero-section-text .name-logo img {
  width: 100%;
}

@media (max-width: 1500px) {
  .main-section .hero-section .hero-section-text .name-logo {
    width: 500px;
  }
}

@media (max-width: 650px) {
  .main-section .hero-section .hero-section-text .name-logo {
    width: 350px;
    top: -2em;
  }
}

@media (max-width: 460px) {
  .main-section .hero-section .hero-section-text .name-logo {
    width: 300px;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
  }
}

@media (max-width: 360px) {
  .main-section .hero-section .hero-section-text .name-logo {
    width: 200px;
  }
}

@media (max-width: 650px) {
  .main-section .hero-section .hero-section-text {
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
  }
}

.main-section .hero-section .about-section {
  width: 90%;
  max-width: 1200px;
  height: 700px;
  background: var(--lightDark);
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 25%;
  pointer-events: none;
  -webkit-transform: translate(-50%, -45%) scale(0);
  transform: translate(-50%, -45%) scale(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  z-index: 1000;
  -webkit-transition: left 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: left 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.main-section .hero-section .about-section .x-icon {
  background: #666af6;
  background: #27292d;
  border-radius: 50%;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 15px;
  top: 15px;
  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;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}

.main-section .hero-section .about-section .x-icon img {
  vertical-align: middle;
  width: 50%;
}

.main-section .hero-section .about-section .x-icon:hover {
  -webkit-transform: rotate(90deg) scale(1.05);
  transform: rotate(90deg) scale(1.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.main-section .hero-section .about-section .about-me {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-section .hero-section .about-section .about-me .about-me-text {
  width: 65%;
  margin: 0 auto;
}

.main-section .hero-section .about-section .about-me .about-me-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.85em;
}

.main-section .hero-section .about-section .about-me .about-me-text ul li {
  border: 1px solid #444;
  padding: 0.4em 0.8em;
  border-radius: 50px;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}

.main-section .hero-section .about-section .about-me .about-me-text .about-me-title {
  color: #1788ae;
}

.main-section .hero-section .about-section .about-me .about-me-text .mern {
  margin-bottom: 2.2em;
  margin-top: 2em;
  color: #1788ae;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5em;
  position: relative;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons h2 {
  margin-top: 0.5em;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons .mongodb-icon .tooltip {
  background-color: #47a248;
  color: var(--light);
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons .express-icon .tooltip {
  background-color: var(--light);
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons .react-icon .tooltip {
  background-color: #61dafb;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons .node-icon .tooltip {
  background-color: #8cc84b;
  margin-left: -2px;
}

@media (max-width: 1000px) {
  .main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .about-me-title,
  .main-section .hero-section .about-section .about-me .about-me-text .mern {
    text-align: center;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .about-me-detail {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .about-me-detail+.about-me-detail {
    margin-top: 0.75em;
  }
}

@media (max-width: 400px) {
  .main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.7em;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons svg {
    width: 35px;
    height: 35px;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .about-me-title,
  .main-section .hero-section .about-section .about-me .about-me-text .mern {
    text-align: center;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .mern {
    margin-top: 1em;
    margin-bottom: 1.5em;
  }

  .main-section .hero-section .about-section .about-me .about-me-text .about-me-detail {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
  }
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: context-menu;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons div .tooltip {
  background-color: #8cc84b;
  color: var(--dark);
  padding: 0.5em 1.25em;
  font-weight: 600;
  border-radius: 50px;
  position: absolute;
  margin-bottom: 2em;
  top: -1.25em;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: top 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons div .tooltip::after {
  content: "";
  width: 12px;
  height: 12px;
  background: inherit;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: -6px;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons div:hover .tooltip {
  opacity: 1;
  top: -3.25em;
}

.main-section .hero-section .about-section .about-me .about-me-text .top-skills-icons div+div {
  margin-left: 2em;
}

@media (max-width: 370px) {
  .main-section .hero-section .about-section .about-me {
    zoom: 90%;
  }
}

@media (max-width: 330px) {
  .main-section .hero-section .about-section .about-me {
    zoom: 85%;
  }
}

.main-section .hero-section .about-section .illustration {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.main-section .hero-section .about-section .illustration .coder-img {
  width: 100%;
}

@media (max-width: 1000px) {
  .main-section .hero-section .about-section .illustration .coder-img {
    width: 60%;
    min-width: 270px;
  }
}

@media (max-width: 760px) {
  .main-section .hero-section .about-section .illustration {
    display: none;
  }
}

@media (max-width: 1000px) {
  .main-section .hero-section .about-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80vh;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 2em 0;
  }

  .main-section .hero-section .about-me-text {
    width: 90% !important;
  }
}

@media (max-width: 400px) {
  .main-section .hero-section .about-section {
    padding: 1em 0;
  }
}

.main-section .hero-section .about-section.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  left: 50%;
  pointer-events: all;
}

.main-section .social-links {
  position: absolute;
  font-size: 2em;
  right: 1em;
  top: 44%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: all;
  z-index: 22;
}

.main-section .social-links li+li {
  margin-top: 0.5em;
}

.main-section .social-links i {
  color: #b0b2c3;
  -webkit-transition: color 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: color 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: color 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: color 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.main-section .social-links li:hover i {
  color: var(--light);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-section .social-links.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 650px) {
  .main-section .social-links {
    font-size: 1.5em;
  }

  .main-section .social-links i {
    color: #c3c5d4;
  }

  .main-section .social-links li+li {
    margin-top: 0.75em;
  }
}

.main-section #wrapper-canvas {
  z-index: 10;
  pointer-events: scroll;
}

@media (max-width: 650px) {
  .main-section #wrapper-canvas {
    display: none;
  }
}

.main-section .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  opacity: 0;
  z-index: 99;
  pointer-events: none;
}

.main-section .overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

.main-section .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 650px) {
  .main-section .overlay2 {
    opacity: 0.4;
  }
}

.main-section .latest-works-link {
  position: absolute;

  bottom: 0em;
  display: inline-block;
  cursor: pointer;
  pointer-events: all;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  z-index: 10;
}

@media (max-width: 300px) {
  .main-section .latest-works-link {
    font-size: 1em;
  }
}

.main-section .latest-works-link:hover {
  -webkit-transform: translate(-50%, 0) scale(1.1);
  transform: translate(-50%, 0) scale(1.1);
}

.main-section .latest-works-link:hover+.down-arrow {
  bottom: 1.75em;
}

.main-section .down-arrow {
  position: absolute;
  bottom: 2em;
  cursor: pointer;
  pointer-events: all;
  left: 50%;
  -webkit-transform: translate(-60%, 0) rotate(90deg);
  transform: translate(-60%, 0) rotate(90deg);
  -webkit-transition: bottom 0.25s ease-in-out;
  transition: bottom 0.25s ease-in-out;
}

.main-section .down-arrow:hover {
  bottom: 1.75em;
}

.main-section .latest-works-arrow {
  background: #444;
  width: 2px;
  height: 1.5em;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  pointer-events: all;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.main-section .latest-works-arrow:hover~.down-arrow {
  bottom: 1.75em;
}

@media (max-width: 650px) {
  .main-section {
    font-size: 0.9em;
  }
}





@-webkit-keyframes breathing {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }

  50% {
    -webkit-transform: translateY(0em);
    transform: translateY(0em);
  }

  75% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }

  100% {
    -webkit-transform: translateY(0em);
    transform: translateY(0em);
  }
}

@keyframes breathing {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }

  50% {
    -webkit-transform: translateY(0em);
    transform: translateY(0em);
  }

  75% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }

  100% {
    -webkit-transform: translateY(0em);
    transform: translateY(0em);
  }
}

@-webkit-keyframes popShake {
  0% {
    -webkit-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) rotate(0deg);
  }

  2% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  4% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  6% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  8% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  10% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  12% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  14% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  16% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  18% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  20% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  22% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  24% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  26% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  28% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  30% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  32% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  34% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  36% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  38% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  40% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  42% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  44% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  46% {
    -webkit-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) rotate(0deg);
  }
}

@keyframes popShake {
  0% {
    -webkit-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) rotate(0deg);
  }

  2% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  4% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  6% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  8% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  10% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  12% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  14% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  16% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  18% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  20% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  22% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  24% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  26% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  28% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  30% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  32% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  34% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  36% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  38% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  40% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  42% {
    -webkit-transform: scale(1.1) rotate(-10deg);
    transform: scale(1.1) rotate(-10deg);
  }

  44% {
    -webkit-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
  }

  46% {
    -webkit-transform: scale(1.1) rotate(0deg);
    transform: scale(1.1) rotate(0deg);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: scale(1.1) translate3d(0em, 0, 0);
    transform: scale(1.1) translate3d(0em, 0, 0);
  }

  2% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  4% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  6% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  8% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  10% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  12% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  14% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  16% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  18% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  20% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  22% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  24% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  26% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  28% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  30% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  32% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  34% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  36% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  38% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  40% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  42% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  44% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  46% {
    -webkit-transform: scale(1.1) translate3d(0em, 0, 0);
    transform: scale(1.1) translate3d(0em, 0, 0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: scale(1.1) translate3d(0em, 0, 0);
    transform: scale(1.1) translate3d(0em, 0, 0);
  }

  2% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  4% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  6% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  8% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  10% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  12% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  14% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  16% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  18% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  20% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  22% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  24% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  26% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  28% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  30% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  32% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  34% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  36% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  38% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  40% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  42% {
    -webkit-transform: scale(1.1) translate3d(0.05em, 0, 0);
    transform: scale(1.1) translate3d(0.05em, 0, 0);
  }

  44% {
    -webkit-transform: scale(1.1) translate3d(-0.05em, 0, 0);
    transform: scale(1.1) translate3d(-0.05em, 0, 0);
  }

  46% {
    -webkit-transform: scale(1.1) translate3d(0em, 0, 0);
    transform: scale(1.1) translate3d(0em, 0, 0);
  }
}

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