/* Sizes */
/* Spacing */
/* Sizes */
/* Radius */
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #fff;
  background-color: #182D41;
}

.hidden-lg {
  display: none;
}

/* section headings */
h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 8px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  margin: 2px 0;
  font-weight: 500;
}

h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin: 2px 0;
  font-weight: 500;
  color: #34618B;
}

p {
  margin: 8px 0;
}

hr {
  background-color: rgba(211, 211, 216, 0.5);
  margin: 2px 0;
  height: 1px;
  border: 0;
}

strong {
  font-weight: 600;
}

/* page frame */
.page {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
  color: #020202;
}

header.resume-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 32px 0 64px 0;
}

.name {
  font-size: 2.7rem;
  line-height: 4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.description {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: #807b94;
}

.role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 2px 0;
  font-weight: 600;
}

/* Columns */
.grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

section {
  padding-bottom: 64px;
}

main {
  padding: 32px 64px;
}

/* experience cards */
.exp {
  padding: 32px 0;
}
.exp:first-of-type {
  padding-top: 2px;
}
.exp h3 {
  color: #34618B;
}

.meta {
  font-size: 0.9rem;
  color: #807b94;
}

ul.bullets {
  padding-left: 18px;
  margin: 8px 0 0;
}

ul.bullets li {
  margin: 6px 0;
}

.divider {
  height: 32px;
}

/* right rail */
aside {
  background-color: #f8f8f8;
  padding: 64px;
}

.contact {
  padding: 0;
}
.contact li {
  list-style: none;
  margin: 16px 0 0 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: center;
}
.contact img {
  transform: scale(1.2);
}
.contact a {
  color: inherit;
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}
.contact .meta {
  font-size: 0.9rem;
  color: #807b94;
  padding-left: 32px;
  margin-left: 4px;
}

/* Chips */
.chipset {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip {
  background: var(--chip);
  border: 1px solid var(--line);
  padding: 2px 16px;
  border-radius: 9999px;
  background-color: rgba(52, 97, 139, 0.1);
}

.toolgrid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.toolgrid div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolgrid img {
  width: 40px;
  flex: 0 0 auto;
}

.skillbar {
  margin-bottom: 32px;
}
.skillbar .label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.skillbar .bar {
  background: #d3d3d8;
  border-radius: 999px;
  overflow: hidden;
  height: 10px;
}
.skillbar .bar .fill {
  background: #34618B;
  height: 100%;
  border-radius: 999px 0 0 999px;
}

/* languages as dots */
.languages {
  margin-top: 8px;
}
.languages .lang {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.languages .dots {
  display: inline-flex;
  gap: 16px;
}
.languages .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d3d3d8;
  display: inline-block;
}
.languages .dot.filled {
  background: #34618B;
}
.languages .dot.half {
  background: linear-gradient(to right, #34618B 50%, #d3d3d8 50%);
}

/* responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid main, .grid aside {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hidden-xs {
    display: none;
  }
  .hidden-lg {
    display: block;
  }
  .profile-pic {
    padding-bottom: 64px;
  }
}/*# sourceMappingURL=resume.css.map */