:root {
  /* theme colors */
  --navy: #0a192f;
  --dark-navy: #020c1b;
  --light-navy: #112240;
  --lightest-navy: #233554;
  --navy-shadow: rgba(2, 12, 27, 0.7);
  /* grey colors */
  --slate: #8892b0;
  --dark-slate: #495670;
  --light-slate: #a8b2d1;
  --lightest-slate: #ccd6f6;
  /* colors */
  --white: #e6f1ff;
  --primary: #57cbff;
  --primary-tint: rgba(100, 255, 218, 0.1);
  --secondary: #f57dff;
  /* font sizes */
  --font-xxs: 12px;
  --font-xs: 13px;
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-xxl: 22px;
  --font-heading: 32px;
  /* fonts */
  --font-sans: "CogniCue", sans-serif;
  --font-mono: "SF Mono", monospace;
  /* radius */
  --border-radius: 4px;
  /* nav height */
  --nav-height: 100px;
  --nav-scroll-height: 70px;
  /* tab height */
  --tab-height: 42px;
  --tab-width: 120px;

  /* animations */
  --easing: cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

  /* hembuter */
  --hamburger-width: 30px;
  --ham-before: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
  --ham-before-active: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  --ham-after: bottom 0.1s ease-in 0.25s,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ham-after-active: bottom 0.1s ease-out,
    transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px 0px 10px;
  font-weight: 600;
  color: var(--lightest-slate);
  line-height: 1.1;
}
p:not(:last-child) {
  margin: 0 0 15px 0;
}
@font-face {
  font-family: "CogniCue";
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/TTLakes-Compressed-Black.otf);
}

@font-face {
  font-family: "CogniCue";
  font-style: normal;
  font-weight: 700;
  font-stretch: condensed;
  src: url(../fonts/TTLakes-Condensed-Bold.otf);
}

@font-face {
  font-family: "CogniCue";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/TTLakes-Medium.otf);
}

