@font-face {
  font-family: "Helvetica";
  src: url("/Helvetica.woff2") format("woff2"), url("/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("/Helvetica-Bold.woff2") format("woff2"), url("/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("/Helvetica-Italic.woff2") format("woff2"), url("/Helvetica-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("/Helvetica-BoldItalic.woff2") format("woff2"), url("/Helvetica-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Helvetica", sans-serif;
  letter-spacing: calc(0.3px * 1.2);
  background-color: #ededed;
  display: flex;
  justify-content: center;
  transition: background-color 0.5s;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
}
body.resume {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  -webkit-touch-callout: default !important;
}
body.js-loading section {
  display: none !important;
  opacity: 0 !important;
  transition: none !important;
}
body.js-loading footer {
  display: none !important;
  opacity: 0 !important;
  transition: none !important;
}
body.no-transition,
body.no-transition * {
  transition: none !important;
}
body.preload {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: none;
  background-color: #ededed;
}
body.show-content {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}
#site-container {
  width: 50%;
}
body.resume #site-container {
  width: 90%;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #ededed;
  border-bottom: 1px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.5s, border-color 0.5s;
}
#downloadPDFButton,
#translateButton {
  position: fixed;
  top: 10px;
  height: 30px;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  background-color: #cccccc;
  color: #333333;
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.5s;
  user-select: none !important;
  align-items: center;
  justify-content: center;
}
#downloadPDFButton {
  right: 10px;
  display: flex;
}
#translateButton {
  left: 10px;
  display: flex;
}
.icon-shadow {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.75));
  margin: 0 5px 2px 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
}
#logo {
  height: 30px;
  opacity: 0;
  transition: opacity 0.5s;
}
#logo.logo-ready {
  opacity: 1;
}
nav {
  height: 30px;
  display: flex;
  background-color: #ffffff;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background-color 0.5s;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  transform: translateY(0.25px);
  font-size: 10px;
  font-weight: normal;
  cursor: pointer;
  text-transform: uppercase;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  user-select: none;
  color: #333333;
  transition: color 0.5s, border-color 0.5s;
}
body.resume .menu-item {
  font-weight: bold;
  letter-spacing: 10px;
  border-right: none;
}
@media screen and (hover: none) and (pointer: coarse) {
  .menu-item {
    transform: translateY(1.05px);
  }
}
.menu-item:last-child {
  border-right: none;
}
.menu-item.active {
  background-color: #ededed !important;
  color: #333333 !important;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
.menu-item.active:last-child {
  background-color: #ffffff !important;
  font-weight: normal;
}
body.resume .menu-item[data-target="sobre"] {
  pointer-events: none;
  cursor: default;
}
main {
  margin-top: 80px;
}
section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
  box-sizing: border-box;
  overflow: auto;
}
section.active {
  display: block;
  opacity: 1;
}
section > *:first-child {
  margin-top: 30px;
}
section > *:last-child {
  margin-bottom: 30px;
}
body.resume section > *:first-child {
  margin-top: 0;
}
body.resume section > *:last-child {
  margin-bottom: 30px;
}
body.resume .two-columns > *:first-child {
  margin-top: 0;
}
body.resume .two-columns > *:last-child {
  margin-bottom: 0;
}
body.resume.js-loading #sobre {
  display: block !important;
  opacity: 1 !important;
}
.manifest-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s, background-color 0.5s, color 0.5s;
  position: relative;
}
.manifest-wrapper.hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s;
}
.manifest-wrapper.hidden {
  display: none;
}
.manifest-box {
  position: absolute;
  left: calc(-50vw + 50%);
  width: 100vw;
  background-color: #ffffff;
  padding-top: 20px;
  box-sizing: border-box;
  transition: background-color 0.5s;
  z-index: 993;
}
.manifest-container {
  width: 50%;
  margin: 0 auto;
  box-sizing: border-box;
}
.manifest-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin: 0 20px 0 20px;
}
.manifest-label {
  font-size: calc(24px * 1.2 * 0.75);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: calc(5px * 1.2);
  color: #333333;
  white-space: nowrap;
  transition: color 0.5s;
}
.adjust-o {
  letter-spacing: 0;
}
.line-left,
.line-right {
  flex: 1;
  flex-grow: 1;
  height: 5px;
  background-color: #e6e6e6;
  transition: background-color 0.5s;
}
.manifest-list {
  list-style: none;
  padding: 0;
  margin: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}
.manifest-list li {
  display: flex;
  position: relative;
  padding: 10px 10px 10px 60px;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  background-color: #fceded;
  text-wrap: balance;
  transition: background-color 0.5s, color 0.5s;
  border-radius: 10px;
  align-items: center;
}
.manifest-divider {
  position: absolute;
  left: 49px;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #000000;
  content: "";
  display: block;
  transition: background-color 0.5s;
}
.manifest-list li::before {
  content: "⚑";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  font-size: 24px;
  color: red;
  transition: color 0.5s;
  margin: 2px 0 0 24px;
}
.manifest-list li:last-child {
  margin-bottom: 0;
}
h2 {
  font-size: calc(24px * 1.2);
  font-weight: bold;
  margin: 30px 30px 7px 30px !important;
  text-wrap: balance;
  color: #333333;
  transition: color 0.5s;
}
h2:has(+ p),
h2:has(+ div) {
  margin-bottom: 0 !important;
}
h2:has(+ h3 + .about-tech),
h2:has(+ .about-color),
h2:has(+ .about-services) {
  margin-bottom: 0 !important;
  font-size: calc(24px * 1.2 * 0.75);
}
body.resume .h2-resume {
  font-size: calc(24px * 1.2 * 0.75) !important;
  margin-top: 0 !important;
}
h2:has(+ h3 + .about-tech) {
  margin-bottom: 7px !important;
}
h2:has(+ picture),
h2:has(+ div iframe) {
  margin-bottom: 30px !important;
}
.adjust-dash {
  position: relative;
  top: -0.06em;
}
h3 {
  font-size: calc(10px * 1.2);
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: calc(0.45px * 1.2);
  text-transform: uppercase;
  margin: 0 30px 0 30px;
  text-wrap: balance;
  color: #333333;
  transition: color 0.5s;
}
body.resume .hr-resume {
  border: none;
  border-top: 1px solid currentColor;
  margin: 0.2em 30px 0.4em 30px;
}
h3:has(+ picture),
h3:has(+ div iframe) {
  margin-bottom: 30px !important;
}
section h3:last-child {
  margin-bottom: 30px;
}
p {
  font-size: calc(14px * 1.2);
  line-height: 1.5;
  margin: 30px 30px 30px 30px;
  text-wrap: balance;
  color: #333333;
  transition: color 0.5s;
}
body.resume .two-columns {
  column-count: 2;
  column-gap: 30px;
  padding-top: 30px;
  position: relative;
}
body.resume .two-columns::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #000000;
  transform: translateX(-50%);
}
body.resume .two-columns .end-divider-resume,
body.resume .checklist li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.no-break-block {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  position: relative;
}
.resume-stamp {
  position: absolute;
  bottom: 0;
  transform: rotate(var(--stamp-rotate, 0deg));
  height: 7em;
  width: auto;
  z-index: 992;
  mix-blend-mode: darken;
}
.resume-stamp.scheduled {
  right: calc(30px);
  --stamp-rotate: -15deg;
}
.resume-stamp.ongoing {
  right: calc(30px + 1em);
  --stamp-rotate: 10deg;
}
.resume-stamp.completed-1 {
  right: calc(30px + 0.75em);
  --stamp-rotate: -30deg;
}
.resume-stamp.completed-2 {
  right: calc(30px + 0.5em);
  --stamp-rotate: 5deg;
}
.p-resume-underline {
  display: inline;
  box-shadow: inset 0 -3px 0 0 #cccccc;
  padding-bottom: 2px;
}
.resume-print {
  display: none;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.center {
  text-align: center;
}
a {
  color: #333333;
  text-decoration: none;
  transition: color 0.5s;
}
.lazy {
  width: 100%;
  display: block;
  transition: opacity 0.5s;
  opacity: 0;
  height: auto;
}
.lazy.loaded {
  opacity: 1;
}
.image-pair-wrapper {
  width: 100%;
}
.image-pair-wrapper + .image-pair-wrapper {
  margin-top: 10px;
}
.image-pair {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.image-pair picture {
  flex: 0 0 calc((100% - 10px) / 2);
  display: block;
  position: relative;
}
.image-pair img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .image-pair {
    flex-direction: column;
    gap: 10px;
  }
  .image-pair picture {
    flex: 0 0 auto;
    width: 100%;
  }
}
.image-pair:has(picture:only-child) picture {
  flex: 0 0 100%;
}
.image-grids-wrapper {
  display: flex;
  gap: 10px;
}
.image-grid-left,
.image-grid-right {
  display: grid;
  grid-auto-rows: min-content;
  gap: 10px;
  flex: 1 1 calc(50% - 5px);
  box-sizing: border-box;
}
.image-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.5s;
}
.image-label-top,
.image-label-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ededed;
  font-size: calc(10px * 1.2);
  font-weight: bold;
  white-space: nowrap;
  color: #333333;
  pointer-events: none;
  transition: background-color 0.5s, color 0.5s, opacity 0.5s;
  opacity: 0;
}
.image-label-top {
  top: 0;
  padding: 0 10px 3px 10px;
  border-radius: 0 0 10px 10px;
  z-index: 996;
}
.image-label-bottom {
  bottom: 0;
  padding: 3px 10px 0 10px;
  border-radius: 10px 10px 0 0;
  z-index: 995;
}
.image-label-top.label-show,
.image-label-bottom.label-show {
  opacity: 1;
}
.image-label-top span {
  position: relative;
  top: -3.5px;
}
.image-label-top span.italic {
  top: 0;
}
.image-label-bottom span {
  position: relative;
  bottom: -3px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait), only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: landscape) {
  .image-label-bottom {
    padding: 2px 10px 0 10px;
  }
  .image-label-bottom span {
    bottom: -4px;
  }
}
.small-screen-corner {
  border-radius: 10px;
}
.picture-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 100px;
}
.placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  color: #000000;
  background-color: #d9d9d9;
  animation: fadePulse 1s infinite alternate;
  z-index: 994;
  pointer-events: none;
  text-align: center;
  text-wrap: balance;
  transition: background-color 0.5s, color 0.5s;
}
.placeholder-text.rounded {
  border-radius: 10px;
  overflow: hidden;
}
@keyframes fadePulse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
iframe {
  opacity: 0;
  transition: opacity 0.5s, background-color 0.5s;
  background-color: #d9d9d9;
}
iframe.visible {
  opacity: 1;
}
figcaption.caption {
  margin: -10px auto 0 auto;
  font-size: calc(12px * 1.2);
  color: #333333;
  text-align: center;
  line-height: 0.75em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  transition: color 0.5s;
}
figcaption.caption svg {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  fill: currentColor;
}
figcaption.caption .caption-group {
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
  flex-wrap: wrap;
  white-space: normal;
}
figcaption.caption .caption-bar {
  font-size: calc(20px * 1.2) !important;
  transform: translateY(calc(-1.5px * 1.2));
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}
.contact-left {
  width: 50%;
  box-sizing: border-box;
  border-right: 1px solid #000000;
  text-align: center;
  transition: border-color 0.5s;
}
.contact-right {
  width: 50%;
  box-sizing: border-box;
  text-align: left;
}
.contact-right .logo-slogan {
  display: block;
  margin: 30px 30px 0 30px;
  width: 50%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s;
}
.logo-slogan.slogan-ready {
  opacity: 1;
}
.contact-left p,
.contact-right p {
  font-size: 14px !important;
}
.qr-code {
  width: 50%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s;
}
.qr-code.qr-ready {
  opacity: 1;
}
.contact-container + .end-divider {
  margin-top: 40px;
}
.adjust-at {
  position: relative;
  top: 1px;
}
.external-link,
.resume-external-link {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.external-link {
  width: 15px;
  height: 15px;
  transform: translateY(2.7px);
}
.resume-external-link {
  width: 13px;
  height: 13px;
  transform: translateY(2.3px);
}
.resume-whatsapp {
  width: 13px;
  height: 9px;
  fill: currentColor;
  transform: translateY(0.25px);
}
.no-break-link {
  white-space: nowrap;
}
.about-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px 40px;
  max-width: 860px;
  margin: 30px auto;
  padding: 0 30px;
  box-sizing: border-box;
}
body.resume .about-services {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-box {
  position: relative;
  background-color: #d9d9d9;
  border-radius: 10px;
  padding-top: 38px;
  box-sizing: border-box;
  transition: background-color 0.5s;
}
.service-box h3 {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #999999;
  color: #ededed;
  font-size: calc(10px * 1.2);
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin: 0;
  box-sizing: border-box;
  transition: background-color 0.5s, color 0.5s;
}
.service-box p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 15px;
  text-align: center;
  color: #333333;
  transition: color 0.5s;
}
@media (max-width: 768px) {
  body {
    letter-spacing: 0.3px;
  }
  #site-container {
    width: 100% !important;
  }
  body.resume #site-container {
    width: 100% !important;
  }
  .manifest-container {
    width: 100%;
  }
  .manifest-label {
    letter-spacing: 5px;
  }
  h2 {
    font-size: 24px;
  }
  h2:has(+ h3 + .about-tech),
  h2:has(+ .about-color),
  h2:has(+ .about-services),
  .manifest-label {
    font-size: calc(24px * 0.75);
  }
  body.resume .h2-resume {
    font-size: calc(24px * 0.75) !important;
  }
  h3 {
    font-size: 10px;
    letter-spacing: 0.45px;
  }
  body.resume .hr-resume {
    margin: 0.4em 30px 0.4em 30px !important;
  }
  p {
    font-size: 14px;
  }
  body.resume .two-columns {
    column-count: 1;
  }
  body.resume .two-columns::before {
    content: none;
  }
  .resume-stamp {
    height: 6em;
  }
  .small-screen-margin {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .image-label-bottom {
    padding: 2px 10px 0 10px;
  }
  .image-label-bottom span {
    bottom: -4px;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
  .contact-left {
    border-right: none;
  }
  .dark-mode .contact-left {
    border-right: none !important;
  }
  .contact-right {
    text-align: center;
  }
  .contact-right .logo-slogan {
    display: none;
  }
  .contact-container + .end-divider {
    margin-top: 0;
  }
  .resume-external-link {
    width: 10.8px;
    height: 10.8px;
    transform: translateY(2px);
  }
  .resume-whatsapp {
    width: 10px;
    height: 7px;
    transform: translateY(-0.1px);
  }
  figcaption.caption {
    font-size: 12px !important;
  }
  figcaption.caption .caption-bar {
    font-size: 20px !important;
    transform: translateY(-1.5px);
  }
  .check-text {
    font-size: 14px !important;
  }
  .checklist li {
    gap: 20px !important;
    margin-bottom: 15px !important;
  }
  .check-icon {
    width: 20px !important;
    height: 20px !important;
  }
  .check-icon .check-path {
    transform: translateX(-0.25px);
  }
  .about-services,
  .about-tech,
  .manifest-list {
    grid-template-columns: 1fr;
  }
  #rights {
    display: none;
  }
  .footer-container {
    width: 100% !important;
  }
  body.resume .footer-container {
    width: 100% !important;
  }
}
.checklist {
  list-style: none;
  margin: 0 30px 30px 30px;
  padding: 0;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: calc(20px * 1.2);
  margin-bottom: calc(15px * 1.2);
}
.check-icon {
  flex-shrink: 0;
  width: calc(20px * 1.2);
  height: calc(20px * 1.2);
  align-self: center;
}
.check-text {
  flex: 1;
  line-height: 1.5;
  text-wrap: balance;
  font-size: calc(14px * 1.2);
  color: #333333;
  transition: color 0.5s;
}
.check-icon circle,
.check-icon .check-path {
  transition: stroke 0.5s;
}
.check-icon circle {
  stroke: #cccccc;
}
.check-icon .check-path {
  stroke: #333333;
  transform: translateX(calc(-0.25px * 1.2));
}
.end-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.end-divider:last-child {
  margin-bottom: 30px;
}
.end-divider.spaced {
  margin-top: 30px;
}
.end-divider::before,
.end-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #808080;
  margin: 0 15px;
  transition: border-color 0.5s;
}
.end-divider span {
  font-size: 24px;
  color: #808080;
  transition: color 0.5s;
  display: inline-block;
  animation: spin 20s linear infinite;
  will-change: transform;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body.resume .end-divider-resume {
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body.resume .end-divider-resume::before,
body.resume .end-divider-resume::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  border-bottom: 1px solid #808080;
  transform: translateY(-50%);
}
body.resume .end-divider-resume::before {
  left: 0;
}
body.resume .end-divider-resume::after {
  right: 0;
}
body.resume .end-divider-resume span {
  font-size: 24px;
  color: #808080;
  display: block;
  column-span: all;
  opacity: 1;
  position: relative;
  z-index: 991;
}
.end-divider-resume:has(+ .h2-resume),
.end-divider-resume:has(+ .resume-print > h2.h2-resume),
.end-divider-resume:has(+ .resume-digital > h2.h2-resume),
.end-divider-resume:has(+ .no-break-block > h2.h2-resume) {
  margin-bottom: 30px !important;
}
.about-tech {
  list-style: none;
  padding-left: 0;
  margin: 30px 30px 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  max-width: 860px;
  gap: 15px 40px;
}
.about-tech li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 10px 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  text-wrap: balance;
  color: #333333;
  border-bottom: 1px solid #b3b3b3;
  box-sizing: border-box;
  transition: color 0.5s, border-color 0.5s;
}
.about-tech li:first-child {
  border-top: 1px solid #b3b3b3;
  padding-top: 15px;
  transition: border-color 0.5s;
}
.about-tech li.top-column {
  border-top: 1px solid #b3b3b3;
  padding-top: 15px;
  transition: border-color 0.5s;
}
.about-tech li::before {
  content: attr(data-icon);
  font-size: 1.2em;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.75));
}
.about-tech li > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.code-group {
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  line-height: 1.3;
}
.about-tech li code {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: bold;
  background-color: #d9d9d9;
  color: #000000;
  padding: 2px 6px;
  border-radius: 5px;
  white-space: nowrap;
  display: inline;
  vertical-align: middle;
  transition: background-color 0.5s;
}
.about-tech li span {
  margin-top: 10px;
}
.about-color {
  position: relative;
  background-color: #d9d9d9;
  margin: 30px 30px 30px 30px;
  padding: 30px 30px;
  border-radius: 10px;
  box-sizing: border-box;
  transition: background-color 0.5s;
}
.about-color::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #a6a6a6;
  border-radius: 5px;
  z-index: 997;
  transition: border-color 0.5s;
}
.about-color-symbol {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  color: #808080;
  transition: color 0.5s;
}
.about-color-symbol.top {
  top: 1px;
}
.about-color p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  color: #333333;
  transition: color 0.5s;
}
footer {
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transition: background-color 0.5s;
}
body.resume footer {
  background-color: #ffffff;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.footer-container {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
  box-sizing: border-box;
  justify-content: space-between;
}
body.resume .footer-container {
  width: 90%;
  justify-content: center;
  padding: 0;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
#logoFooter {
  height: 20px;
  opacity: 0;
  transition: opacity 0.5s;
}
#logoFooter.logo-footer-ready {
  opacity: 1;
}
body.resume.js-loading footer {
  display: flex !important;
  opacity: 1 !important;
}
body.resume #logoFooter {
  opacity: 1 !important;
}
#pipe {
  position: relative;
  top: -0.8px;
}
.copyright {
  font-size: 12px;
  transform: translateY(0.175px);
  color: #ffffff;
  transition: color 0.5s;
}
body.resume .copyright {
  color: #333333;
}
.footer-top {
  width: 50px;
  height: 50px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s;
}
.footer-top .arrow,
.footer-top .label {
  font-size: 10px;
  color: #ffffff;
  transition: color 0.5s;
}
body.resume .footer-top {
  display: none;
}
.dark-mode {
  background-color: #000000 !important;
}
.dark-mode header {
  background-color: #000000;
  border-bottom: 1px solid #666666;
}
.dark-mode nav {
  background-color: #333333;
}
.dark-mode .menu-item {
  color: #ffffff;
  border-bottom: 1px solid #666666;
  border-right: 1px solid #666666;
}
.dark-mode .menu-item:last-child {
  border-right: none;
}
.dark-mode .menu-item.active {
  background-color: #000000 !important;
  color: #ffffff !important;
  font-weight: bold;
  border-bottom: 1px solid #666666;
}
.dark-mode .menu-item.active:last-child {
  background-color: #333333 !important;
  font-weight: normal;
}
.dark-mode .manifest-box {
  background-color: #333333;
}
.dark-mode .manifest-label,
.dark-mode .manifest-list li {
  color: #ffffff;
}
.dark-mode .manifest-list li {
  background-color: #301717;
}
.dark-mode .manifest-divider {
  background-color: #ffffff;
}
.dark-mode .manifest-list li::before {
  color: red;
}
.dark-mode .line-left,
.dark-mode .line-right {
  background-color: #595959;
}
.dark-mode .image-item.dark-mode-swap img {
  filter: invert(100%) brightness(120%);
}
.dark-mode .image-label-top,
.dark-mode .image-label-bottom {
  background-color: #000000;
  color: #ffffff;
}
.dark-mode .contact-left {
  border-right: 1px solid #ffffff;
}
.dark-mode .service-box {
  background-color: #404040;
}
.dark-mode .service-box h3 {
  color: #000000;
}
.dark-mode .service-box p {
  color: #ffffff;
}
.dark-mode figcaption.caption {
  color: #ffffff;
}
.dark-mode figcaption.caption svg {
  fill: currentColor;
}
.dark-mode h2,
.dark-mode h3,
.dark-mode p,
.dark-mode a {
  color: #ffffff;
}
.dark-mode .placeholder-text {
  background-color: #404040;
  color: #ffffff;
}
.dark-mode iframe {
  background-color: #404040;
}
.dark-mode .check-text {
  color: #ffffff;
}
.dark-mode .check-icon circle {
  stroke: #666666;
}
.dark-mode .check-icon .check-path {
  stroke: #ffffff;
}
.dark-mode .about-tech li {
  color: #ffffff !important;
}
.dark-mode .about-tech li code {
  background-color: #404040;
  color: #ffffff;
}
.dark-mode .about-tech li {
  border-bottom: 1px solid #595959;
}
.dark-mode .about-tech li:first-child {
  border-top: 1px solid #595959;
}
.dark-mode .about-tech li.top-column {
  border-top: 1px solid #595959;
}
.dark-mode .about-color {
  background-color: #404040;
}
.dark-mode .about-color::before {
  border-color: #737373;
}
.dark-mode .about-color p {
  color: #ffffff;
}
.dark-mode .about-color-symbol {
  color: #b3b3b3;
}
.dark-mode footer,
.dark-mode .footer-top {
  background-color: #ededed;
}
.dark-mode .copyright {
  color: #333333;
}
.dark-mode .footer-top .arrow,
.dark-mode .footer-top .label {
  color: #333333;
}
@media print {
  body {
    background-color: #ffffff !important;
  }
  body.resume header {
    background-color: #ffffff !important;
    border-bottom: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  nav {
    position: absolute !important;
    top: 50px !important;
    left: 0 !important;
    right: 0 !important;
  }
  main {
    margin-top: 80px !important;
  }
  #downloadPDFButton,
  #translateButton {
    display: none !important;
  }
  body.resume .menu-item {
    border-top: 2px solid #333333 !important;
    border-bottom: 2px solid #333333 !important;
  }
  .no-break-space {
    display: none !important;
  }
  .resume-external-link {
    display: none !important;
  }
  .resume-digital {
    display: none !important;
  }
  .resume-print {
    display: block !important;
  }
  body.resume footer {
    border-top: 2px solid #333333 !important;
  }
  .no-break-block,
  body.resume .checklist li {
    break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
    page-break-inside: avoid !important;
  }
  .page-break-after {
    break-after: always !important;
    page-break-after: always !important;
  }
}