@font-face {
  font-family: "SF Mono Regular";
  font-style: normal;
  font-weight: 400;
  src: local("SF Mono Regular"),
    url("../fonts/SFMonoRegular.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Regular Italic";
  font-style: normal;
  font-weight: 400;
  src: local("SF Mono Regular Italic"),
    url("../fonts/SFMonoRegularItalic.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Light";
  font-style: normal;
  font-weight: 300;
  src: local("SF Mono Light"), url("../fonts/SFMonoLight.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Light Italic";
  font-style: normal;
  font-weight: 300;
  src: local("SF Mono Light Italic"),
    url("../fonts/SFMonoLightItalic.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Medium";
  font-style: normal;
  font-weight: 500;
  src: local("SF Mono Medium"), url("../fonts/SFMonoMedium.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Medium Italic";
  font-style: normal;
  font-weight: 500;
  src: local("SF Mono Medium Italic"),
    url("../fonts/SFMonoMediumItalic.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Semibold";
  font-style: normal;
  font-weight: 600;
  src: local("SF Mono Semibold"),
    url("../fonts/SFMonoSemibold.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Semibold Italic";
  font-style: normal;
  font-weight: 600;
  src: local("SF Mono Semibold Italic"),
    url("../fonts/SFMonoSemiboldItalic.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Bold";
  font-style: normal;
  font-weight: 600;
  src: local("SF Mono Bold"), url("../fonts/SFMonoBold.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Bold Italic";
  font-style: normal;
  font-weight: 600;
  src: local("SF Mono Bold Italic"),
    url("../fonts/SFMonoBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Heavy";
  font-style: normal;
  font-weight: 900;
  src: local("SF Mono Heavy"), url("../fonts/SFMonoHeavy.woff") format("woff");
}

@font-face {
  font-family: "SF Mono Heavy Italic";
  font-style: normal;
  font-weight: 900;
  src: local("SF Mono Heavy Italic"),
    url("../fonts/SFMonoHeavyItalic.woff") format("woff");
}
html {
  height: 100%;
}
body {
  margin: 0px;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: var(--navy);
  color: var(--slate);
  font-family: var(--font-sans);
  font-size: var(--font-xl);
  line-height: 1.3;
}
body.over-flow {
  overflow: hidden;
}
body.over-flow main {
  filter: blur(5px) brightness(0.7);
}
a {
  text-decoration: none;
  text-decoration-skip-ink: auto;
  color: inherit;
  transition: var(--transition);
}
.header {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(10, 25, 47, 0.85);
  transform: translateY(0%);
  /* opacity: 0; */
  transition: all 0.5s ease-out, opacity 0.5s;
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 1px 16px 2px var( --light-navy);
}
.header.fixed {
  background-color: var(--navy);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 14;
  padding: 15px 30px;
  transform: translateY(0%);
  /* opacity: 0; */
  transition: all 0.5s ease-out, opacity 0.5s;
}
header.fixed .ham-button {
  margin-right: 0px;
}
.logo {
  width: 157px;
  height: 81px;
  color: var(--dark-navy);
  fill: var(--light-navy);
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo svg {
  color: var(--primary);
}
.logo svg path {
  stroke: var(--primary);
}
nav.nav {
  display: flex;
  font-size: var(--font-xs);
  font-family: var(--font-mono);
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  padding: 50px 10px;
  width: min(90vw, 360px);
  height: 100vh;
  outline: 0px;
  background-color: var(--light-navy);
  box-shadow: -10px 0px 30px -15px var(--navy-shadow);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease-out, opacity 0.5s;
  display: none;
  text-align: center;
}
nav.nav.isShow {
  transform: translateX(0);
  opacity: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9;
  display: block;
}
nav.nav.isShow ul {
  flex-direction: column;
  font-size: clamp(var(--font-sm), 4vw, var(--font-lg));
  text-align: center;
}
nav.nav.isShow a {
  display: inline-block;
}
nav.nav.isShow a::before {
  display: block;
  margin: 0;
}

nav.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  /* Set "my-sec-counter" to 0 */
  counter-reset: my-sec-counter;
}
nav.nav ul a {
  padding: 10px;
  color: var(--lightest-slate);
  text-decoration: none;
}
nav.nav ul a:before {
  /* Increment "my-sec-counter" by 1 */
  counter-increment: my-sec-counter;
  content: "0" counter(my-sec-counter) ".";
  color: var(--primary);
  margin-right: 5px;
}
nav.nav.show a:before {
  display: block;
  margin: auto;
}
a.resume-button {
  text-decoration: none;
  padding: 0.75rem 1rem;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 18px 50px;
  border-radius: 4px;
  margin: 10% auto 0px;
  width: max-content;
}
.left-side {
  display: none;
  width: 40px;
  position: fixed;
  bottom: 0px;
  left: 40px;
  right: auto;
  z-index: 10;
  color: var(--light-slate);
}
.left-side ul {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.left-side ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.left-side ul li:last-of-type {
  margin-bottom: 20px;
}
.left-side li a {
  display: inline-block;
  padding: 10px;
}
.left-side li a svg {
  width: 20px;
  height: 20px;
}
.left-side ul:after,
.email:after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  margin: 0px auto;
  background-color: var(--light-slate);
}
.email a {
  margin: 20px auto;
  padding: 10px;
  font-family: var(--font-mono);
  font-size: var(--font-xxs);
  line-height: var(--font-lg);
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.right-side {
  display: none;
  width: 40px;
  position: fixed;
  bottom: 0px;
  left: auto;
  right: 40px;
  z-index: 10;
  color: var(--light-slate);
}
main {
  margin: 5px auto 0;
  width: 100%;
  max-width: 1600px;
  min-height: 100vh;
  padding: 0px 25px;
  counter-reset: section 0;
}
section {
  margin: 0px auto;
  padding: 20px 0px;
  max-width: 1000px;
}
.home {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
  padding: 0px;
  padding-bottom: 10vh;
  margin-top: 10vh;
}
.intro {
  max-width: 800px;
}
.home h1 {
  margin: 0px 0px 30px 4px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: clamp(var(--font-sm), 5vw, var(--font-md));
  font-weight: 400;
}
.home p {
  margin: 20px 0px 0px;
  max-width: 540px;
}
.home p > a {
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  position: relative;
  transition: var(--transition);
  color: var(--primary);
}
.big-heading {
  margin: 0px;
  font-size: clamp(40px, 8vw, 80px);
}
h3.big-heading {
  margin-top: 10px;
  color: var(--slate);
  line-height: 0.9;
}
.email-link {
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 1.25rem 1.75rem;
  font-size: var(--font-sm);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 50px;
  display: inline-block;
}
.ham-button {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 15px;
  border: 0px;
  background-color: transparent;
  color: inherit;
  text-transform: none;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  margin-right: 0px;
  cursor: pointer;
}
.ham-box {
  display: inline-block;
  position: relative;
  width: var(--hamburger-width);
  height: 24px;
}
.ham-box-inner {
  position: absolute;
  top: 50%;
  right: 0px;
  width: var(--hamburger-width);
  height: 2px;
  border-radius: var(--border-radius);
  background-color: var(--primary);
  transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transform: rotate(0deg);
}
.ham-box-inner:before,
.ham-box-inner:after {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  right: 0px;
  width: var(--hamburger-width);
  height: 2px;
  border-radius: 4px;
  background-color: var(--primary);
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
}
.ham-box-inner:before {
  width: 120%;
  top: -10px;
  opacity: 1;
  /* transition: var(--ham-before); */
  transition: all 0.3s ease-out;
}
.ham-box-inner:after {
  width: 80%;
  bottom: -10px;
  /* transform: rotate(0deg);
  transition: var(--ham-after); */
  transition: all 0.3s ease-out;
}
.ham-button.close .ham-box-inner {
  background: transparent;
}
.ham-button.close .ham-box-inner:before {
  width: 100%;
  top: -11px;
  /* transform: rotate(45deg); */
  transform: rotate(-45deg) translate(-8px, 6px);
  /* transition: var(--transition); */
}
.ham-button.close .ham-box-inner:after {
  /* transform: rotate(-45deg); */
  transform: rotate(45deg) translate(-9px, -8px);
  width: 100%;
  bottom: -11px;
  /* transition: var(--transition); */
}

/* about section */
.numbered-heading {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin: 10px 0px 40px;
  width: 100%;
  font-size: clamp(26px, 5vw, var(--font-heading));
  white-space: nowrap;
}
.numbered-heading::before {
  position: relative;
  counter-increment: section 1;
  content: "0" counter(section) ".";
  margin-right: 10px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: clamp(var(--font-md), 3vw, var(--font-xl));
  font-weight: 400;
}
.numbered-heading::after {
  content: "";
  display: block;
  position: relative;
  width: 300px;
  height: 1px;
  margin-left: 20px;
  background-color: var(--lightest-navy);
}
.inner {
  display: flex;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  flex-direction: column;
}
.about-me {
  max-width: 300px;
}
.about-me img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
}
.wrapper {
  position: relative;
}
.wrapper:after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  content: "";
  border: 2px solid var(--primary);
  top: 20px;
  left: 20px;
  z-index: -1;
}
ul.skills-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
  gap: 0px 10px;
  padding: 0px;
  margin: 20px 0px 0px;
  overflow: hidden;
  list-style: none;
}
ul.skills-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-family: var(--font-mono);
  font-size: var(--font-xs);
}
ul.skills-list li::before {
  content: "▹";
  position: absolute;
  left: 0px;
  color: var(--primary);
  font-size: var(--font-sm);
  line-height: 12px;
}

/* worked */
.worked {
  padding: 60px 0;
}
.inner-work {
  display: flex;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  flex-direction: column;
}
.tab-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 2px solid var(--lightest-navy);
}
.tab-list::-webkit-scrollbar {
  display: none;
}
.tab-list button {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  min-width: 140px;
  padding: 15px;
  border-left: 0px;
  border-bottom: 2px solid var(--lightest-navy);
  text-align: center;
  background-color: transparent;
  color: var(--slate);
  border: none;
  font-family: var(--font-mono);
  cursor: pointer;
}
.tab-list button:hover {
  background-color: var(--light-navy);
}
.tab-list button.active {
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
}
.work-list ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-size: var(--font-lg);
}
.work-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.work-list li:before {
  content: "▹";
  position: absolute;
  left: 0px;
  color: var(--primary);
}
.tab-content > .tabs {
  display: none;
}
.tab-content > .tabs.open {
  display: block;
}
.tab-content {
  position: relative;
  width: 100%;
}
.range {
  margin-bottom: 25px;
  color: var(--light-slate);
  font-family: var(--font-mono);
  font-size: var(--font-xs);
}

/* projects list */

ul.project-list {
  list-style: none;
}
li.project {
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(12, 1fr);
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 100px;
}
.project-content {
  position: relative;
  grid-column: 1 / span 12;
  grid-row: 1 / span 12;
  text-align: right;
}
.project-image {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  transition: var(--transition);
  grid-column: 1 / span 12;
  grid-row: 1 / span 12;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.img-section img {
  width: 100%;
  display: block;
}
.project-description {
  /* box-shadow: 0 10px 30px -15px var(--navy-shadow); */
  transition: var(--transition);
  position: relative;
  z-index: 2;
  padding: 25px;
  border-radius: var(--border-radius);
  background-color: var(--light-navy);
  color: var(--light-slate);
  font-size: var(--font-lg);
}
.project-overline {
  margin: 10px 0px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: var(--font-xs);
  font-weight: 400;
}
.project-title {
  color: var(--lightest-slate);
  font-size: clamp(24px, 5vw, 28px);
}
.project-links {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-left: -10px;
  color: var(--lightest-slate);

  -webkit-box-pack: end;
  justify-content: flex-end;
  margin-left: 0px;
  margin-right: -10px;
}
.project-links a {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 10px;
}
.project-links a svg {
  width: 20px;
  height: 20px;
}
ul.project-tech-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 25px 0px 10px;
  padding: 0px;
  list-style: none;

  -webkit-box-pack: end;
  justify-content: flex-end;
}
ul.project-tech-list li {
  margin: 0px 0px 5px 20px;
  color: var(--light-slate);
  font-family: var(--font-mono);
  font-size: var(--font-xs);
  white-space: nowrap;
}

ul.project-list .project:nth-child(even) .project-content {
  grid-column: 1 / span 12;
  text-align: right;
}
ul.project-list .project:nth-child(even) .project-content .project-overline,
ul.project-list .project:nth-child(even) .project-content .project-title {
  text-align: left;
}
ul.project-list .project:nth-child(even) .project-content .project-tech-list {
  justify-content: start;
}
ul.project-list
  .project:nth-child(even)
  .project-content
  .project-tech-list
  li {
  margin: 0 20px 5px 0;
}
ul.project-list .project:nth-child(even) .project-content .project-links {
  justify-content: start;
  margin-left: -10px;
}
ul.project-list .project:nth-child(even) .project-image {
  grid-column: 1 / span 12;
}
.project-links .cta {
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: var(--font-xs);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  margin: 10px;
}

/* other projects */
.otherProject {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  max-width: 100%;
}
.more-button {
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  font-size: var(--font-xs);
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 1.25rem 1.75rem;
  margin: 80px auto 0px;
}
.other-head {
  font-size: clamp(24px, 5vw, var(--font-heading));
}
a.inline-link {
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  position: relative;
  transition: var(--transition);
  color: var(--primary);
}
.archive-link {
  font-family: var(--font-mono);
  font-size: var(--font-sm);
}

.projects-grid {
  list-style: none;
  padding: 0px;
  margin: 50px 0px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 15px;
  position: relative;
}
.project-inner {
  box-shadow: 0 10px 30px -15px var(--navy-shadow);
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: var(--border-radius);
  background-color: var(--light-navy);
  transition: var(--transition);
}
.project-top {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 35px;
}
.project-title {
  margin: 0px 0px 10px;
  color: var(--lightest-slate);
  font-size: var(--font-xxl);
}
/* .project-description {
    color: var(--light-slate);
    font-size: 17px;
} */
.project-tech-list {
  display: flex;
  align-items: flex-end;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0px;
  margin: 20px 0px 0px;
  list-style: none;
}
.project-tech-list li {
  font-family: var(--font-mono);
  font-size: var(--font-xxs);
  line-height: 1.75;
}
.project-top .folder {
  color: var(--primary);
}
.project-top .project-links {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-right: -10px;
  color: var(--light-slate);
}
.project-top .folder svg {
  width: 40px;
  height: 40px;
}
.project-inner .project-description {
  color: var(--light-slate);
  font-size: 17px;
  padding: 0;
}

/* contact me start */
.contact-me {
  max-width: 600px;
  margin: 0px auto 100px;
  text-align: center;
}
.overline {
  display: block;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: var(--font-md);
  font-weight: 400;
}
.overline:after {
  display: none;
}
.title {
  font-size: clamp(40px, 5vw, 60px);
}

/* footer start */
.footer {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  min-height: 70px;
  padding: 15px;
  text-align: center;
}
.footer-icons {
  display: block;
  width: 100%;
  max-width: 270px;
  margin: 0px auto 10px;
  color: var(--light-slate);
}
.footer-icons ul {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.footer-icons ul li a {
  padding: 10px;
}
.footer-icons ul li svg {
  width: 20px;
  height: 20px;
}
.footer-text {
  text-align: center;
  color: var(--light-slate);
  font-family: var(--font-mono);
  font-size: var(--font-xxs);
  line-height: 1;
}
.github-stats {
  margin-top: 10px;
}
.github-stats > span {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0px 7px;
}
svg.feather {
  fill: none;
}
.github-stats svg {
  display: inline-block;
  margin-right: 5px;
  width: 14px;
  height: 14px;
}

.modal {
  display: none;
  position: fixed;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 10%);
  max-height: 520px;
  /* border: 1px solid var(--primary); */
  box-shadow: 0px 0px 40px var(--light-slate);
  padding: 20px;
  z-index: 8;
  max-width: 500px;
  border-radius: 10px;
  background-color: var(--light-navy);
}
.modal.show {
  display: block;
}
button.cancel {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  background-color: transparent;
  width: 29px;
  height: 29px;
  cursor: pointer;
}
button.cancel span {
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}
button.cancel span::before {
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  background-color: var(--primary);
  left: 13px;
}
button.cancel span::after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: var(--primary);
  top: 13px;
  left: 0;
}
.row input,
.row textarea {
  border: 1px solid var(--blue);
  background: transparent;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
  background-color: var(--dark-navy);
  color: var(--lightest-slate);
  font-family: var(--font-sans);
}
.row button {
  background-color: var(--blue);
  color: var(--dark-navy);
  padding: 10px;
  border: none;
}
.row button[type="submit"] {
  background-color: var(--dark-navy);
  color: var(--white);
  cursor: pointer;
  border-radius: 4px;
}
.row button[type="submit"]:hover {
  color: var(--dark-navy);
  background-color: var(--lightest-slate);
}

/* min width 768 means big device */
@media (min-width: 768px) {
  body {
    font-size: var(--font-lg);
  }
  .header {
    padding: 40px 50px;
  }
  .header.fixed {
    padding: 10px 50px;
  }
  nav.nav {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    position: relative;
    display: flex;
    transform: translateX(0);
    opacity: 1;
    position: relative;
    right: auto;
    top: auto;
    height: auto;
    max-width: initial;
    background-color: var(--navy);
    padding: 0;
    width: auto;
  }
  nav.nav a.resume-button {
    margin: 0 0 0 20px;
  }
  section {
    padding: 100px 0px;
  }
  .ham-button {
    display: none;
  }
  main {
    padding: 0px 150px;
  }
  .home {
    padding-bottom: 0;
  }
  .inner {
    display: grid;
    flex-direction: row;
  }
  .inner-work {
    display: flex;
    flex-direction: row;
  }
  .tab-list {
    flex-direction: column;
    position: relative;
    z-index: 3;
    width: max-content;
    padding: 0px;
    margin: 0px;
    list-style: none;
    overflow: visible;
    border-bottom: none;
    border-left: 2px solid var(--lightest-navy);
  }
  .tab-list button {
    justify-content: left;
  }
  .tab-list button.active {
    border-bottom: 0;
    border-left: 2px solid var(--primary);
    color: var(--primary);
    margin-left: -2px;
  }
  .project-content {
    grid-column: 7 / span 12;
  }
  .project-image {
    grid-column: 1 / span 7;
  }
  ul.project-list .project:nth-child(even) .project-image {
    grid-column: 8 / span 12;
  }
  ul.project-list .project:nth-child(even) .project-content {
    grid-column: 1 / span 8;
  }
  .project-image {
    opacity: 1;
  }
  .footer-icons {
    display: none;
  }
  .left-side,
  .right-side {
    display: block;
  }
}
