@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kumar+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap");
@font-face {
  font-family: "Share Tech Mono";
  src: url("/assets/fonts/ShareTechMono-Regular.ttf");
}
@font-face {
  font-family: "Exo 2 Regular";
  src: url("/assets/fonts/Exo2-Regular.ttf");
}
@font-face {
  font-family: "Lobster Regular";
  src: url("/assets/fonts/Lobster-Regular.ttf");
}
@font-face {
  font-family: "Russo One";
  src: url("/assets/fonts/RussoOne-Regular.ttf");
}
@font-face {
  font-family: "Skulls and Crossbones";
  src: url("/assets/fonts/Skullsandcrossbones-RppKM.ttf");
}
@font-face {
  font-family: "Pirata One Regular";
  src: url("/assets/fonts/PirataOne-Regular.ttf");
}
h2, h3, h4, a {
  font-family: "Share Tech Mono", Courier, monospace;
  font-weight: 500;
}

#menuToggle {
  display: none;
}
#menuToggle:checked ~ .navigation-wrapper {
  top: 0;
  transition: top 0.5s ease-in-out 0s;
}
#menuToggle:checked ~ .menu-icon::before {
  transform: rotate(135deg) translateX(8px);
  animation: 0.5s linear bar1;
  background-color: var(--color-primary);
}
#menuToggle:checked ~ .menu-icon::after {
  transform: rotate(-135deg) translateX(8px);
  animation: 0.5s linear bar2;
  background-color: var(--color-primary);
}

.menu-icon {
  width: 1.5rem;
  height: 1rem;
  position: fixed;
  padding: 0.5rem;
  z-index: 101;
  top: 1.3em;
  right: 1em;
  cursor: pointer;
  mix-blend-mode: exclusion;
  transform: scale(1.25);
  transition: all 0.3s ease-in-out;
}
.menu-icon::before, .menu-icon::after {
  background-color: var(--color-primary);
  position: absolute;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
}
.menu-icon::before {
  content: "";
  width: 1.5rem;
  top: 0.5rem;
  left: 0.5rem;
}
.menu-icon::after {
  content: "";
  bottom: 0.5rem;
  width: 1.5rem;
  left: 0.5rem;
}

.navigation-wrapper {
  position: fixed;
  overflow-y: auto;
  z-index: 100;
  top: -400%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  transition: top 0.5s ease-in-out 0s;
}
.navigation-wrapper .main-navigation {
  position: absolute;
  z-index: 1;
  top: 0%;
  left: 0;
  width: 100%;
}
.navigation-wrapper .main-navigation ul {
  list-style: none;
  text-align: right;
  width: 100%;
  padding: 0;
  margin: 100px 0 0px 0;
}
.navigation-wrapper .main-navigation ul li {
  margin: 2.5rem 0;
  padding: 0.25rem 20px;
}
.navigation-wrapper .main-navigation ul li ul {
  position: static;
  margin: 0;
  width: 100%;
}
.navigation-wrapper .main-navigation ul li ul li {
  padding: 0;
  margin: 0;
}
.navigation-wrapper .main-navigation ul li ul li a {
  font-family: "Share Tech Mono", Courier, monospace;
  padding: 0 1rem 0 0;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--color-primary);
  text-shadow: 0 0 8px var(--color-primary);
  background-color: black;
}
.navigation-wrapper .main-navigation ul li ul li a.current-subnavigation {
  background-color: white;
  color: black;
  text-shadow: 0 0 8px black;
}
.navigation-wrapper .main-navigation ul li ul li a.current-subnavigation::before {
  content: "> ";
  font-size: 1.5rem;
  line-height: 2rem;
  display: inline;
  color: black;
  cursor: pointer;
}
.navigation-wrapper .main-navigation ul li ul li a.current-subnavigation:hover {
  cursor: default;
}
.navigation-wrapper .main-navigation ul li ul li a.current-subnavigation:hover::before {
  cursor: default;
}
.navigation-wrapper .main-navigation ul li ul li a:hover {
  color: white;
  text-shadow: 0 0 8px white;
  padding-right: 0.5rem;
  cursor: pointer;
}
.navigation-wrapper .main-navigation ul li ul li a:hover::before {
  content: "> ";
  font-size: 1.5rem;
  line-height: 2rem;
  display: inline;
  color: white;
  cursor: pointer;
}
.navigation-wrapper .main-navigation ul li ul li a::before {
  content: none;
}
.navigation-wrapper .main-navigation ul li a {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: "Russo One";
  font-size: 2.5rem;
  font-weight: 500;
  padding: 1rem 0;
  color: black;
  line-height: 3.5rem;
  text-shadow: 0 0 10px black;
  transition: all 0.3s ease;
}
.navigation-wrapper .main-navigation ul li a.current {
  background-color: black;
  color: white;
  text-shadow: 0 0 10px white;
  transition: all 0.3s ease;
  cursor: default;
  pointer-events: none;
}
.navigation-wrapper .main-navigation ul li a.current::before {
  color: var(--color-primary);
}
.navigation-wrapper .main-navigation ul li a::before {
  position: relative;
  margin-left: 0.5rem;
  display: block;
  font-family: "Share Tech Mono", Courier, monospace;
  font-size: 0.6rem;
  line-height: 0;
  color: white;
  content: attr(data-before);
  text-shadow: none;
  text-transform: uppercase;
}
.navigation-wrapper .main-navigation ul li a:hover {
  background-color: black;
  color: white;
  text-shadow: 0 0 10px white;
  transition: all 0.3s ease;
}
.navigation-wrapper .main-navigation ul li a:hover::before {
  line-height: 0;
  color: var(--color-primary);
  cursor: default;
  text-shadow: 0 0 10px black;
  transition: color 0.3s linear;
}

@keyframes bar1 {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  25%, 60% {
    transform: rotate(45deg) translateX(-2px);
    height: 0.6rem;
    opacity: 0.5;
  }
  85% {
    transform: rotate(90deg) translateX(0px);
    height: 0.6rem;
    opacity: 0.5;
  }
  100% {
    transform: rotate(135deg) translateX(8px);
    opacity: 1;
  }
}
@keyframes bar2 {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  25%, 60% {
    transform: rotate(-45deg) translateX(-2px);
    height: 0.6rem;
  }
  85% {
    transform: rotate(-90deg) translateX(0px);
    height: 0.6rem;
  }
  100% {
    transform: rotate(-135deg) translateX(8px);
  }
}
@media only screen and (min-width: 768px) {
  .menu-icon {
    transform: scale(2);
  }
}
#tableOfContent {
  opacity: 1;
  transition: all 0.5s;
  position: fixed;
  z-index: 5;
  bottom: var(--spacing-0);
  left: var(--spacing-0);
  width: 100%;
  background-color: transparent;
  padding: var(--spacing-0) var(--spacing-0) calc(var(--spacing-1) * 19) var(--spacing-0);
  margin: var(--spacing-0);
}
#tableOfContent p {
  display: none;
}
#tableOfContent ul {
  position: absolute;
  left: -100vw;
  bottom: 0;
  opacity: 0;
  background-color: var(--color-secondary);
  width: 100%;
  list-style: none;
  padding: var(--spacing-8) 0 calc(var(--spacing-10) * 2.5) 0;
  max-height: 50vh;
  overflow: auto;
  text-align: center;
  margin: var(--spacing-0) auto;
  transition: all 0.5s ease-in;
}
#tableOfContent ul li a {
  display: block;
  padding: var(--spacing-2) var(--spacing-4);
  display: inline-block;
  height: 100%;
  width: calc(100% - var(--spacing-8));
}
#tableOfContent::before {
  content: "";
  position: fixed;
  z-index: 1;
  bottom: var(--spacing-6);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  width: calc(var(--spacing-10) + var(--spacing-2));
  height: calc(var(--spacing-10) + var(--spacing-2));
  left: var(--spacing-0);
  right: var(--spacing-0);
  margin: var(--spacing-0) auto;
  border-radius: 50%;
  width: calc(var(--spacing-10) + var(--spacing-2));
  height: calc(var(--spacing-10) + var(--spacing-2));
}
#tableOfContent::after {
  content: "";
  position: fixed;
  z-index: 2;
  bottom: var(--spacing-8);
  background-color: var(--color-secondary);
  background-color: black;
  color: var(--color-secondary);
  left: var(--spacing-0);
  right: var(--spacing-0);
  margin: var(--spacing-0) auto;
  border-radius: 50%;
  background-image: none;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url(/assets/svg/plus-icon.svg);
  mask-image: url(/assets/svg/plus-icon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: all 0.5s;
}
#tableOfContent:hover {
  cursor: pointer;
}
#tableOfContent:hover ul {
  left: var(--spacing-0);
  opacity: 1;
}
#tableOfContent:hover::before, #tableOfContent:hover::after {
  opacity: 0;
  transition: all 0.5s;
}
#tableOfContent:hover::after {
  transform: rotate(45deg);
  transition: all 0.5s;
}
#tableOfContent:hover + .close-toc {
  opacity: 1;
  z-index: 5;
  bottom: 24px;
  transition: all 0.5s;
}
#tableOfContent:hover + .close-toc::before {
  bottom: 32px;
  transform: rotate(45deg);
  transition: all 0.5s;
}

.close-toc {
  content: "";
  position: fixed;
  z-index: 1;
  bottom: var(--spacing-6);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  width: calc(var(--spacing-10) + var(--spacing-2));
  height: calc(var(--spacing-10) + var(--spacing-2));
  left: var(--spacing-0);
  right: var(--spacing-0);
  margin: var(--spacing-0) auto;
  border-radius: 50%;
  width: calc(var(--spacing-10) + var(--spacing-2));
  height: calc(var(--spacing-10) + var(--spacing-2));
  z-index: -1;
  opacity: 0;
  bottom: 24px;
  transition: all 0.5s;
}
.close-toc:hover {
  cursor: pointer;
}
.close-toc::before {
  content: "";
  position: fixed;
  z-index: 2;
  bottom: var(--spacing-8);
  background-color: var(--color-secondary);
  background-color: black;
  color: var(--color-secondary);
  left: var(--spacing-0);
  right: var(--spacing-0);
  margin: var(--spacing-0) auto;
  border-radius: 50%;
  background-image: none;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url(/assets/svg/plus-icon.svg);
  mask-image: url(/assets/svg/plus-icon.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  display: inline-block;
  bottom: 32px;
  transform: rotate(0deg);
  transition: all 0.5s;
}

@media only screen and (min-width: 768px) {
  #tableOfContent::before, #tableOfContent::after {
    transform: scale(1.25);
  }
}
.cover h1 {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  padding: 0 16px;
  margin: var(--spacing-0) auto var(--spacing-0) auto;
  height: 50vh;
}
.cover::after {
  position: relative;
  padding-top: calc(var(--spacing-10) * 2.5);
  content: "";
  display: block;
  width: 112px;
  height: var(--spacing-2);
  margin: var(--spacing-0) auto 30vh auto;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  background-color: white;
  background-position: center top;
  background-repeat: no-repeat;
  mask-image: url(/assets/svg/scroll-down.svg);
  -webkit-mask-image: url(/assets/svg/scroll-down.svg);
}

:root {
  --accent-color: #ffb80090;
}

@font-face {
  font-family: "Palette Mosaic";
  src: url("/assets/fonts/palette-mosaic.eot");
  src: url("/assets/fonts/palette-mosaic.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/palette-mosaic.woff2") format("woff2"), url("/assets/fonts/palette-mosaic.woff") format("woff"), url("/assets/fonts/palette-mosaic.svg#palette-mosaic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Ink Free";
  src: url("/assets/fonts/ink-free.eot");
  src: url("/assets/fonts/ink-free.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/ink-free.woff2") format("woff2"), url("/assets/fonts/ink-free.woff") format("woff"), url("/assets/fonts/ink-free.svg#ink-free") format("svg");
  font-weight: normal;
  font-style: normal;
}
.no-one-knows {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  background-image: url(/assets/images/info/comic-bg.png);
  background-size: cover;
  background-attachment: fixed;
}
.no-one-knows main::before {
  content: "";
  position: absolute;
  opacity: 0.5;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 100vh;
  left: 0;
  background-image: url(/assets/images/info/comic-bg.png);
  background-size: cover;
  background-attachment: fixed;
}
.no-one-knows #main::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 70px;
  z-index: 2;
  width: 48px;
  height: 109px;
  background-image: url(/assets/images/info/publisher-logo.png);
  background-repeat: no-repeat;
}
.no-one-knows #main::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  width: 191px;
  height: 97px;
  background-image: url(/assets/images/info/barcode-comic.png);
  background-size: 75%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.no-one-knows .cover {
  background-color: transparent;
}
.no-one-knows .cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--cover-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.no-one-knows .cover h1 {
  z-index: 1;
  position: relative;
}
.no-one-knows h1 {
  justify-content: start;
  font-family: "Palette Mosaic", Arial, sans-serif;
  font-size: 76px;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 184, 0, 0.4392156863);
}
.no-one-knows h1 span {
  display: block;
}
.no-one-knows h1 span.elipsis {
  line-height: 0;
  justify-self: center;
}
.no-one-knows h2 {
  font-family: "Palette Mosaic", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.25;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-primary);
  margin: 0;
}
.no-one-knows h2 span {
  display: block;
}
.no-one-knows .sprite,
.no-one-knows .decorative {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
}
.no-one-knows section {
  position: relative;
  padding-top: 0;
  height: 30vh;
  width: 100%;
}
.no-one-knows section h2 {
  position: absolute;
  z-index: 20;
}
.no-one-knows section .balloon {
  opacity: 0;
  z-index: 2;
  font-family: "Ink Free", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  width: 45vw;
  height: 50px;
  left: 4vw;
  top: 16vh;
  transition: inherit;
}
.no-one-knows section .balloon a {
  display: inline-block;
  margin-top: 4px;
}
.no-one-knows section .balloon::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  width: 110px;
  height: 15px;
  background-image: url(/assets/svg/line-elliot.svg);
  background-repeat: no-repeat;
  background-position: bottom;
}
.no-one-knows section .balloon a {
  font-family: "Palette Mosaic", Arial, Helvetica, sans-serif;
  background-color: transparent;
}
.no-one-knows #profile {
  height: 21vh;
  transition: all 1s;
}
.no-one-knows #profile h2 {
  transition: inherit;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  letter-spacing: 0;
}
.no-one-knows #profile .balloon {
  top: 12vh;
}
.no-one-knows #profile .elliot {
  z-index: 1;
  width: 50vw;
  height: 33vh;
  left: 50vw;
  transform: translateX(-25vw);
  background-image: url(/assets/images/info/elliot.png);
  background-size: contain;
  background-position-y: center;
}
.no-one-knows #profile .mr-robot {
  opacity: 0;
  height: 27vh;
  width: 50vw;
  top: 3vh;
  left: 50vw;
  transform: translateX(-25vw);
  background-image: url(/assets/images/info/mr-robot.png);
  background-size: contain;
  filter: grayscale(1);
  transition: left 1s, opacity 1s, transform 1s;
}
.no-one-knows #profile .face-mask {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  width: 200px;
  height: 200px;
  background-image: url(/assets/images/info/mask.png);
  background-size: 75%;
  filter: grayscale(1);
  transition: left 1s, opacity 1s;
}
.no-one-knows #profile:hover h2 {
  color: var(--accent-color);
  font-size: 40px;
  bottom: 65%;
  letter-spacing: 10px;
}
.no-one-knows #profile:hover .balloon {
  transition: inherit;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  color: white;
}
.no-one-knows #profile:hover .mr-robot {
  left: 50vw;
  transform: translateX(-40vw);
  opacity: 1;
}
.no-one-knows #profile:hover .face-mask {
  opacity: 1;
  left: 66vw;
}
.no-one-knows #laboral-experience {
  background-image: url(/assets/svg/frame-navigator.svg);
  background-position: center top;
  background-size: contain;
  height: 74vw;
  z-index: 1;
}
.no-one-knows #laboral-experience h2 {
  right: 10%;
  top: 20%;
  transition: all 1s;
}
.no-one-knows #laboral-experience .balloon {
  top: auto;
  bottom: 10%;
  transition: all 1s;
}
.no-one-knows #laboral-experience .balloon::before {
  content: none;
}
.no-one-knows #laboral-experience .balloon::after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  width: 110px;
  height: 15px;
  background-image: url(/assets/svg/line-elliot.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  top: auto;
  left: 70px;
}
.no-one-knows #laboral-experience .sparrow {
  bottom: 6%;
  left: 0;
  z-index: 1;
  width: 51vw;
  height: 34vh;
  background-image: url(/assets/images/info/sparrow.png);
  background-size: cover;
  transition: all 1s;
}
.no-one-knows #laboral-experience:hover h2 {
  right: 50%;
  transform: translateX(50%);
  top: 60%;
  font-size: 40px;
  color: var(--accent-color);
  letter-spacing: 10px;
}
.no-one-knows #laboral-experience:hover .balloon {
  opacity: 1;
  bottom: 58%;
  transform: translateY(50%);
  left: 7%;
}
.no-one-knows #laboral-experience:hover .sparrow {
  left: 42vw;
}
.no-one-knows #skills {
  background-image: url(/assets/svg/frame-hitman.svg);
  background-position: center 16px;
  background-repeat: no-repeat;
  background-size: 130%;
  height: 50vw;
  bottom: 0;
}
.no-one-knows #skills::after {
  content: "";
  display: block;
  width: 100vw;
  z-index: 1;
  height: 20px;
  background-image: url(/assets/svg/frame-hitman.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 150%;
  position: absolute;
  bottom: -17px;
}
.no-one-knows #skills h2 {
  right: 70%;
  bottom: 5%;
  transition: all 1s;
}
.no-one-knows #skills .balloon {
  transition: all 1s;
}
.no-one-knows #skills .balloon::before {
  transform: rotate(180deg) translate(30px, -10px);
}
.no-one-knows #skills .hitman-a {
  width: 62vw;
  height: 100%;
  z-index: 1;
  right: 0;
  bottom: 0;
  filter: grayscale(1);
  background-image: url(/assets/images/info/hitman.png);
  background-position: 50px top;
  background-size: contain;
  transition: all 1s;
}
.no-one-knows #skills:hover h2 {
  font-size: 40px;
  letter-spacing: 10px;
  color: var(--accent-color);
  right: 0;
  bottom: 0;
}
.no-one-knows #skills:hover .balloon {
  opacity: 1;
  left: 25%;
  top: 20%;
}
.no-one-knows #skills:hover .hitman-a {
  right: 45%;
  background-position-x: 0;
}
.no-one-knows #footer {
  font-family: "Ink Free", Arial, sans-serif;
  color: #ffffff;
  margin-bottom: 0;
  padding: 60px 0 24px 0;
}
.no-one-knows #tableOfContent,
.no-one-knows .back-to-top,
.no-one-knows hr {
  display: none;
}

@font-face {
  font-family: "Mr Robot";
  src: url("/assets/fonts/mr-robot.eot");
  src: url("/assets/fonts/mr-robot.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/mr-robot.woff2") format("woff2"), url("/assets/fonts/mr-robot.woff") format("woff"), url("/assets/fonts/mr-robot.svg#mr-robot") format("svg");
  font-weight: normal;
  font-style: normal;
}
.the-server #profile {
  position: relative;
  width: 100vw;
  height: 2000vh;
  padding: 0;
  margin: 0;
  background-image: url(/assets/images/info/server/profile/bg-01.jpg);
  background-attachment: fixed;
  background-size: cover;
}
.the-server #profile p {
  padding: 0;
  margin: 0;
}
.the-server #profile [data-sp=hello-friend] {
  position: relative;
}
.the-server #profile .view {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  text-transform: uppercase;
  text-align: center;
  line-height: 72px;
}
.the-server #profile .view[data-id=hello-friend-first] {
  position: relative;
  display: block;
  top: 0;
  margin: 0;
  background: transparent;
}
.the-server #profile .view[data-id=hello-friend-first] [data-sp] {
  top: calc(50% - 100px);
}
.the-server #profile .view[data-id=hello-friend-second] {
  top: 100vh;
  background-image: url(/assets/images/info/server/profile/bg-02.jpg);
}
.the-server #profile .view[data-id=hello-friend-second] [data-sp] {
  top: calc(60% - 100px);
  font-size: 120px;
  line-height: 0.75;
}
.the-server #profile .view[data-id*=game] {
  background-image: url(/assets/images/info/server/profile/bg-02.jpg);
  font-size: 120px;
  line-height: 90px;
}
.the-server #profile .view[data-id=game-first] {
  top: calc(200vh + 92px);
  background-image: url(/assets/images/info/server/profile/bg-03.jpg);
  z-index: 1;
}
.the-server #profile .view[data-id=game-first] [data-sp] {
  top: 50%;
  font-size: 120px;
}
.the-server #profile .view[data-id=game-second] {
  top: 300vh;
  font-size: 120px;
}
.the-server #profile .view[data-id=game-second] [data-sp=maybe] {
  top: calc(70% - 30px);
}
.the-server #profile .view[data-id=game-third] {
  top: 400vh;
  font-size: 100px;
  line-height: 100px;
}
.the-server #profile .view[data-id=game-third] [data-sp=give-you] {
  font-size: 120px;
  line-height: 90px;
}
.the-server #profile .view[data-id=game-fourth] {
  top: 2100vh;
  font-size: 100px;
  line-height: 100px;
}
.the-server #profile .view[data-id=game-fourth] [data-sp] {
  top: 50%;
}
.the-server #profile .view[data-id=my-name] {
  top: 500vh;
  background-image: url(/assets/images/info/server/profile/bg-02.jpg);
}
.the-server #profile .view[data-id=my-name] [data-sp=my-name-is] {
  z-index: 2;
  height: auto;
  width: auto;
  left: 40px;
  font-size: 48px;
  text-align: center;
  color: #ffc600;
  top: calc(50% - 56px);
}
.the-server #profile .view[data-id=my-name] [data-sp=victor-zamudio] {
  z-index: 2;
  height: auto;
  font-size: 120px;
  line-height: 90px;
  top: 50%;
  text-align: left;
  left: 40px;
  width: auto;
}
.the-server #profile .view[data-id=im-uxe] {
  top: 600vh;
  font-size: 100px;
  line-height: 96px;
  background-image: url(/assets/images/info/server/profile/bg-02.jpg);
}
.the-server #profile .view[data-id=im-uxe] [data-sp=im-a] {
  font-size: 48px;
  text-align: left;
  color: #ffc600;
  top: calc(50% - 136px);
  width: 50px;
  height: auto;
  line-height: 40px;
  left: calc(50% - 150px);
}
.the-server #profile .view[data-id=im-uxe] [data-sp=uxe] {
  font-size: 120px;
  height: auto;
}
.the-server #profile .view[data-id=im-uxe] abbr {
  display: block;
}
.the-server #profile .view[data-id=at-thomson-reuters] {
  top: 700vh;
  font-size: 100px;
  line-height: 96px;
  background-image: url(/assets/images/info/server/profile/bg-02.jpg);
}
.the-server #profile .view[data-id=at-thomson-reuters] [data-sp=at] {
  width: auto;
  height: auto;
  font-size: 48px;
  text-align: left;
  top: calc(50% - 70px);
  left: calc(50% - 138px);
}
.the-server #profile .view[data-id=at-thomson-reuters] a {
  display: inline;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 80px;
  width: 280px;
  top: 50%;
  left: calc(50% - 140px);
  text-align: center;
  height: auto;
  background-color: transparent;
}
.the-server #profile .view[data-id=at-thomson-reuters-since] {
  top: 800vh;
  background-image: url(/assets/images/info/server/profile/bg-02.jpg);
}
.the-server #profile .view[data-id=at-thomson-reuters-since] [data-sp=since] {
  width: auto;
  height: auto;
  font-size: 48px;
  color: #ffc600;
  top: calc(50% - 92px);
  left: calc(50% - 158px);
}
.the-server #profile .view[data-id=at-thomson-reuters-since] [data-sp=september] {
  top: calc(50% - 40px);
}
.the-server #profile .view[data-id=at-thomson-reuters-since] [data-sp=september] [data-sp="2022"] {
  font-size: 150px;
  top: 96px;
  left: calc(50% - 164px);
  height: auto;
  width: auto;
  text-align: left;
}
.the-server #profile .view[data-id=at-thomson-reuters-since] [data-sp=september] [data-sp=remainig] {
  font-size: 36px;
  color: #ffc600;
  top: calc(50% + 130px);
}
.the-server #profile .view[data-id=born-and-raised] {
  top: 900vh;
  background-image: url(/assets/images/info/server/profile/bg-04.jpg);
}
.the-server #profile .view[data-id=born-and-raised] [data-sp] {
  width: auto;
  height: auto;
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=born] {
  font-size: 76px;
  left: 20px;
  top: 30%;
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=and] {
  font-size: 36px;
  color: #ffc600;
  left: 146px;
  top: calc(25% + 46px);
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=raised] {
  font-size: 76px;
  left: 20px;
  top: calc(30% + 56px);
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=in] {
  font-size: 36px;
  color: #ffc600;
  left: 184px;
  top: calc(25% + 102px);
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=mexico] {
  font-size: 72px;
  font-family: "Mr Robot", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  left: auto;
  right: 20px;
  top: calc(40% + 90px);
  background: rgb(0, 171, 105);
  background: linear-gradient(90deg, rgb(0, 171, 105) 0%, rgb(0, 171, 105) 35%, rgb(255, 255, 255) 35%, rgb(255, 255, 255) 60%, rgb(215, 0, 96) 60%, rgb(215, 0, 96) 100%);
  background-clip: text;
  color: transparent;
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=my] {
  top: auto;
  font-size: 36px;
  left: auto;
  bottom: 140px;
  right: 224px;
  color: #ffc600;
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=beloved] {
  font-size: 72px;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 150px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgb(215, 0, 96) 30%, rgb(215, 0, 96) 85%, rgb(255, 255, 255) 85%, rgb(255, 255, 255) 100%);
  background-clip: text;
  color: transparent;
}
.the-server #profile .view[data-id=born-and-raised] [data-sp=country] {
  font-size: 72px;
  left: auto;
  right: 20px;
  top: auto;
  bottom: 90px;
}
.the-server #profile .view[data-id=around-the-web] {
  top: 1000vh;
  background-image: url(/assets/images/info/server/profile/bg-05.jpg);
}
.the-server #profile .view[data-id=around-the-web] [data-sp=been] {
  font-size: 36px;
  top: calc(30% + 30px);
  left: 20px;
  color: #ffc600;
  width: 80px;
  height: auto;
  line-height: 35px;
  text-align: right;
}
.the-server #profile .view[data-id=around-the-web] [data-sp=around] {
  width: auto;
  left: auto;
  top: calc(30% + 30px);
  left: 104px;
}
.the-server #profile .view[data-id=around-the-web] [data-sp=the] {
  top: calc(50% + 30px);
  font-size: 36px;
  color: #ffc600;
  height: auto;
  width: auto;
  left: auto;
  transform: translateY(-50px);
}
.the-server #profile .view[data-id=around-the-web] [data-sp=web] {
  top: calc(50% + 30px);
}
.the-server #profile .view[data-id=around-the-web] [data-sp=since] {
  font-size: 36px;
  color: #ffc600;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  bottom: 150px;
  right: 240px;
}
.the-server #profile .view[data-id=around-the-web] [data-sp=june-2006] {
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  bottom: 100px;
  right: 20px;
}
.the-server #profile .view[data-id=around-the-web] [data-sp=n-years] {
  font-size: 28px;
  color: #ffc600;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  bottom: 52px;
  right: 20px;
}
.the-server #profile .view[data-id=working-with-brands] {
  top: 1100vh;
  background-image: url(/assets/images/info/server/profile/bg-06.jpg);
}
.the-server #profile .view[data-id=working-with-brands] [data-sp] {
  height: auto;
  width: auto;
  text-shadow: -7px 14px 4px black;
}
.the-server #profile .view[data-id=working-with-brands] [data-sp=and] {
  top: 35%;
  left: calc(50% - 50px);
  color: #ffc600;
  font-size: 36px;
  text-transform: uppercase;
}
.the-server #profile .view[data-id=working-with-brands] [data-sp=working] {
  top: calc(35% + 54px);
  left: calc(50% - 140px);
}
.the-server #profile .view[data-id=working-with-brands] [data-sp=with] {
  top: calc(35% + 100px);
  left: calc(50% - 124px);
  color: #ffc600;
  font-size: 36px;
  text-transform: uppercase;
}
.the-server #profile .view[data-id=working-with-brands] [data-sp=brands] {
  top: calc(35% + 150px);
  left: calc(50% - 120px);
}
.the-server #profile .view[data-id=working-with-brands] [data-sp=like] {
  top: calc(35% + 220px);
  left: calc(50% + 20px);
}
.the-server #profile .view[data-id=warner-media] {
  top: 1200vh;
  background-image: url(/assets/images/info/server/profile/bg-07.jpg);
}
.the-server #profile .view[data-id=warner-media] [data-sp] {
  font-size: 120px;
  width: auto;
  height: auto;
  top: 45%;
  left: calc(50% - 156px);
}
.the-server #profile .view[data-id=warner-media] [data-sp=media] {
  top: calc(45% + 86px);
  left: calc(50% - 116px);
  color: #939498;
}
.the-server #profile .view[data-id=jnj] {
  top: 1300vh;
  background-image: url(/assets/images/info/server/profile/bg-08.jpg);
}
.the-server #profile .view[data-id=jnj] [data-sp] {
  top: calc(55% - 52px);
  font-size: 180px;
  text-shadow: 20px -7px 16px black;
}
.the-server #profile .view[data-id=google] {
  top: 1400vh;
  background-image: url(/assets/images/info/server/profile/bg-09.jpg);
}
.the-server #profile .view[data-id=google] [data-sp] {
  font-size: 120px;
  line-height: 1.2;
  width: auto;
  height: auto;
  top: calc(50% - 16px);
  left: calc(50% - 140px);
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(72, 137, 244) 0%, rgb(72, 137, 244) 16%, rgb(235, 73, 59) 16%, rgb(235, 73, 59) 33%, rgb(251, 190, 13) 33%, rgb(251, 190, 13) 51%, rgb(72, 137, 244) 51%, rgb(72, 137, 244) 68%, rgb(58, 171, 88) 68%, rgb(58, 171, 88) 84%, rgb(235, 73, 59) 84%, rgb(235, 73, 59) 100%);
  background-clip: text;
  color: transparent;
}
.the-server #profile .view[data-id=ibm] {
  top: 1500vh;
  background-image: url(/assets/images/info/server/profile/bg-10.jpg);
}
.the-server #profile .view[data-id=ibm] [data-sp] {
  font-size: 200px;
  line-height: 1.2;
  width: auto;
  height: auto;
  top: 38%;
  left: calc(50% - 118px);
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 10%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 20%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 35%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0) 40%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 45%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255) 60%, rgb(255, 255, 255) 65%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0) 90%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 95%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%, rgb(255, 255, 255) 100%, rgb(255, 255, 255) 105%);
  background-clip: text;
  color: transparent;
}
.the-server #profile .view[data-id=microsoft] {
  top: 1600vh;
  background-image: url(/assets/images/info/server/profile/bg-11.jpg);
}
.the-server #profile .view[data-id=microsoft] [data-sp] {
  width: auto;
  height: auto;
  left: calc(50% - 86px);
}
.the-server #profile .view[data-id=microsoft] [data-sp=and] {
  top: calc(50% - 124px);
  font-size: 50px;
  color: #05a6f0;
  left: calc(50% - 120px);
}
.the-server #profile .view[data-id=microsoft] [data-sp=micro] {
  background: rgb(243, 83, 37);
  background: linear-gradient(90deg, rgb(243, 83, 37) 0%, rgb(243, 83, 37) 37%, rgb(129, 188, 6) 37%, rgb(129, 188, 6) 100%);
  background-clip: text;
  color: transparent;
}
.the-server #profile .view[data-id=microsoft] [data-sp=soft] {
  font-size: 112px;
  line-height: 1;
  top: calc(50% + 4px);
  left: calc(50% - 84px);
  background: #ffba08;
  background: linear-gradient(90deg, rgb(255, 186, 8) 51%, rgb(5, 166, 240) 50%);
  background-clip: text;
  color: transparent;
}
.the-server #profile .view[data-id=among-others] {
  top: 1700vh;
  background-image: url(/assets/images/info/server/profile/bg-12.jpg);
}
.the-server #profile .view[data-id=among-others] [data-sp] {
  text-shadow: 20px 20x 20px black;
}
.the-server #profile .view[data-id=among-others] [data-sp=among] {
  color: #ffc600;
  font-size: 36px;
  width: auto;
  left: 0;
  top: calc(35% - 10px);
  transform: rotate(-90deg);
}
.the-server #profile .view[data-id=among-others] [data-sp=others] {
  font-size: 120px;
  top: calc(35% + 0px);
}
.the-server #profile .view[data-id=among-others] [data-sp=last] {
  color: #ffc600;
  font-size: 36px;
  display: inline-block;
  width: auto;
  top: calc(35% + 96px);
  left: calc(50% - 45px);
}
.the-server #profile .view[data-id=among-others] [data-sp=n-years] {
  font-size: 120px;
  top: calc(35% + 160px);
}
.the-server #profile .view[data-id=among-others] [data-sp=th] {
  width: auto;
  font-size: 30px;
  top: calc(30% + 160px);
  left: calc(50% + 46px);
}
.the-server #profile .view[data-id=among-others] [data-sp=years] {
  font-size: 120px;
  top: calc(50% + 150px);
}
.the-server #profile .view[data-id=remember] {
  top: 1800vh;
  font-size: 100px;
  background-image: url(/assets/images/info/server/profile/bg-12.jpg);
}
.the-server #profile .view[data-id=remember] [data-sp=have-to],
.the-server #profile .view[data-id=remember] [data-sp=that] {
  color: #ffc600;
}
.the-server #profile .view[data-id=remember] [data-sp=have-to] {
  font-size: 48px;
  top: calc(50% - 115px);
}
.the-server #profile .view[data-id=remember] [data-sp=that] {
  top: calc(50% + 30px);
}
.the-server #profile .view[data-id=my-sheet] {
  top: 1900vh;
  background-image: url(/assets/images/info/server/profile/bg-12.jpg);
}
.the-server #profile .view[data-id=my-sheet] [data-sp=this-is] {
  color: #ffc600;
  left: 60px;
  font-size: 36px;
  text-align: right;
  line-height: 0.9;
  width: 74px;
}
.the-server #profile .view[data-id=my-sheet] [data-sp=my] {
  font-size: 150px;
  left: auto;
  width: auto;
  right: 100px;
}
.the-server #profile .view[data-id=my-sheet] [data-sp=sheet] {
  background-color: transparent;
  width: auto;
  left: calc(50% - 168px);
  top: calc(50% + 50px);
  font-size: 130px;
  font-weight: 700;
  letter-spacing: -8px;
}
.the-server #profile .view [data-sp] {
  z-index: 1;
  position: absolute;
  padding: 0;
  width: 100%;
  height: auto;
  top: calc(50% - 52px);
  left: 0;
}

@font-face {
  font-family: "Book Antiqua";
  src: url("/assets/fonts/book-antiqua.eot");
  src: url("/assets/fonts/book-antiqua.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/book-antiqua.woff2") format("woff2"), url("/assets/fonts/book-antiqua.woff") format("woff"), url("/assets/fonts/book-antiqua.svg#book-antiqua") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Hatten";
  src: url("/assets/fonts/hatten.eot");
  src: url("/assets/fonts/hatten.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/hatten.woff2") format("woff2"), url("/assets/fonts/hatten.woff") format("woff"), url("/assets/fonts/hatten.svg#hatten") format("svg");
  font-weight: normal;
  font-style: normal;
}
#academic-formation {
  position: relative;
  top: 0;
  width: 100%;
  height: calc(100vh - var(--spacing-18));
  height: calc(300vh + 96px);
  padding: 0;
  background-image: url(/assets/images/info/server/academic-formation/bg-mobile.jpg);
  background-size: cover;
  background-attachment: fixed;
}
#academic-formation::before {
  content: "";
  position: absolute;
  top: auto;
  display: block;
  width: 100%;
  height: calc(300vh + 96px);
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  color: black;
}
#academic-formation #bachelor-degree,
#academic-formation #newsletter-college,
#academic-formation #self-taught {
  position: sticky;
  z-index: 0;
  top: 0px;
  margin: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  color: black;
}
#academic-formation #bachelor-degree #uam {
  position: absolute;
  top: 90px;
  left: 20px;
  z-index: 1;
  font-family: "Saira Extra Condensed", Impact, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 22px;
  text-transform: uppercase;
}
#academic-formation #bachelor-degree #xochimilco-unit {
  position: absolute;
  top: 49%;
  left: 20px;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 1;
  display: block;
  font-family: "Book antiqua", "Times New Roman", Times, serif;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 30px;
  text-align: center;
}
#academic-formation #bachelor-degree #graphic-communication-designer {
  position: absolute;
  bottom: 151px;
  left: 20px;
  z-index: 1;
  display: inline-grid;
  width: calc(66.6% - 30px);
  font-family: "Book antiqua", "Times New Roman", Times, serif;
  font-size: 25px;
  line-height: 1;
  text-align: right;
}
#academic-formation #bachelor-degree #specialty-editorial-design {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 151px;
  width: calc(33.3% - 20px);
  font-family: "Book antiqua", "Times New Roman", Times, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.2;
  text-align: left;
}
#academic-formation #bachelor-degree .photo {
  top: 81px;
  z-index: 1;
  display: block;
  width: 100%;
  height: 160px;
  background-image: url(/assets/images/info/server/academic-formation/bg-mobile.jpg);
  background-position: center -246px;
  background-size: 116% auto;
}
#academic-formation #newsletter-college {
  background-color: white;
}
#academic-formation #newsletter-college .grid {
  grid-template-columns: 1fr 1fr;
  top: 145px;
  bottom: 60px;
  background-image: none;
  border: none;
}
#academic-formation #newsletter-college .grid .col-2 {
  position: relative;
  border: none;
}
#academic-formation #newsletter-college .grid .col-2 .photo {
  position: absolute;
  top: auto;
  bottom: 180px;
  width: 100%;
  height: 80px;
  background-image: url(/assets/images/info/server/academic-formation/bg-mobile.jpg);
  background-position: -20px calc(40% - 40px);
  background-repeat: no-repeat;
}
#academic-formation #newsletter-college .grid .col-2 .photo-2 {
  background-position: calc(100% + 20px) calc(40% - 40px);
}
#academic-formation #newsletter-college.newsletter-college {
  position: absolute;
  top: 20px;
  left: 20px;
}
#academic-formation #newsletter-college-tagline, #academic-formation #newsletter-college-title, #academic-formation #newsletter-college-endtag, #academic-formation #newsletter-college-text, #academic-formation #newsletter-college-list {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}
#academic-formation #newsletter-college-tagline {
  top: 176px;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  background-color: #333;
  color: white;
}
#academic-formation #newsletter-college-title {
  top: 220px;
  font-family: "Kumar One", serif;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  color: #333;
}
#academic-formation #newsletter-college-endtag {
  top: 305px;
  text-transform: uppercase;
  color: #333;
}
#academic-formation #newsletter-college-text {
  top: auto;
  bottom: 180px;
  left: 20px;
  right: 20px;
  font-family: "Barlow Condensed", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  line-height: 20px;
}
#academic-formation #newsletter-college-list {
  top: calc(50% + 150px);
  top: auto;
  bottom: 60px;
  left: 20px;
  right: 20px;
  font-family: "Barlow Condensed", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  line-height: 20px;
  font-size: 18px;
}
#academic-formation #newsletter-college-list .col-2 > span {
  display: block;
}
#academic-formation #newsletter-college-list .col-2 > span::before {
  content: "•";
  margin: 0 4px;
}
#academic-formation #self-taught {
  position: relative;
  background: url(/assets/images/info/server/academic-formation/bg-mobile.jpg), linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.2) 74%, rgba(0, 0, 0, 0.2) 75%, rgb(0, 0, 0) 100%);
  background-blend-mode: multiply;
  background-size: cover;
  height: calc(100vh + 24px);
}
#academic-formation #self-taught .text {
  position: absolute;
  top: 150px;
  left: 20px;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  font-family: "Bebas Neue", Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
#academic-formation #self-taught .text-1 {
  top: 150px;
  left: 10px;
}
#academic-formation #self-taught .text-2 {
  top: 168px;
  left: 10px;
}
#academic-formation #self-taught .text-3 {
  top: 182px;
  font-size: 72px;
  width: 141px;
  line-height: 72px;
  right: 210px;
  left: auto;
  color: rgba(255, 216, 0, 0.7);
}
#academic-formation #self-taught .text-4 {
  top: 190px;
  font-size: 32px;
  width: 112px;
  line-height: 26px;
  right: 98px;
  left: auto;
  color: rgba(255, 216, 0, 0.7);
}
#academic-formation #self-taught .text-5 {
  top: 244px;
  font-size: 32px;
  width: 112px;
  line-height: 26px;
  right: 237px;
  left: auto;
  color: rgba(255, 216, 0, 0.7);
}
#academic-formation #self-taught .text-6 {
  left: auto;
  right: 0;
  top: 217px;
  font-size: 72px;
  font-family: "Silkscreen", Courier, monospace;
  font-style: normal;
  color: white !important;
  letter-spacing: -12px;
  text-shadow: 0 0 12px #ffffff;
}
#academic-formation #self-taught .text-7 {
  top: 320px;
  left: 10px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 14px;
  color: #ffd800;
  text-transform: none;
  width: 150px;
  text-shadow: 2px -2px black;
}
#academic-formation #self-taught .text-8 {
  top: auto;
  bottom: 200px;
  right: 20px;
  font-size: 48px;
  line-height: 32px;
  text-align: center;
  text-shadow: 0 0 12px #ffffff;
}
#academic-formation #self-taught .text-8 strong {
  position: relative;
  z-index: -1;
  display: block;
  color: rgba(255, 216, 0, 0.5);
  text-shadow: 0 0 8px rgba(255, 186, 0, 0.6);
}
#academic-formation #self-taught .text-9 {
  top: auto;
  left: auto;
  bottom: 145px;
  right: 132px;
  font-size: 24px;
}
#academic-formation #self-taught .text-10 {
  top: auto;
  left: auto;
  bottom: 104px;
  right: 20px;
  font-size: 60px;
  line-height: 48px;
  text-align: right;
  color: rgba(255, 216, 0, 0.5);
  text-shadow: 0 0 8px rgba(255, 186, 0, 0.6);
}
#academic-formation #self-taught .text-11 {
  top: auto;
  left: auto;
  bottom: 60px;
  right: 20px;
  font-size: 60px;
  line-height: 48px;
  text-align: right;
  color: rgba(255, 216, 0, 0.8);
}
#academic-formation #self-taught a {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  right: 16px;
  background-color: transparent;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
#academic-formation #self-taught a:hover {
  color: #7cff00;
  text-decoration: underline;
}
#academic-formation .decorative {
  position: absolute;
  bottom: 0px;
  padding: 0;
  right: 0px;
  left: 0px;
  top: 0px;
  margin: 0;
  padding: 0;
  z-index: 0;
  display: block;
}
#academic-formation .grid {
  position: absolute;
  display: grid;
  left: 20px;
  bottom: 153px;
  top: 72px;
  width: calc(100% - 40px);
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 100%;
  gap: 10px;
  border: solid 1px rgba(153, 51, 255, 0.2);
  border-top: none;
  background-image: url(/assets/images/info/server/academic-formation/guias-base.png);
  background-repeat: repeat-x;
  background-position: 0 bottom;
}
#academic-formation .grid .col-2,
#academic-formation .grid .col-3 {
  border: solid 1px #9933ff;
}

@font-face {
  font-family: "Consola";
  src: url("/assets/fonts/consola.eot");
  src: url("/assets/fonts/consola.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/consola.woff2") format("woff2"), url("/assets/fonts/consola.woff") format("woff"), url("/assets/fonts/consola.svg#consola") format("svg");
  font-weight: normal;
  font-style: normal;
}
.the-server #courses {
  position: relative;
  width: 100vw;
  height: 5300vh;
  padding: 0;
  margin: 0;
  font-family: "Consola", "Courier New", Courier, monospace;
  background-image: url(/assets/images/info/server/courses/background01.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.the-server #courses .course-presentation {
  font-size: 16px;
  margin: 80px 20px 30px 20px;
  color: #95a6c7;
  position: sticky;
  z-index: 2;
  top: 140px;
  backdrop-filter: blur(4px);
}
.the-server #courses .course {
  position: relative;
  left: 0;
  width: calc(100% - 40px);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-weight: 400;
  font-style: normal;
  padding: 20px;
  margin-top: 100px;
}
.the-server #courses .course::before {
  position: absolute;
  top: calc(45% - 130px);
  content: attr(data-console);
  font-size: 14px;
  font-weight: 700;
  background: rgb(255, 108, 0);
  background: linear-gradient(90deg, rgb(255, 108, 0) 0%, rgb(255, 108, 0) 18%, rgb(66, 81, 93) 18%, rgb(66, 81, 93) 100%);
  background-clip: text;
  color: transparent;
}
.the-server #courses .course h3 {
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(45% - 30px);
  width: calc(100% - 40px);
  height: 48px;
  border: dotted 4px purple;
  border-style: double dashed;
  border-left-width: 2px;
  border-right-width: 2px;
  margin-top: 0;
}
.the-server #courses .course h3 > span {
  display: flex;
  font-family: "Consola", "Courier New", Courier, monospace;
  color: white;
  font-size: 18px;
  margin: 0;
  padding: 0 8px;
  border: none;
  border-top: 2px dashed purple;
  border: none;
}
.the-server #courses .course p {
  margin: 0;
}
.the-server #courses .course p.course-count {
  position: absolute;
  top: calc(45% - 112px);
  font-size: 16px;
  text-align: right;
  margin-right: 20px;
  color: #bababa;
  line-height: 24px;
}
.the-server #courses .course p.course-count a,
.the-server #courses .course p.course-count span {
  font-size: 20px;
}
.the-server #courses .course p.course-count::before, .the-server #courses .course p.course-count::after {
  font-size: 14px;
  line-height: 1;
  content: attr(data-path);
  white-space: break-spaces;
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  color: rgb(53, 148, 255);
}
.the-server #courses .course p.course-count::after {
  content: attr(data-prompt);
  transform: translateY(-60px);
  color: #ffdc00;
}
.the-server #courses .course p.course-count a {
  font-size: 24px;
  line-height: 24px;
  background-color: transparent;
}
.the-server #courses .course p.course-details {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 140px;
  padding: 0;
  margin-top: 0;
}
.the-server #courses .course p strong,
.the-server #courses .course p em {
  display: inline-block;
  font-size: 15px;
  line-height: 0.8;
}
.the-server #courses .course p strong {
  display: inline-flex;
  color: #7dbaff;
  width: 11em;
}
.the-server #courses .course p strong::before {
  content: "-rw-r--r--";
  width: 4em;
  flex-grow: 1;
  color: white;
  display: inline;
}
.the-server #courses .course p strong.where::before {
  content: "drwxr-xr-x";
}
.the-server #courses .course p strong.academy::before {
  content: "r-rw------";
}
.the-server #courses .course p strong.author::before {
  content: "lrwxrw-w-x";
}
.the-server #courses .course p em {
  color: #ffdc00;
  font-style: normal;
}
.the-server #courses .course p .certificate {
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 6px;
  padding-top: 4px;
  border-top: 2px dashed purple;
}
.the-server #courses .course p .certificate a {
  font-weight: 700;
  background-color: transparent;
}

@font-face {
  font-family: "Mr Robot";
  src: url("/assets/fonts/mr-robot.eot");
  src: url("/assets/fonts/mr-robot.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/mr-robot.woff2") format("woff2"), url("/assets/fonts/mr-robot.woff") format("woff"), url("/assets/fonts/mr-robot.svg#mr-robot") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Consola";
  src: url("/assets/fonts/consola.eot");
  src: url("/assets/fonts/consola.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/consola.woff2") format("woff2"), url("/assets/fonts/consola.woff") format("woff"), url("/assets/fonts/consola.svg#consola") format("svg");
  font-weight: normal;
  font-style: normal;
}
.the-server {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin: 0;
  color: white;
  background-image: url(/assets/images/info/server/server-cover-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.the-server .cover {
  background-color: transparent;
}
.the-server .cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--cover-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.the-server .cover h1 {
  z-index: 1;
  position: relative;
}
.the-server .cover h1 {
  font-family: "Mr Robot", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 72px;
  text-transform: uppercase;
  color: #c80000;
}
.the-server #tableOfContent .text {
  display: none;
}
.the-server #tableOfContent:hover {
  width: 100%;
  height: 100%;
  padding: 0;
}
.the-server #tableOfContent:hover ul {
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  display: flex;
  padding: 0;
  background-color: transparent;
}
.the-server #tableOfContent:hover ul li {
  width: 25%;
  height: 100vh;
}
.the-server #tableOfContent:hover ul li a {
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.the-server #tableOfContent:hover ul li a[href="#profile"] {
  background-image: url("/assets/images/info/server/server-toc-01-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#profile"]:hover {
  background-image: url("/assets/images/info/server/server-toc-01-hover-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#professional-interest"] {
  background-image: url("/assets/images/info/server/server-toc-02-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#professional-interest"]:hover {
  background-image: url("/assets/images/info/server/server-toc-02-hover-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#academic-formation"] {
  background-image: url("/assets/images/info/server/server-toc-03-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#academic-formation"]:hover {
  background-image: url("/assets/images/info/server/server-toc-03-hover-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#courses"] {
  background-image: url("/assets/images/info/server/server-toc-04-bg.jpg");
}
.the-server #tableOfContent:hover ul li a[href="#courses"]:hover {
  background-image: url("/assets/images/info/server/server-toc-04-hover-bg.jpg");
}
.the-server #tableOfContent:hover ul li a .prefix-text {
  font-family: "Mr Robot", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 48px;
}
.the-server #tableOfContent:hover ul li a:hover, .the-server #tableOfContent:hover ul li a.active {
  color: white;
  filter: grayscale(0);
}
.the-server #tableOfContent:hover + .close-toc {
  z-index: 1000;
  bottom: 75vh;
  background-color: black;
}
.the-server #tableOfContent:hover + .close-toc::before {
  bottom: calc(75vh + 4px);
  z-index: 1001;
  width: 40px;
  height: 40px;
  background-image: url("/assets/images/info/server/server-toc-close-icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  mask-image: none;
}
.the-server #tableOfContent::before {
  color: transparent;
  background-color: transparent;
  background-image: url(/assets/images/info/server/server-toc-icon.svg);
}
.the-server #tableOfContent::after {
  color: transparent;
  background-color: transparent;
}
.the-server h2 {
  font-family: "Mr Robot", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 34px;
  text-align: center;
  line-height: 1;
  color: #c80000;
  margin-top: 0;
  position: sticky;
  z-index: 2;
  top: 72px;
  margin: 0;
}
.the-server h2::before, .the-server h2::after {
  font-family: "Consola", "Courier New", Courier, monospace;
  font-size: 36px;
  font-weight: 400;
  color: #758086;
}
.the-server h2::before {
  content: attr(data-section);
}
.the-server h2::after {
  content: ".html";
}
.the-server .back-to-top {
  display: none;
}
.the-server #footer {
  background-color: rgba(0, 0, 0, 0.75);
}

@font-face {
  font-family: "Hooverville";
  src: url("/assets/fonts/hooverville.eot");
  src: url("/assets/fonts/hooverville.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/hooverville.woff2") format("woff2"), url("/assets/fonts/hooverville.woff") format("woff"), url("/assets/fonts/hooverville.svg#hooverville") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Ardagh";
  src: url("/assets/fonts/ardagh.eot");
  src: url("/assets/fonts/ardagh.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/ardagh.woff2") format("woff2"), url("/assets/fonts/ardagh.woff") format("woff"), url("/assets/fonts/ardagh.svg#pirata_oneregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.the-navigator {
  font-family: "Ardagh", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  background-color: #e0e0ce;
  color: #181812;
  mix-blend-mode: darken;
  background-image: url(/assets/images/info/navigator/sea.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-attachment: fixed;
}
.the-navigator .cover:after {
  background-color: #181812;
}
.the-navigator #tableOfContent {
  padding-bottom: 50px;
}
.the-navigator #tableOfContent:hover {
  height: 100vh;
  transition: all 0.5s;
}
.the-navigator #tableOfContent:hover ul {
  transform: scale(1);
}
.the-navigator #tableOfContent:hover::after {
  transition: all 0.5s;
  transform: rotate(45deg) translate(5px, 4px);
}
.the-navigator #tableOfContent:hover + .close-toc {
  z-index: 5;
}
.the-navigator #tableOfContent:hover + .close-toc::before {
  transform: rotate(45deg) translate(5px, 4px);
  transition: all 0.5s;
}
.the-navigator #tableOfContent ul {
  transform: scale(0.001);
  background-color: #e0e0ce;
  overflow: hidden;
  padding-bottom: 132px;
  padding-top: 12px;
  bottom: 80px;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  border: double 6px var(--color-secondary);
}
.the-navigator #tableOfContent ul li {
  padding-bottom: 0;
  background-image: url(/assets/svg/toc-navigator-separator.svg);
  background-repeat: no-repeat;
  background-position: center 0;
}
.the-navigator #tableOfContent ul li a {
  padding-top: 0;
  padding-bottom: 0;
  color: var(--color-secondary);
}
.the-navigator #tableOfContent ul li a .prefix-text {
  display: inline-block;
  transform: translateY(8px);
  font-size: 60px;
}
.the-navigator #tableOfContent ul li a:hover {
  color: var(--color-primary);
}
.the-navigator #tableOfContent::before {
  background-color: transparent;
}
.the-navigator #tableOfContent::after {
  -webkit-mask-image: none;
  mask-image: none;
  width: 46px;
  height: 46px;
  background-color: transparent;
  background-image: url(/assets/svg/rudder-icon.svg);
  transform: rotate(0deg) translateY(7px);
  transition: all 0.5s;
}
.the-navigator #tableOfContent + .close-toc {
  z-index: 0;
  bottom: 24px;
  background-color: transparent;
}
.the-navigator #tableOfContent + .close-toc::before {
  bottom: 32px;
  -webkit-mask-image: none;
  mask-image: none;
  width: 46px;
  height: 46px;
  background-color: transparent;
  background-image: url(/assets/svg/rudder-icon.svg);
  transform: rotate(0deg) translateY(7px);
  transition: all 0.5s;
}
.the-navigator h1 {
  font-family: "Hooverville", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 500;
}
.the-navigator h2, .the-navigator .navigation-links {
  display: none;
}
.the-navigator h3 {
  font-family: "Ardagh", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: none;
  line-height: 1.2;
  margin: 48px 0 0 0;
  color: #1a1a1a;
}
.the-navigator section {
  padding-top: var(--spacing-25);
}
.the-navigator section hr {
  display: none;
}
.the-navigator section .pirate-head {
  display: block;
  float: left;
  width: 90px;
  height: 130px;
  border-radius: 50%;
}
.the-navigator section .pirate-head,
.the-navigator section .sp {
  background-image: url(/assets/images/info/navigator/navegador.png);
  background-repeat: no-repeat;
}
.the-navigator section[id*=adventure-7] .pirate-head {
  background-position: -1700px -460px;
}
.the-navigator section[id*=adventure-6] .pirate-head {
  background-position: -1034px -345px;
}
.the-navigator section[id*=adventure-5] .pirate-head {
  background-position: -1325px -345px;
}
.the-navigator section[id*=adventure-4] .pirate-head {
  background-position: -5px -5px;
}
.the-navigator section[id*=adventure-3] .pirate-head {
  background-position: -20px -725px;
}
.the-navigator section[id*=adventure-2] .pirate-head {
  background-position: -20px -725px;
}
.the-navigator section[id*=adventure-1] .pirate-head {
  background-position: -20px -725px;
}
.the-navigator .period,
.the-navigator .company,
.the-navigator .industry,
.the-navigator .role {
  margin: 0 0 0 120px;
  line-height: 0.8;
}
.the-navigator .period br,
.the-navigator .company br,
.the-navigator .industry br,
.the-navigator .role br {
  display: none;
}
.the-navigator .period strong,
.the-navigator .company strong,
.the-navigator .industry strong,
.the-navigator .role strong {
  display: none;
}
.the-navigator .period {
  font-size: 36px;
  color: #727272;
}
.the-navigator .company {
  font-size: 30px;
  color: #333333;
}
.the-navigator .industry {
  font-size: 24px;
  color: #727272;
}
.the-navigator .role {
  font-size: 20px;
  color: #333333;
}
.the-navigator .summary {
  line-height: 1.25;
  color: #4d4d4d;
}
.the-navigator a:not(.vz-logo) {
  font-family: "Ardagh", Arial, sans-serif;
  padding: var(--spacing-0);
  background-color: transparent;
  color: var(--color-primary);
}
.the-navigator a:not(.vz-logo):hover {
  background-color: transparent;
  color: var(--color-secondary);
  text-decoration: underline;
}
.the-navigator .vz-toc a:hover {
  color: var(--color-primary);
}

#knowledge {
  background-image: url(/assets/images/info/fixer/fixer-knowledge-bg.jpg);
}
#knowledge h2::after {
  background-position: -1763px 0px;
}
#knowledge table {
  padding-left: 5%;
  margin-top: 60px;
}
#knowledge table tbody {
  width: 100%;
}
#knowledge table tbody tr {
  position: relative;
  float: left;
  width: 340px;
  height: 170px;
  margin: 0 16px 16px 0;
  overflow: hidden;
  background-position: -427px -332px;
  transition: background-position 0.6s;
  transform: scale(1);
  transition: all 0.6s;
}
#knowledge table tbody tr:hover {
  cursor: default;
  transform: scale(1.5);
  transition: all 0.6s;
}
#knowledge table tbody tr:hover td {
  transition: all 0.6s;
}
#knowledge table tbody tr:hover .name {
  top: 100px;
}
#knowledge table tbody tr:hover .type {
  top: 90px;
}
#knowledge table tbody tr:hover .years {
  top: 52px;
}
#knowledge table tbody tr:hover .level {
  top: -22px;
}
#knowledge table tbody tr:hover .use {
  top: 14px;
}
#knowledge table tbody tr:hover .percentage {
  top: -58px;
}
#knowledge table tbody tr:hover .scroll {
  background-position: -364px -48px;
  transition: background-position 0.6s;
}
#knowledge table tbody tr td {
  position: relative;
  z-index: 2;
  width: 100%;
  float: left;
  color: #550000;
  font-family: "Arsenal", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  transition: all 0.6s;
}
#knowledge table tbody tr td.name {
  position: absolute;
  z-index: 2;
  height: 40px;
  top: 0;
  text-transform: uppercase;
  font-size: 0.9em;
  line-height: 40px;
  color: #000;
}
#knowledge table tbody tr td.type {
  display: block;
  top: -15px;
}
#knowledge table tbody tr td.years {
  top: -55px;
}
#knowledge table tbody tr td.use {
  display: block;
  top: -90px;
}
#knowledge table tbody tr td.level {
  display: block;
  top: -120px;
}
#knowledge table tbody tr td.percentage {
  top: -160px;
}
#knowledge table tbody tr td.years::after {
  content: " years";
}
#knowledge table tbody tr td.decorative {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  visibility: visible;
}
#knowledge table tbody tr td .gradient,
#knowledge table tbody tr td .scroll {
  background-image: url(/assets/images/info/fixer/fixer.png);
  background-repeat: no-repeat;
}
#knowledge table tbody tr td .gradient {
  position: absolute;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-position: -28px -233px;
}
#knowledge table tbody tr td .scroll {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: -364px -150px;
  transition: background-position 0.6s;
}

#languages {
  background-image: url(/assets/images/info/fixer/fixer-languages-bg.jpg);
  background-position: top center;
  background-size: cover;
}
#languages h2::after {
  background-position: -1763px -84px;
}
#languages table {
  margin-top: 20px;
  width: 100%;
  color: #72fe00;
}
#languages table::before {
  content: 'VMware ESX Server 3 Kernel 2.21-3.Elvmnix on an i686 Last login: Mon Sep 3 10:53 on ttypes 714k:~ tlak alias Lang="cd ~/Depurador/Lenguajes/" 714k:~ tlak try to brute-force valid credentials for Lang tlakuilo:~ tlak show --all Lang ๏[ ≖‿•ิ ] ✌';
  color: #72fe00;
  font-size: 10px;
  display: inline-block;
  width: 80%;
  padding: 0 20px 30px 20px;
  text-shadow: 0 0 5px #72fe00;
}
#languages table thead {
  display: block;
}
#languages table thead tr {
  display: none;
}
#languages table thead tr:first-child {
  display: block;
}
#languages table thead tr th {
  display: inline-block;
  margin-right: 16px;
  padding: 8px 0;
  text-align: left;
  text-indent: 16px;
  text-transform: uppercase;
  font-weight: normal;
  padding-bottom: 16px;
  background-image: url(/assets/images/info/fixer/fixer.png);
  background-position: 16px 36px;
  background-repeat: no-repeat;
}
#languages table thead tr th.type, #languages table thead tr th.use, #languages table thead tr th.level {
  display: none;
}
#languages table thead tr th.name {
  width: 45%;
}
#languages table thead tr th.years {
  width: 20%;
}
#languages table thead tr th.percentage {
  width: 15%;
}
#languages table tbody {
  width: 100%;
  display: block;
}
#languages table tbody tr {
  display: block;
}
#languages table tbody tr:nth-child(2n):hover {
  background-color: #72fe00;
}
#languages table tbody tr:hover {
  background-color: #72fe00;
  color: black;
  cursor: pointer;
}
#languages table tbody tr.htmls::after {
  content: "";
  top: 100px;
  background-color: black;
  color: greenyellow;
  height: 100vh;
  display: none;
  left: 0;
  width: 100%;
}
#languages table tbody tr.htmls:hover {
  display: block;
  transform: translateY(-36px);
  cursor: default;
  background-color: black;
  color: #72fe00;
}
#languages table tbody tr.htmls:hover::after {
  display: block;
}
#languages table tbody tr.htmls:hover ~ tr {
  display: none;
}
#languages table tbody tr td {
  display: inline-block;
  margin-right: 16px;
  padding: 8px 0;
  text-align: left;
  text-indent: 16px;
  text-transform: uppercase;
  font-weight: normal;
}
#languages table tbody tr td.type, #languages table tbody tr td.use, #languages table tbody tr td.level {
  display: none;
}
#languages table tbody tr td.name {
  width: 45%;
}
#languages table tbody tr td.years {
  width: 20%;
}
#languages table tbody tr td.percentage {
  width: 15%;
}
#languages table tr {
  background-image: none;
  position: relative;
}
#languages table tr:hover {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  background-image: url(/assets/images/info/fixer/fixer-languages-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#languages table tr:hover td.name, #languages table tr:hover td.type, #languages table tr:hover td.years, #languages table tr:hover td.use, #languages table tr:hover td.level, #languages table tr:hover td.percentage {
  display: block;
  font-size: 22px;
  width: 90%;
  margin: 12px 20px;
  text-shadow: 0 0 5px white;
  color: white;
}
#languages table tr:hover td.name abbr, #languages table tr:hover td.type abbr, #languages table tr:hover td.years abbr, #languages table tr:hover td.use abbr, #languages table tr:hover td.level abbr, #languages table tr:hover td.percentage abbr {
  padding-top: 8px;
  padding-bottom: 4px;
  display: inline-block;
  text-indent: 0;
}
#languages table tr:hover td.name::before, #languages table tr:hover td.type::before, #languages table tr:hover td.years::before, #languages table tr:hover td.use::before, #languages table tr:hover td.level::before, #languages table tr:hover td.percentage::before {
  content: "Name of the language";
  font-size: 16px;
  display: block;
  text-indent: 0;
  text-transform: capitalize;
  padding-bottom: 8px;
  border-bottom: dashed 2px white;
  color: red;
  text-shadow: 0 0 5px red;
}
#languages table tr:hover td.type::after, #languages table tr:hover td.years::after, #languages table tr:hover td.use::after, #languages table tr:hover td.level::after, #languages table tr:hover td.percentage::after {
  content: none;
}
#languages table tr:hover td.type::before {
  content: "Type";
}
#languages table tr:hover td.years::before {
  content: "Time using it";
}
#languages table tr:hover td.years::after {
  content: " years";
}
#languages table tr:hover td.use::before {
  content: "Utilization";
}
#languages table tr:hover td.level::before {
  content: "Level of mastery";
}
#languages table tr:hover td.percentage::before {
  content: "Skills percentage";
}

#programs {
  background-image: url(/assets/images/info/fixer/fixer-programs-bg.jpg);
}
#programs h2::after {
  background-position: -1763px -168px;
}
#programs table {
  width: 100%;
  padding-left: 10%;
  margin-top: 60px;
}
#programs table tbody {
  width: 100%;
  font-size: 21px;
}
#programs table tbody tr {
  width: 140px;
  height: 140px;
  float: left;
  margin: 0 8% 8px 0;
  padding: 12px 0 0 0;
  transform: scale(1);
  background-position: -974px -30px;
  transition: transform 0.5s;
}
#programs table tbody tr.webstorm .decorative {
  background-position: -1200px 0px;
}
#programs table tbody tr.vscode .decorative {
  background-position: -1200px -106px;
}
#programs table tbody tr.intellijidea .decorative {
  background-position: -1200px -212px;
}
#programs table tbody tr.visualstudio .decorative {
  background-position: -1200px -318px;
}
#programs table tbody tr.eclipse .decorative {
  background-position: -1200px -424px;
}
#programs table tbody tr.xcode .decorative {
  background-position: -1200px -530px;
}
#programs table tbody tr.apachenetbeans .decorative {
  background-position: -1200px -636px;
}
#programs table tbody tr.sublimetext .decorative {
  background-position: -1200px -742px;
}
#programs table tbody tr.atom .decorative {
  background-position: -1200px -848px;
}
#programs table tbody tr.androidstudio .decorative {
  background-position: -1200px -954px;
}
#programs table tbody tr.postman .decorative {
  background-position: -1200px -1060px;
}
#programs table tbody tr.browserstack .decorative {
  background-position: -1328px 0;
}
#programs table tbody tr.githubdesktop .decorative {
  background-position: -1328px -106px;
}
#programs table tbody tr.dockerdesktop .decorative {
  background-position: -1328px -212px;
}
#programs table tbody tr.kubernetesdashboard .decorative {
  background-position: -1328px -318px;
}
#programs table tbody tr.gimp .decorative {
  background-position: -1328px -424px;
}
#programs table tbody tr.inkscape .decorative {
  background-position: -1328px -530px;
}
#programs table tbody tr.scribus .decorative {
  background-position: -1328px -636px;
}
#programs table tbody tr.figma .decorative {
  background-position: -1328px -742px;
}
#programs table tbody tr.photoshop .decorative {
  background-position: -1328px -848px;
}
#programs table tbody tr.illustrator .decorative {
  background-position: -1328px -954px;
}
#programs table tbody tr.indesign .decorative {
  background-position: -1328px -1060px;
}
#programs table tbody tr.lucidchart .decorative {
  background-position: -1456px 0px;
}
#programs table tbody tr.mysqlworkbench .decorative {
  background-position: -1456px -106px;
}
#programs table tbody tr.mongodbcompass .decorative {
  background-position: -1456px -212px;
}
#programs table tbody tr.robo3t .decorative {
  background-position: -1456px -318px;
}
#programs table tbody tr.squirrelsql .decorative {
  background-position: -1456px -424px;
}
#programs table tbody tr.sequelpro .decorative {
  background-position: -1456px -530px;
}
#programs table tbody tr.dbeaver .decorative {
  background-position: -1456px -636px;
}
#programs table tbody tr.libreoffice .decorative {
  background-position: -1456px -742px;
}
#programs table tbody tr.office365 .decorative {
  background-position: -1456px -848px;
}
#programs table tbody tr.teams .decorative {
  background-position: -1456px -954px;
}
#programs table tbody tr.slack .decorative {
  background-position: -1456px -1060px;
}
#programs table tbody tr.zoom .decorative {
  background-position: -1584px 0px;
}
#programs table tbody tr .decorative {
  display: block;
  width: 72px;
  height: 82px;
  margin: -2px 0 0 14px;
  background-image: url(/assets/images/info/fixer/fixer.png);
  background-position: -30px -30px;
  background-repeat: no-repeat;
}
#programs table tbody tr:hover {
  cursor: default;
  background-position: -996px -197px;
  transform: scale(1.35);
  transition: transform 0.5s;
}
#programs table tbody tr:hover .decorative {
  display: none;
}
#programs table tbody tr:hover td {
  display: block;
}
#programs table tbody tr td {
  display: none;
  font-family: "Arsenal", Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 4px 4px 32px;
  color: #e1e1e1;
}
#programs table tbody tr td.name {
  font-weight: bold;
  color: #d4a140;
}
#programs table tbody tr td.percentage {
  padding-left: 46px;
}
#programs table tbody tr td.years {
  width: 100%;
}
#programs table tbody tr td.years::after {
  content: " years";
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-regular.eot");
  src: url("/assets/fonts/ibm-plex-mono-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/ibm-plex-mono-regular.woff2") format("woff2"), url("/assets/fonts/ibm-plex-mono-regular.woff") format("woff"), url("/assets/fonts/ibm-plex-mono-regular.svg#ibm-plex-mono-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@keyframes circularWave {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
#frameworks {
  background-image: url(/assets/images/info/fixer/fixer-frameworks-bg.jpg);
}
#frameworks h2::after {
  background-position: -1748px -252px;
}
#frameworks table {
  margin-top: 60px;
  font-family: "IBM Plex Mono", "Courier New", Courier, monospace;
}
#frameworks table tbody {
  position: relative;
  width: 90%;
  height: 100vh;
  display: block;
  margin: 0 auto;
}
#frameworks table tr {
  position: absolute;
  z-index: 0;
  background-image: none;
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.5s;
}
#frameworks table tr::before {
  content: "";
  position: absolute;
  top: 32.5%;
  left: 32.5%;
  display: block;
  width: 35%;
  height: 35%;
  border-radius: 50%;
}
#frameworks table tr::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 15%;
  display: block;
  width: 60%;
  height: 60%;
  opacity: 0.6;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
}
#frameworks table tr.library {
  border-color: rgba(255, 255, 255, 0.4);
}
#frameworks table tr.library::before {
  background-color: white;
  animation: circularWaves 2.5s infinite linear;
}
#frameworks table tr.library::after {
  border-color: white;
  box-shadow: 0 0 0 2px black, 0 0 0 3px white;
  animation: circularWaves 2.5s infinite linear;
}
#frameworks table tr.framework {
  border-color: rgba(255, 252, 0, 0.4);
}
#frameworks table tr.framework::before {
  background-color: #fffc00;
  animation: circularWaves 3s infinite linear;
}
#frameworks table tr.framework::after {
  border-color: #fffc00;
  box-shadow: 0 0 0 2px black, 0 0 0 3px #fffc00;
  animation: circularWaves 3s infinite linear;
}
#frameworks table tr.reactjs {
  top: 0;
  left: 0;
}
#frameworks table tr.redux {
  top: 15%;
  left: 20%;
}
#frameworks table tr.redux-logic {
  top: 25%;
  left: 52%;
}
#frameworks table tr.react-hook-form {
  top: 7%;
  left: 70%;
}
#frameworks table tr.react-bootstrap {
  top: 30%;
  left: 3%;
}
#frameworks table tr.styled-components {
  top: 5%;
  left: 40%;
}
#frameworks table tr.material-ui {
  top: 17%;
  left: 82%;
}
#frameworks table tr.express {
  top: 38%;
  left: 28%;
}
#frameworks table tr.npm {
  top: 38%;
  left: 88%;
}
#frameworks table tr.yarn {
  top: 46%;
  left: 58%;
}
#frameworks table tr.rush {
  top: 50%;
  left: 0%;
}
#frameworks table tr.lerna {
  top: 55%;
  left: 25%;
}
#frameworks table tr.nx {
  top: 53%;
  left: 66%;
}
#frameworks table tr.webpack {
  top: 24%;
  left: 22%;
}
#frameworks table tr.yeoman {
  top: 34%;
  left: 67%;
}
#frameworks table tr.jest {
  top: 1%;
  left: 90%;
}
#frameworks table tr.jasmine {
  top: 15%;
  left: 55%;
}
#frameworks table tr.mocha {
  top: 20%;
  left: 38%;
}
#frameworks table tr.chai {
  top: 28%;
  left: 39%;
}
#frameworks table tr.angular {
  top: 8%;
  left: 9%;
}
#frameworks table tr.vue {
  top: 1%;
  left: 62%;
}
#frameworks table tr.hugo {
  top: 19%;
  left: 2%;
}
#frameworks table tr.jekyll {
  top: 11%;
  left: 38%;
}
#frameworks table tr.nuxt {
  top: 0%;
  left: 25%;
}
#frameworks table tr.gatsby {
  top: 32%;
  left: 25%;
}
#frameworks table tr.nextjs {
  top: 23%;
  left: 68%;
}
#frameworks table tr.django {
  top: 34%;
  left: 51%;
}
#frameworks table tr.rubyonrails {
  top: 27%;
  left: 85%;
}
#frameworks table tr.springboot {
  top: 40%;
  left: 9%;
}
#frameworks table tr.dotnet {
  top: 47%;
  left: 32%;
}
#frameworks table tr.nodejs {
  top: 37%;
  left: 72%;
}
#frameworks table tr.symfony {
  top: 46%;
  left: 79%;
}
#frameworks table tr.cypress {
  top: 55%;
  left: 85%;
}
#frameworks table tr.yeoman, #frameworks table tr.grunt, #frameworks table tr.bower {
  display: none;
}
#frameworks table tr:hover {
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 45vh;
  cursor: default;
  background-color: rgba(12, 12, 19, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 8px 6px black;
}
#frameworks table tr:hover td,
#frameworks table tr:hover td.name {
  display: flex;
}
#frameworks table tr:hover::before, #frameworks table tr:hover::after {
  content: none;
}
#frameworks table tr td {
  display: none;
  width: calc(100% - 60px);
  height: 24px;
  padding: 12px 0 12px 60px;
}
#frameworks table tr td:hover:not(.name, .percentage) {
  background-color: rgba(123, 119, 155, 0.1411764706);
  cursor: pointer;
}
#frameworks table tr td.type, #frameworks table tr td.years, #frameworks table tr td.use, #frameworks table tr td.level {
  padding-left: 12px;
  width: calc(100% - 12px);
}
#frameworks table tr td.type::before, #frameworks table tr td.years::before, #frameworks table tr td.use::before, #frameworks table tr td.level::before {
  content: "";
  display: flex;
  align-self: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border: solid 1px white;
}
#frameworks table tr td.name {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 60px);
  height: 36px;
  line-height: 1;
  background-color: white;
  color: #2f2f39;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 60px;
}
#frameworks table tr td.name::before {
  content: attr(data-type);
  display: block;
  width: 100%;
  font-weight: normal;
  line-height: 1;
  color: var(--type);
}
#frameworks table tr td.name:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  background-color: #181822;
}
#frameworks table tr td.years::after {
  content: " years";
}
#frameworks table tr td.percentage {
  position: relative;
  bottom: 24px;
  text-align: right;
  font-size: 60px;
  font-weight: 100;
  justify-content: flex-end;
  transform: translateX(-12px);
}
#frameworks table tr td.percentage span {
  display: block;
  margin-right: 12px;
}
#frameworks table tr td.percentage::before {
  content: "";
  box-sizing: border-box;
  margin: 0 12px;
  width: calc(100% - 24px);
  height: 16px;
  border: solid 1px white;
  position: absolute;
  top: 56px;
  left: 12px;
}
#frameworks table tr td.percentage::after {
  content: "";
  box-sizing: border-box;
  margin: 2px 14px;
  width: calc(var(--percentage) - 28px);
  height: 12px;
  position: absolute;
  top: 56px;
  left: 12px;
  background: rgb(255, 255, 255);
}
#frameworks table tr td.isLibrary {
  display: none;
}

#cms {
  background-image: url(/assets/images/info/fixer/fixer-cms-bg.jpg);
}
#cms h2::after {
  background-position: -1763px -336px;
}
#cms table tr {
  background-image: none;
}

@font-face {
  font-family: "Fixer";
  src: url("/assets/fonts/fixer.eot");
  src: url("/assets/fonts/fixer.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/fixer.woff2") format("woff2"), url("/assets/fonts/fixer.woff") format("woff"), url("/assets/fonts/fixer.svg#fixer") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Arsenal";
  src: url("/assets/fonts/arsenal-regular.eot");
  src: url("/assets/fonts/arsenal-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/arsenal-regular.woff2") format("woff2"), url("/assets/fonts/arsenal-regular.woff") format("woff"), url("/assets/fonts/arsenal-regular.svg#arsenal-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.the-fixer {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  color: white;
  background-image: url(/assets/images/info/fixer/fixer-cover-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.the-fixer #main {
  overflow: hidden;
}
.the-fixer .cover {
  background-color: transparent;
}
.the-fixer .cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--cover-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.the-fixer .cover h1 {
  z-index: 1;
  position: relative;
}
.the-fixer .cover h1 {
  font-family: "Fixer", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 90px;
  text-transform: uppercase;
}
.the-fixer #tableOfContent::before, .the-fixer #tableOfContent::after {
  transition: all 0.5s;
}
.the-fixer #tableOfContent::before {
  background-color: transparent;
  background-image: url(/assets//svg/fixer-toc-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.the-fixer #tableOfContent::after {
  content: none;
}
.the-fixer #tableOfContent ul {
  background-color: rgba(0, 0, 0, 0.5);
  width: 90%;
  margin: 0 auto;
  padding: 56px 0 24px 0;
  left: 0;
  right: 0;
  bottom: -100vh;
  backdrop-filter: blur(8px);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0)) 1 100%;
}
.the-fixer #tableOfContent ul::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), white, rgba(0, 0, 0, 0)) 1 1 100%;
  content: "Resume";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), white, rgba(0, 0, 0, 0)) 1 1 100%;
  height: 40px;
  background-color: white;
  color: black;
  text-align: left;
  font-size: 24px;
  line-height: 40px;
  text-indent: 12px;
  background-image: url(/assets/images/info/fixer/toc-close-icon.png);
  background-position: right center;
  background-repeat: no-repeat;
}
.the-fixer #tableOfContent ul::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), white, rgba(0, 0, 0, 0)) 1 1 100%;
}
.the-fixer #tableOfContent ul li a {
  font-family: "Arsenal", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  height: 32px;
  text-transform: uppercase;
  background-color: transparent;
  color: white;
  text-align: left;
  text-indent: 40px;
}
.the-fixer #tableOfContent ul li a:hover {
  position: relative;
  background-image: url(/assets/svg/fixer-toc-horizontal-line.svg);
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: 95% 100%;
}
.the-fixer #tableOfContent ul li a:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.the-fixer #tableOfContent ul li a[href*=knowledge]:hover::before {
  background-image: url("/assets/svg/knowledge-icon.svg");
}
.the-fixer #tableOfContent ul li a[href*=language]:hover::before {
  background-image: url("/assets/svg/language-icon.svg");
}
.the-fixer #tableOfContent ul li a[href*=programs]:hover::before {
  background-image: url("/assets/svg/programs-icon.svg");
}
.the-fixer #tableOfContent ul li a[href*=frameworks]:hover::before {
  background-image: url("/assets/svg/frameworks-icon.svg");
}
.the-fixer #tableOfContent ul li a[href*=cms]:hover::before {
  background-image: url("/assets/svg/cms-icon.svg");
}
.the-fixer #tableOfContent:hover ul {
  bottom: 76px;
}
.the-fixer #tableOfContent:hover + .close-toc {
  bottom: 353px;
}
.the-fixer #tableOfContent:hover + .close-toc::before {
  bottom: 353px;
}
.the-fixer section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.the-fixer section h1 {
  font-family: "El Depurador", "Times New Roman", Times, serif;
  font-size: 90px;
  font-weight: 400;
  text-transform: uppercase;
}
.the-fixer section h2 {
  position: relative;
  font-family: "Arsenal", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 48px;
  text-indent: 48px;
  text-transform: uppercase;
  width: 95%;
  height: 48px;
  z-index: 3;
  background-color: rgba(162, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 30px;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), white, rgba(0, 0, 0, 0)) 1 1 100%;
}
.the-fixer section h2::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 262px;
  height: 76px;
  background-image: url(/assets/images/info/fixer/fixer.png);
  background-repeat: no-repeat;
}
.the-fixer section[id*=knowledge] h2 {
  background-image: url("/assets/svg/knowledge-icon.svg");
}
.the-fixer section[id*=language] h2 {
  background-image: url("/assets/svg/language-icon.svg");
}
.the-fixer section[id*=programs] h2 {
  background-image: url("/assets/svg/programs-icon.svg");
}
.the-fixer section[id*=frameworks] h2 {
  background-image: url("/assets/svg/frameworks-icon.svg");
}
.the-fixer section[id*=knowledge] h2 {
  background-image: url("/assets/svg/knowledge-icon.svg");
}
.the-fixer section[id*=cms] h2 {
  background-image: url("/assets/svg/cms-icon.svg");
}
.the-fixer table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
  padding: 0;
  margin: 0;
}
.the-fixer table thead {
  display: none;
}
.the-fixer table tr {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background-image: url(/assets/images/info/fixer/fixer.png);
  background-repeat: no-repeat;
}
.the-fixer table tr td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
.the-fixer #ammos table thead {
  background-color: transparent;
  color: #72fe00;
}
.the-fixer #ammos table tr:nth-child(2n) {
  background-color: transparent;
}
.the-fixer .close-toc {
  background-color: transparent;
  z-index: 5;
  right: 5%;
  left: auto;
}
.the-fixer .close-toc::before {
  content: none;
}
.the-fixer .navigation-links {
  display: none;
}

@font-face {
  font-family: "Edu NSW ACT Foundation";
  src: url("/assets/fonts/edu-nsw-act-foundation.eot");
  src: url("/assets/fonts/edu-nsw-act-foundation.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/edu-nsw-act-foundation.woff2") format("woff2"), url("/assets/fonts/edu-nsw-act-foundation.woff") format("woff"), url("/assets/fonts/edu-nsw-act-foundation.svg#edu-nsw-act-foundation") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Vujahday Script";
  src: url("/assets/fonts/vujahday-script-regular.eot");
  src: url("/assets/fonts/vujahday-script-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/vujahday-script-regular.woff2") format("woff2"), url("/assets/fonts/vujahday-script-regular.woff") format("woff"), url("/assets/fonts/vujahday-script-regular.svg#vujahday-script-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Segoe Script";
  src: url("/assets/fonts/segoe-script.eot");
  src: url("/assets/fonts/segoe-script.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/segoe-script.woff2") format("woff2"), url("/assets/fonts/segoe-script.woff") format("woff"), url("/assets/fonts/segoe-script.svg#segoe-script") format("svg");
  font-weight: normal;
  font-style: normal;
}
.nobody-knows-he-worked-on {
  background-color: black;
  padding-left: 0;
  padding-right: 0;
}
.nobody-knows-he-worked-on .cover {
  background-color: transparent;
}
.nobody-knows-he-worked-on .cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--cover-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.nobody-knows-he-worked-on .cover h1 {
  z-index: 1;
  position: relative;
}
.nobody-knows-he-worked-on .cover::before {
  background-image: url(/assets/images/projects/cover-mobile.jpg);
}
.nobody-knows-he-worked-on #tableOfContent ul {
  padding-top: 36px;
  max-height: calc(100vh - 100px);
  min-height: auto;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  left: auto;
  bottom: -100vh;
}
.nobody-knows-he-worked-on #tableOfContent ul li:first-of-type {
  margin-top: 120px;
}
.nobody-knows-he-worked-on #tableOfContent ul a:not(.vz-logo) {
  font-family: "Segoe Script", "Times New Roman", Times, serif;
  background-color: transparent;
  text-align: left;
  color: white;
  border-bottom: solid 1px #282828;
  padding: 12px 16px;
}
.nobody-knows-he-worked-on #tableOfContent ul a:not(.vz-logo):hover {
  background-color: var(--color-primary);
  color: black;
}
.nobody-knows-he-worked-on #tableOfContent::before {
  transition: all 0.5s;
}
.nobody-knows-he-worked-on #tableOfContent:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.nobody-knows-he-worked-on #tableOfContent:hover ul {
  bottom: 0;
}
.nobody-knows-he-worked-on #tableOfContent:hover::before, .nobody-knows-he-worked-on #tableOfContent:hover::after {
  opacity: 0;
}
.nobody-knows-he-worked-on #tableOfContent:hover + .close-toc {
  z-index: 5;
}
.nobody-knows-he-worked-on #tableOfContent + .close-toc {
  z-index: 1;
  bottom: 24px;
}
.nobody-knows-he-worked-on #tableOfContent + .close-toc::before {
  bottom: 32px;
}
.nobody-knows-he-worked-on h1 {
  font-family: "Edu NSW ACT Foundation", "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 72px;
  color: white;
}
.nobody-knows-he-worked-on section {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 5%;
  padding-top: 80px;
  width: 100%;
  max-height: 100%;
  z-index: 2;
  background-image: url(/assets/images/projects/frame.png);
  background-repeat: no-repeat;
  background-size: cover;
  perspective: 1000px;
  transition: all 1s;
}
.nobody-knows-he-worked-on section:hover figure {
  z-index: 0;
  transition: z-index 1s;
}
.nobody-knows-he-worked-on section:hover figure::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 75%);
  transition: all 10s;
}
.nobody-knows-he-worked-on section:hover figure img {
  filter: grayscale(0);
  transition: all 2s;
}
.nobody-knows-he-worked-on section:hover figcaption {
  bottom: 10%;
  opacity: 1;
}
.nobody-knows-he-worked-on section:hover a.icon:not(.vz-logo) {
  right: calc(100% - 40px - 10%);
  opacity: 1;
  transform: rotateY(0deg);
  transition: all 0.75s;
}
.nobody-knows-he-worked-on section:hover a.icon:not(.vz-logo):hover {
  background-color: var(--color-primary);
  transform: scale(1.2);
}
.nobody-knows-he-worked-on section:hover a.icon:not(.vz-logo).desktop {
  right: calc(100% - 40px - 56px - 10%);
}
.nobody-knows-he-worked-on section:hover a.icon:not(.vz-logo).mobile {
  right: calc(100% - 40px - 56px - 56px - 10%);
}
.nobody-knows-he-worked-on section:hover a:not(.vz-logo) {
  z-index: 5;
  bottom: 38%;
  opacity: 1;
  background-color: var(--color-primary);
  transform: rotateY(0deg);
  transition: all 0.75s;
}
.nobody-knows-he-worked-on section figure {
  position: absolute;
  clip-path: inset(5% 5% 10% 5%);
  overflow: hidden;
  margin: 0;
  width: 100%;
  transform-style: preserve-3d;
}
.nobody-knows-he-worked-on section figure::before {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 5;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 75%);
  transition: all 10s;
}
.nobody-knows-he-worked-on section figure img {
  background-color: black;
  width: 90%;
  height: auto;
  margin: 5%;
  display: inline-block;
  filter: grayscale(1);
  text-indent: -100000em;
  transition: all 1s;
}
.nobody-knows-he-worked-on section figure a {
  left: auto;
  transform: rotateY(180deg);
}
.nobody-knows-he-worked-on section figure figcaption {
  position: absolute;
  z-index: 5;
  bottom: -100px;
  opacity: 1;
  width: 90%;
  height: 20%;
  padding: 2.5% 0;
  margin: 0 5%;
  background-color: white;
  color: #424242;
  transition: all 0.5s;
}
.nobody-knows-he-worked-on section figure figcaption h2 {
  margin: 0;
  text-indent: 16px;
  font-family: "Vujahday Script", "Times New Roman", Times, serif;
  font-size: 24px;
  font-weight: 600;
}
.nobody-knows-he-worked-on section figure figcaption p {
  margin: 0;
  padding: 0 16px 16px 16px;
  font-family: "Edu NSW ACT Foundation", "Times New Roman", Times, serif;
  font-weight: 500;
  font-style: normal;
}
.nobody-knows-he-worked-on section figure figcaption p strong,
.nobody-knows-he-worked-on section figure figcaption p br {
  display: none;
}
.nobody-knows-he-worked-on section figure figcaption p em::after {
  content: " ||";
}
.nobody-knows-he-worked-on section figure figcaption p em:last-child:after {
  content: none;
}
.nobody-knows-he-worked-on section a.icon:not(.vz-logo) {
  position: absolute;
  top: 110px;
  right: 24px;
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  opacity: 0;
  transition: all 0.75s;
  background-image: url(/assets/svg/icon-desktop.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform: rotateY(90deg);
}
.nobody-knows-he-worked-on section a.icon:not(.vz-logo).brief {
  background-image: url(/assets/svg/icon-brief.svg);
}
.nobody-knows-he-worked-on section a.icon:not(.vz-logo).mobile {
  background-image: url(/assets/svg/icon-mobile.svg);
}
.nobody-knows-he-worked-on section a:not(.vz-logo) {
  position: absolute;
  bottom: -25%;
  top: auto;
  right: 8%;
  opacity: 0;
  padding: 8px 16px;
  font-family: "Vujahday Script", "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
  background-color: white;
  color: black;
  z-index: 1;
  transition: all 0.5s;
}
.nobody-knows-he-worked-on section a:not(.vz-logo):hover {
  background-color: black;
  color: var(--color-primary);
  transform: scale(1.2);
}
.nobody-knows-he-worked-on section .back-to-top {
  margin-top: 32px;
  display: none;
}
.nobody-knows-he-worked-on section .back-to-top a:not(.vz-logo) {
  position: static;
  display: none;
}

@font-face {
  font-family: "Exo";
  src: url("/assets/fonts/exo.eot");
  src: url("/assets/fonts/exo.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/exo.woff2") format("woff2"), url("/assets/fonts/exo.woff") format("woff"), url("/assets/fonts/exo.svg#exothin") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Libre Caslon Bold";
  src: url("/assets/fonts/libre-caslon-bold.eot");
  src: url("/assets/fonts/libre-caslon-bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/libre-caslon-bold.woff2") format("woff2"), url("/assets/fonts/libre-caslon-bold.woff") format("woff"), url("/assets/fonts/libre-caslon-bold.svg#libre_caslon_textbold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Libre Caslon Italic";
  src: url("/assets/fonts/libre-caslon-italic.eot");
  src: url("/assets/fonts/libre-caslon-italic.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/libre-caslon-italic.woff2") format("woff2"), url("/assets/fonts/libre-caslon-italic.woff") format("woff"), url("/assets/fonts/libre-caslon-italic.svg#libre_caslon_textitalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Libre Caslon Regular";
  src: url("/assets/fonts/libre-caslon-regular.eot");
  src: url("/assets/fonts/libre-caslon-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/libre-caslon-regular.woff2") format("woff2"), url("/assets/fonts/libre-caslon-regular.woff") format("woff"), url("/assets/fonts/libre-caslon-regular.svg#libre_caslon_textregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.project-n {
  position: absolute;
  padding: 0;
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: 0;
  top: 0;
  background-color: transparent;
  color: #121621;
  background-image: var(--project-bg);
  background-size: cover;
  background-attachment: fixed;
}
.project-n .cover {
  background-color: transparent;
}
.project-n .cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--cover-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.project-n .cover h1 {
  z-index: 1;
  position: relative;
}
.project-n .cover h1 {
  font-family: "Exo", "Arial Narrow", Arial, sans-serif;
  font-size: 90px;
  text-transform: lowercase;
  color: white;
}
.project-n .cover h1 span.long-title {
  font-size: 80px;
  display: none;
}
.project-n #tableOfContent ul {
  z-index: 0;
  background-color: transparent;
  width: calc(var(--spacing-10) + var(--spacing-2));
  left: 0;
  right: 0;
  padding-bottom: 90px;
}
.project-n #tableOfContent ul li {
  width: 100%;
  height: 50px;
  margin-top: 8px;
}
.project-n #tableOfContent ul li a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 0;
  background-color: black;
}
.project-n #tableOfContent ul li a span {
  display: none;
}
.project-n #tableOfContent ul li a:hover {
  background-color: var(--color-primary);
  color: white;
}
.project-n #tableOfContent ul li a:hover:before {
  background-color: black;
}
.project-n #tableOfContent ul li a::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.project-n #tableOfContent ul li a[href="#brief"]::before {
  mask-image: url(/assets/svg/icon-brief.svg);
  -webkit-mask-image: url(/assets/svg/icon-brief.svg);
}
.project-n #tableOfContent ul li a[href="#gallery-desktop"]::before {
  mask-image: url(/assets/svg/icon-desktop.svg);
  -webkit-mask-image: url(/assets/svg/icon-desktop.svg);
}
.project-n #tableOfContent ul li a[href="#gallery-mobile"]::before {
  mask-image: url(/assets/svg/icon-mobile.svg);
  -webkit-mask-image: url(/assets/svg/icon-mobile.svg);
}
.project-n #tableOfContent::before {
  background-color: black;
}
.project-n #tableOfContent::after {
  background-color: var(--color-primary);
}
.project-n #tableOfContent:hover::before, .project-n #tableOfContent:hover::after {
  opacity: 1;
}
.project-n #tableOfContent:hover + .close-toc {
  z-index: 5;
}
.project-n #tableOfContent + .close-toc {
  z-index: 0;
  bottom: 24px;
  background-color: black;
}
.project-n #tableOfContent + .close-toc::before {
  bottom: 32px;
  background-color: var(--color-primary);
}
.project-n section {
  padding-top: 0;
}
.project-n h2 {
  font-family: "Libre Caslon Italic", "Times New Roman", Times, serif;
  font-size: 48px;
  width: 75%;
  line-height: 1;
  color: white;
  text-transform: lowercase;
  margin: 0;
  mix-blend-mode: difference;
}
.project-n #brief {
  padding: 0 16px 10vh 16px;
  background-image: var(--project-bg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: difference;
}
.project-n #brief h2 {
  padding: 80px 0 48px 0;
  mix-blend-mode: difference;
}
.project-n #brief strong {
  font-family: "Libre Caslon Bold", "Times New Roman", Times, serif;
  font-size: 20px;
  font-style: italic;
}
.project-n #brief em {
  font-style: normal;
  font-size: 16px;
}
.project-n #gallery {
  position: relative;
}
.project-n #gallery .gallery {
  position: relative;
  width: 100%;
  height: 500vh;
  background-image: var(--project-bg);
  background-attachment: local;
  background-repeat: no-repeat;
  background-size: contain;
}
.project-n #gallery .gallery h2 {
  padding: 80px 16px;
}
.project-n #gallery .gallery figure {
  position: absolute;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: var(--project-bg);
  background-attachment: local;
  background-repeat: no-repeat;
  background-size: cover;
}
.project-n #gallery .gallery figure[id*="01"] {
  bottom: 400vh;
}
.project-n #gallery .gallery figure[id*="02"] {
  bottom: 300vh;
}
.project-n #gallery .gallery figure[id*="03"] {
  bottom: 200vh;
}
.project-n #gallery .gallery figure[id*="04"] {
  bottom: 100vh;
}
.project-n #gallery .gallery figure[id*="05"] {
  bottom: 0vh;
}
.project-n #gallery .gallery figure::before {
  content: "gallery";
  display: block;
  position: sticky;
  top: 80px;
  left: 16px;
  height: 56px;
  font-family: "Libre Caslon Italic", "Times New Roman", Times, serif;
  font-size: 48px;
  width: 75%;
  line-height: 1;
  color: white;
  text-transform: lowercase;
  margin: 0;
  mix-blend-mode: difference;
}
.project-n #gallery .gallery figure img {
  position: absolute;
  left: 0;
  right: 0;
  width: 93%;
  margin: 0 auto;
  bottom: 26.5%;
}
.project-n #gallery .gallery nav {
  position: absolute;
  z-index: 2;
  bottom: 63vh;
  text-align: center;
  width: 100%;
}
.project-n #gallery .gallery nav a, .project-n #gallery .gallery nav .current {
  font-family: "Exo", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  display: inline-block;
  padding: 0;
  line-height: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.project-n #gallery .gallery nav a {
  background-color: black;
  color: white;
  transition: all 0.5s;
}
.project-n #gallery .gallery nav a:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 14px 7px rgba(0, 0, 0, 0.5);
}
.project-n #gallery .gallery nav .current {
  background-color: white;
  color: black;
  box-shadow: 0 0 14px 7px rgba(0, 0, 0, 0.5);
}
.project-n #gallery .gallery nav p {
  display: none;
}
.project-n #gallery #gallery-desktop figure::before {
  content: "desktop gallery";
}
.project-n #gallery #gallery-desktop figure img {
  bottom: 0;
  background-image: url(/assets/images/projects/mac-desktop.png);
  background-position: center 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 21% 3% 46% 3%;
}
.project-n #gallery #gallery-desktop figure nav {
  bottom: 62%;
}
.project-n #gallery #gallery-mobile figure::before {
  content: "mobile gallery";
}
.project-n #gallery #gallery-mobile figure .device {
  position: absolute;
  display: block;
  bottom: 3vh;
  z-index: 1;
  height: 70vh;
  width: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.project-n #gallery #gallery-mobile figure .device img {
  height: inherit;
  width: auto;
  bottom: 0;
  transform: translateY(1.75vh);
}
.project-n #gallery #gallery-mobile figure .device::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 73vh;
  display: block;
  background-image: url(/assets/images/projects/vz-phone.png);
  background-position: center 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.project-n #gallery #gallery-mobile figure nav {
  display: flex;
  flex-direction: column;
  bottom: 15vh;
  top: auto;
  right: 1%;
  width: 48px;
}
.project-n #gallery #gallery-mobile figure nav a, .project-n #gallery #gallery-mobile figure nav span {
  margin-bottom: 8px;
}
.project-n #projects-navigation-top,
.project-n #projects-navigation-bottom,
.project-n .back-to-top {
  display: none;
}
.project-n footer {
  padding: 16px;
}

#contact-data {
  background-image: url(/assets/images/contact/contact-data-bg.jpg);
}
#contact-data p {
  padding: 12px;
  display: inline-flex;
  flex-direction: column;
}
#contact-data p strong {
  text-transform: lowercase;
  font-size: 24px;
  font-weight: 400;
}
#contact-data p br {
  display: none;
}
#contact-data p a {
  padding: 0;
  background-color: transparent;
  font-weight: 200;
  text-transform: uppercase;
}
#contact-data p a:hover {
  color: white;
}
#contact-data p.name {
  width: 244px;
  height: 348px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  margin: 0 auto;
  background-image: url(/assets/images/contact/contact-data-badge-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
#contact-data p.name .photo {
  margin-top: 42px;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.4117647059);
  border: solid 3px #060515;
}
#contact-data p.name .fn {
  text-transform: none;
  margin-top: 60px;
  font-size: 30px;
  font-weight: 500;
}
#contact-data p.name .org {
  font-size: 24px;
  font-style: normal;
}
#contact-data p.name .title {
  font-size: 20px;
  font-style: normal;
  margin-top: 12px;
}
#contact-data p.name .adr {
  font-size: 16px;
}
#contact-data p.phone {
  text-align: right;
  float: right;
  margin-right: 16px;
  padding: 8px 48px 29px 12px;
  background-image: url(/assets/images/contact/contact-data-phone-bg.png);
  background-repeat: no-repeat;
}
#contact-data p.email {
  font-size: 20px;
  font-weight: 400;
  padding: 12px 24px 30px 12px;
  margin-left: 16px;
  display: inline-flex;
  flex-direction: column;
  background-image: url(/assets/images/contact/contact-data-mail-bg.png);
  background-repeat: no-repeat;
}
#contact-data p.email a {
  text-transform: lowercase;
}
#contact-data p.cards {
  background-color: transparent;
  padding: 0;
  margin: 24px auto;
  width: 100%;
  align-items: center;
}
#contact-data p.cards strong {
  margin-bottom: 16px;
}
#contact-data p.cards .v_card,
#contact-data p.cards .me_card {
  padding: 44px 12px 48px 18px;
  background-image: url(/assets/images/contact/contact-data-qr-bg.png);
  background-repeat: no-repeat;
}
#contact-data p.cards .v_card a,
#contact-data p.cards .me_card a {
  display: block;
  margin-top: 8px;
}

.nor-where-to-find-him #message {
  background-image: url(/assets/images/contact/message-bg.jpg);
}
.nor-where-to-find-him #message #formMessage {
  margin: 0 16px;
}
.nor-where-to-find-him #message label {
  font-size: 24px;
  text-shadow: 0 0 10px white, 0 0 10px white;
}
.nor-where-to-find-him #message label a {
  background-color: transparent;
  text-shadow: 0 0 10px var(--color-primary), 0 0 10px var(--color-primary);
}
.nor-where-to-find-him #message input {
  font-family: "Auchanted X Space", Arial, Helvetica, sans-serif;
}
.nor-where-to-find-him #message input[type=text], .nor-where-to-find-him #message input[type=email], .nor-where-to-find-him #message input[type=tel] {
  font-family: "Auchanted X Space", Arial, Helvetica, sans-serif;
  font-size: 24px;
  width: calc(100% - 16px);
  padding: 0 8px;
  height: 48px;
  background-color: transparent;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="%23FFF" fill-opacity="0.1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity=".6" d="M376.375 40H0V0h384v30z"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 56px;
  color: white;
  border: none;
}
.nor-where-to-find-him #message input[type=text]::placeholder, .nor-where-to-find-him #message input[type=email]::placeholder, .nor-where-to-find-him #message input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.nor-where-to-find-him #message input[type=text]:focus, .nor-where-to-find-him #message input[type=email]:focus, .nor-where-to-find-him #message input[type=tel]:focus {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="%23FFF" fill-opacity="1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
  color: var(--color-secondary);
  outline: none;
}
.nor-where-to-find-him #message input[type=text].invalid, .nor-where-to-find-him #message input[type=email].invalid, .nor-where-to-find-him #message input[type=tel].invalid {
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message input[type=text]:required ~ .invalid, .nor-where-to-find-him #message input[type=email]:required ~ .invalid, .nor-where-to-find-him #message input[type=tel]:required ~ .invalid {
  display: block;
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message .select {
  position: relative;
  display: block;
  overflow: hidden;
}
.nor-where-to-find-him #message .select::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 0;
  padding: 11px;
  color: rgba(255, 255, 255, 0.3137254902);
  transition: 0.25s all ease;
  pointer-events: none;
}
.nor-where-to-find-him #message .select select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  outline: none;
  flex: 1;
  cursor: pointer;
  width: 100%;
  color: var(--border-color-input);
  outline: none;
  font-family: "Auchanted X Space", Arial, Helvetica, sans-serif;
  font-size: 24px;
  width: calc(100% - 16px);
  padding: 0 8px;
  height: 48px;
  background-color: transparent;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="%23FFF" fill-opacity="0.1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity=".6" d="M376.375 40H0V0h384v30z"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 56px;
  color: white;
  border: none;
}
.nor-where-to-find-him #message .select select::placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.nor-where-to-find-him #message .select select:focus {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="%23FFF" fill-opacity="1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
  color: var(--color-secondary);
  outline: none;
}
.nor-where-to-find-him #message .select select.invalid {
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message .select select:required ~ .invalid {
  display: block;
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message .select select::-ms-expand {
  display: none;
}
.nor-where-to-find-him #message .select select:focus {
  background-color: var(--color-primary);
}
.nor-where-to-find-him #message .select select option {
  background-color: var(--color-secondary);
  color: white;
}
.nor-where-to-find-him #message .select select option:focus {
  background-color: var(--color-primary);
  box-shadow: 0 0 10px 100px #1882A8 inset;
}
.nor-where-to-find-him #message textarea {
  color: white;
  height: 80px;
  padding-top: 8px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="80" xml:space="preserve"><path fill="%23FFF" fill-opacity="0.1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity=".6" d="M351.539 79H1V1h382v48.75z"/></svg>');
  background-size: 100% 80px;
  font-family: "Auchanted X Space", Arial, Helvetica, sans-serif;
  font-size: 24px;
  width: calc(100% - 16px);
  padding: 0 8px;
  height: 48px;
  background-color: transparent;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="%23FFF" fill-opacity="0.1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity=".6" d="M376.375 40H0V0h384v30z"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 56px;
  color: white;
  border: none;
}
.nor-where-to-find-him #message textarea::placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.nor-where-to-find-him #message textarea:focus {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="%23FFF" fill-opacity="1" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
  color: var(--color-secondary);
  outline: none;
}
.nor-where-to-find-him #message textarea.invalid {
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message textarea:required ~ .invalid {
  display: block;
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message textarea.invalid {
  background-size: 100% 105px;
}
.nor-where-to-find-him #message textarea:focus {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="80" xml:space="preserve"><path fill="%23FFF" stroke="%23FFF" stroke-miterlimit="10" stroke-opacity=".6" d="M351.539 79H1V1h382v48.75z"/></svg>');
}
.nor-where-to-find-him #message .form-input {
  margin-bottom: 36px;
}
.nor-where-to-find-him #message .privacy label {
  font-size: 18px;
}
.nor-where-to-find-him #message .privacy label input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  color: currentColor;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-color-input);
  border-radius: 2px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  float: left;
  margin-right: 12px;
}
.nor-where-to-find-him #message .privacy label input[type=checkbox]::before {
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-primary);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}
.nor-where-to-find-him #message .privacy label input[type=checkbox]:checked::before {
  transform: scale(1);
}
.nor-where-to-find-him #message .privacy label input[type=checkbox].invalid {
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="384" height="48" xml:space="preserve"><path fill="red" fill-opacity=".1" stroke="red" stroke-miterlimit="10" stroke-opacity="1" d="M376.375 40H0V0h384v30z"/></svg>');
}
.nor-where-to-find-him #message .buttons {
  margin-top: 24px;
}
.nor-where-to-find-him #message .buttons button {
  font-family: "Auchanted X Space", Arial, Helvetica, sans-serif;
  font-size: 20px;
  padding: 12px 20px;
  margin-right: 12px;
  min-width: 100px;
  border-radius: 0;
  border: none;
  background-color: transparent;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="40" xml:space="preserve"><path fill-rule="evenodd" clip-rule="evenodd" fill="%2327a7ef" fill-opacity="0.3" d="M1 1h98v29.909l-8.064 8.114H1V1z"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 45px;
  color: white;
  cursor: pointer;
}
.nor-where-to-find-him #message .buttons button:hover {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="40" xml:space="preserve"><path fill-rule="evenodd" clip-rule="evenodd" fill="%2327a7ef" d="M1 1h98v29.909l-8.064 8.114H1V1z"/></svg>');
  color: var(--color-secondary);
}
.nor-where-to-find-him #message .error {
  display: none;
  color: #ff3e5f;
  font-weight: bold;
}
.nor-where-to-find-him #message .error.visible {
  display: block;
}

#social-media {
  position: relative;
  left: 0;
  padding-left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url(/assets/images/contact/social-media-bg.jpg);
}
#social-media .social-network {
  position: absolute;
  z-index: 2;
}
#social-media .social-network::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px 7px grey;
}
#social-media .social-network:hover {
  z-index: 1;
  width: 100%;
  height: 67vh;
}
#social-media .social-network:hover h3,
#social-media .social-network:hover .fragment,
#social-media .social-network:hover .see {
  display: block;
}
#social-media .social-network h3 {
  margin: 0;
  display: none;
}
#social-media .social-network br {
  display: none;
}
#social-media .social-network .title {
  font-size: 12px;
  font-weight: 500;
}
#social-media .social-network .sprite {
  position: absolute;
}
#social-media .social-network .fragment {
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 8px;
  margin: 0;
}
#social-media .social-network .fragment strong {
  display: block;
}
#social-media .social-network .fragment em {
  display: block;
  font-style: normal;
}
#social-media .social-network .fragment a {
  padding: 0;
  background-color: transparent;
  text-transform: uppercase;
}
#social-media .social-network .fragment a:hover {
  color: white;
  background-color: transparent;
}
#social-media .social-network > a {
  display: none;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.5);
}
#social-media .social-network > a:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}
#social-media .social-network .see {
  top: 88%;
  left: 0;
  display: none;
  margin: 0;
}
#social-media .social-network .see a {
  padding: 8px 16px;
  background-color: transparent;
  box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0.1019607843);
  text-transform: uppercase;
}
#social-media .social-network .see a:hover {
  color: white;
}
#social-media #linkedin {
  top: 22%;
  left: 5%;
}
#social-media #linkedin::before {
  background-color: rgba(29, 174, 236, 0.5882352941);
  box-shadow: 0 0 20px 7px rgba(29, 174, 236, 0.5882352941);
  content: "in";
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#social-media #linkedin h3 {
  top: 16px;
}
#social-media #linkedin .profile {
  width: 280px;
  top: 0;
  left: 15%;
  background-image: url(/assets/images/contact/linkedln-profile-bg.png);
  background-size: 295px 75px;
}
#social-media #linkedin .jobs {
  width: 290px;
  top: 16%;
  left: 8%;
  padding-left: 12px;
  background-image: url(/assets/images/contact/linkedln-jobs-bg.png);
}
#social-media #linkedin .education {
  width: 260px;
  top: 37%;
  left: 15%;
  background-image: url(/assets/images/contact/linkedln-education-bg.png);
  background-size: 270px;
}
#social-media #linkedin .groups {
  width: 320px;
  top: 59%;
  left: 3%;
  background-image: url(/assets/images/contact/linkedln-groups-bg.png);
  background-size: 330px;
}
#social-media #linkedin .see {
  top: 82%;
  left: 10%;
}
#social-media #behance {
  right: 15%;
  top: 30%;
}
#social-media #behance:hover {
  width: 100%;
  right: 0;
  top: 18%;
}
#social-media #behance:hover::before {
  right: 36px;
  top: 91px;
}
#social-media #behance:hover h3 {
  top: calc(20% + 16px);
  right: 5%;
}
#social-media #behance::before {
  background-color: black;
  box-shadow: 0 0 20px 7px rgba(255, 255, 255, 0.4509803922);
  content: "Bē";
  font-size: 11px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#social-media #behance .profile {
  width: 280px;
  top: 1%;
  right: 1%;
  background-image: url(/assets/images/contact/linkedln-profile-bg.png);
  background-size: 295px 75px;
}
#social-media #behance .work {
  width: 230px;
  right: 30%;
  top: 17%;
  background-image: url(/assets/images/contact/behance-work-bg.png);
}
#social-media #behance .work img {
  display: block;
  background-color: lightgrey;
  width: 200px;
  height: 100px;
}
#social-media #behance .inspiration {
  width: 200px;
  right: 9%;
  top: 62%;
  background-image: url(/assets/images/contact/behance-work-bg.png);
}
#social-media #behance .inspiration img {
  display: block;
  background-color: lightgrey;
  width: 200px;
  height: 100px;
}
#social-media #behance .see {
  top: 55%;
  left: auto;
  right: 25%;
}
#social-media #dribbble {
  bottom: 45%;
  left: 25%;
}
#social-media #dribbble::before {
  background-color: #b2215a;
  box-shadow: 0 0 20px 7px #e74d89;
  background-image: url(/assets/svg/icon-dribbble.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#social-media #dribbble:hover {
  bottom: auto;
  left: 0;
  top: 18%;
}
#social-media #dribbble:hover::before {
  top: auto;
  bottom: 32.3%;
  left: 25%;
}
#social-media #dribbble:hover h3 {
  top: auto;
  bottom: 32%;
}
#social-media #dribbble h3 {
  top: 50%;
  left: 10%;
}
#social-media #dribbble .profile {
  bottom: 15%;
  left: 35%;
  width: 175px;
  padding-bottom: 30px;
  background-image: url(/assets/images/contact/behance-work-bg.png);
}
#social-media #dribbble .profile em {
  padding-top: 12px;
}
#social-media #dribbble .work {
  bottom: 43%;
  left: 2%;
  width: 230px;
  background-image: url(/assets/images/contact/behance-work-bg.png);
}
#social-media #dribbble .work img {
  display: block;
  background-color: lightgrey;
  width: 200px;
  height: 100px;
}
#social-media #dribbble .see {
  left: 10%;
}
#social-media #pinterest {
  right: 25%;
  bottom: 40%;
}
#social-media #pinterest::before {
  background-color: #e60023;
  box-shadow: 0 0 20px 7px #e60023;
  background-image: url(/assets/svg/icon-pinterest.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#social-media #pinterest:hover {
  bottom: auto;
  right: auto;
  left: 0;
  top: 18%;
}
#social-media #pinterest:hover::before {
  bottom: 24%;
  right: 20%;
}
#social-media #pinterest h3 {
  bottom: 29%;
  right: 7%;
}
#social-media #pinterest .profile {
  bottom: 17%;
  right: 27%;
  width: 230px;
  background-image: url(/assets/images/contact/linkedln-groups-bg.png);
  background-size: 330px;
}
#social-media #pinterest .boards {
  bottom: 38%;
  width: 280px;
  right: 7%;
  background-image: url(/assets/images/contact/behance-work-bg.png);
}
#social-media #pinterest .see {
  left: auto;
  right: 15%;
}

@font-face {
  font-family: "Vermin Vibes";
  src: url("/assets/fonts/vermin-vibes.eot");
  src: url("/assets/fonts/vermin-vibes.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/vermin-vibes.woff2") format("woff2"), url("/assets/fonts/vermin-vibes.woff") format("woff"), url("/assets/fonts/vermin-vibes.svg#vermin-vibes") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Spy Agency Laser";
  src: url("/assets/fonts/spy-agency-laser.eot");
  src: url("/assets/fonts/spy-agency-laser.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/spy-agency-laser.woff2") format("woff2"), url("/assets/fonts/spy-agency-laser.woff") format("woff"), url("/assets/fonts/spy-agency-laser.svg#spy-agency-laser") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Auchanted X Space";
  src: url("/assets/fonts/auchantedxspace.eot");
  src: url("/assets/fonts/auchantedxspace.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/auchantedxspace.woff2") format("woff2"), url("/assets/fonts/auchantedxspace.woff") format("woff"), url("/assets/fonts/auchantedxspace.svg#auchantedxspace") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --border-color-input: #FFFFFF90;
}

.nor-where-to-find-him {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  font-family: "Auchanted X Space", Arial, Helvetica, sans-serif;
  color: white;
  background-image: url(/assets/images/contact/contact-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.nor-where-to-find-him #main {
  overflow: hidden;
}
.nor-where-to-find-him .cover {
  background-color: transparent;
}
.nor-where-to-find-him .cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--cover-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.nor-where-to-find-him .cover h1 {
  z-index: 1;
  position: relative;
}
.nor-where-to-find-him #tableOfContent::after {
  background-color: white;
  transform: rotate(0deg);
  transition: all 0.5s;
}
.nor-where-to-find-him #tableOfContent ul {
  opacity: 0;
  left: auto;
  max-height: none;
  height: calc(100vh - 134px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transform: scale(0.001) rotate(45deg) translate(170px, -224px);
  overflow: hidden;
  background-image: url(/assets/images/contact/contact-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  transition: all 0.25s;
}
.nor-where-to-find-him #tableOfContent ul a {
  background-color: transparent;
  font-family: "Spy Agency Laser", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 24px;
  text-shadow: 0 0 20px #00aeff;
  transition: all 0.5s;
}
.nor-where-to-find-him #tableOfContent ul a::before {
  content: "{ ";
}
.nor-where-to-find-him #tableOfContent ul a::after {
  content: " }";
}
.nor-where-to-find-him #tableOfContent ul a:hover {
  transform: scale(1.5);
  color: white;
  text-shadow: 0 0 20px white;
  transition: all 0.5s;
}
.nor-where-to-find-him #tableOfContent ul a[href="#social-media"] {
  line-height: 35px;
  background-image: url(/assets/images/contact/contact-toc-social-bg.png);
  background-repeat: no-repeat;
  background-position: center -4px;
  padding: 24px 16px;
  background-size: contain;
}
.nor-where-to-find-him #tableOfContent:hover {
  transition: all 0.5s;
}
.nor-where-to-find-him #tableOfContent:hover ul {
  opacity: 1;
  transform: scale(1);
}
.nor-where-to-find-him #tableOfContent:hover::before {
  background-color: var(--color-primary);
}
.nor-where-to-find-him #tableOfContent:hover::after {
  transform: rotate(45deg);
  transition: all 0.5s;
}
.nor-where-to-find-him #tableOfContent:hover + .close-toc {
  z-index: 5;
}
.nor-where-to-find-him #tableOfContent + .close-toc {
  z-index: 0;
  bottom: 24px;
}
.nor-where-to-find-him #tableOfContent + .close-toc::before {
  bottom: 32px;
  background-color: white;
}
.nor-where-to-find-him section {
  padding: var(--spacing-20) 0 16px 0;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.nor-where-to-find-him h1 {
  font-family: "Vermin Vibes", "Times New Roman", Times, serif;
  text-shadow: 0 0 15px white;
}
.nor-where-to-find-him h2 {
  font-size: 24px;
  padding: 18px 16px 37px 16px;
  background-image: url(/assets/images/contact/contact-data-title-bg.png);
  background-repeat: no-repeat;
  margin: 0 0 24px 0;
  font-family: "Spy Agency Laser", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.nor-where-to-find-him .back-to-top {
  position: absolute;
  right: 0;
  margin: 0;
}

.form-contact-thanks {
  padding: 0;
  margin: 0;
  height: 100vh;
  background-image: url(/assets/images/contact/message-bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.form-contact-thanks main {
  margin: 0;
  padding: 0;
}
.form-contact-thanks main #main {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  height: 100vh;
}
.form-contact-thanks main #main section {
  padding: 80px 0;
}
.form-contact-thanks main #main section#message {
  background-image: none;
}
.form-contact-thanks main #main section h2 {
  font-size: 24px;
  padding: 18px 16px 37px 16px;
  background-image: url(/assets/images/contact/contact-data-title-bg.png);
  background-repeat: no-repeat;
  margin: 0 0 24px 0;
  font-family: "Spy Agency Laser", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.form-contact-thanks main #main section .thanks {
  padding: 16px;
  margin-top: 90px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
}
.form-contact-thanks .back-link {
  text-align: center;
}
.form-contact-thanks .back-link a:not(.vz-logo) {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 auto;
}

:root {
  --spacing-0: 0;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 20px;
  --spacing-6: 24px;
  --spacing-7: 28px;
  --spacing-8: 32px;
  --spacing-9: 36px;
  --spacing-10: 40px;
  --spacing-11: 44px;
  --spacing-12: 48px;
  --spacing-13: 52px;
  --spacing-14: 56px;
  --spacing-15: 60px;
  --spacing-16: 64px;
  --spacing-17: 68px;
  --spacing-18: 72px;
  --spacing-19: 76px;
  --spacing-20: 80px;
  --spacing-21: 84px;
  --spacing-22: 88px;
  --spacing-23: 92px;
  --spacing-24: 96px;
  --spacing-25: 100px;
}

body {
  color: #adb6c5;
  background-color: #0f1012;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  line-height: 1.2;
  font-family: "Exo 2 Regular", "Arial Narrow", Arial, sans-serif;
  padding: var(--spacing-4);
  padding: 1em;
  margin: var(--spcaing-0);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  /* Medium devices (landscape tablets, 768px and up) */
  /* Extra large devices (large laptops and desktops, 1200px and up) */
}
body .vz-logo {
  position: fixed;
  top: 1em;
  left: 1em;
  z-index: 200;
  mix-blend-mode: exclusion;
}
body .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body a:not(.vz-logo) {
  text-decoration: none;
  padding: 0 4px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
}
body a:not(.vz-logo):hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}
body a:not(.vz-logo).current {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  cursor: default;
  pointer-events: none;
}
body a:not(.vz-logo).skip-link:not(:focus):not(:active) {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
body a:not(.vz-logo).skip-link:not(:focus):not(:active):active, body a:not(.vz-logo).skip-link:not(:focus):not(:active):focus {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 999;
}
body #main-header::before {
  content: "";
  height: calc(var(--spacing-10) * 2);
  width: 100%;
  margin: var(--spacing-0);
  position: fixed;
  top: var(--spacing-0);
  left: var(--spacing-0);
  backdrop-filter: blur(3px);
}
body #main {
  padding-top: calc(var(--spacing-9) * 2);
}
body section {
  padding-top: var(--spacing-18);
}
body section h2 {
  margin-bottom: 4px;
  line-height: 1;
  font-size: 36px;
}
body section p {
  margin-top: 6px;
}
body section figure {
  margin: 0;
}
body .back-to-top {
  text-align: right;
  margin: 48px 0 0 0;
}
body hr {
  margin: 0;
  border: dashed 1px rgb(67, 75, 91);
}
body #footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 80px;
}
body #footer .site-navigation {
  display: grid;
  margin-top: 0;
}
body #footer .site-navigation a {
  display: inline-block;
  padding: 8px 0;
  background-color: var(--color-secondary);
  background-color: transparent;
  width: auto;
  transition: padding 0.3s;
}
body #footer .site-navigation a.left {
  margin-right: auto;
}
body #footer .site-navigation a.right {
  margin-left: auto;
}
body #footer .site-navigation a:hover {
  padding: 8px 16px;
  background-color: var(--color-primary);
}
body #footer .vz-logo {
  position: static;
  margin-bottom: 12px;
  display: inline-grid;
}
body #footer .sitemap {
  padding: 24px 0 0 0;
  text-align: left;
}
body #footer .sitemap > strong {
  font-size: 20px;
}
body #footer .sitemap ul {
  list-style: none;
  padding-left: 0;
}
body #footer .site-navigation {
  text-align: left;
  margin-bottom: 60px;
}
body #footer span {
  display: block;
}
body #footer span.hide {
  display: none;
}
body .hide,
body .hide-mobile {
  display: none;
}
body .sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media only screen and (min-width: 768px) {
  body {
    max-width: 768px;
    font-size: 30px;
  }
  body .vz-logo {
    width: 2em;
    height: 2em;
  }
  body .navigation-wrapper .main-navigation ul {
    text-align: right;
  }
  body .navigation-wrapper .main-navigation ul li {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    max-width: 1920px;
    font-size: 30px;
  }
}

.course h3 {
  font-size: 28px;
  line-height: 1;
  margin-top: 56px;
  margin-bottom: 0;
  color: #45526c;
}

.adventure {
  padding-top: 80px;
}
.adventure .period,
.adventure .company,
.adventure .industry,
.adventure .role,
.adventure .design,
.adventure .redesign,
.adventure .administration {
  margin-bottom: 12px;
}
.adventure .period strong,
.adventure .company strong,
.adventure .industry strong,
.adventure .role strong,
.adventure .design strong,
.adventure .redesign strong,
.adventure .administration strong {
  font-size: 24px;
}
.adventure h2 {
  margin-bottom: 12px;
}
.adventure h3 {
  font-size: 28px;
}
.adventure p {
  margin-bottom: 4px;
}
.adventure .summary {
  margin-top: 30px;
}
.adventure .summary h3 {
  margin-bottom: 4px;
}
.adventure .summary .accounts h3 {
  margin-top: 30px;
}
.adventure .summary .accounts br {
  margin-bottom: 12px;
}
.adventure .navigation-links {
  display: none;
}

#ammos table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
#ammos table thead {
  background-color: #ffffff;
  color: #0f1012;
  font-style: normal;
  font-weight: 400;
}
#ammos table thead th {
  padding: 4px 0;
  text-indent: 4px;
}
#ammos table th.type, #ammos table th.use, #ammos table th.level, #ammos table th.isLibrary, #ammos table th.isFramework,
#ammos table td.type,
#ammos table td.use,
#ammos table td.level,
#ammos table td.isLibrary,
#ammos table td.isFramework {
  display: none;
}
#ammos table tr:nth-child(even) {
  background-color: #2d3037;
}
#ammos .ammo-links {
  display: none;
}

.nobody-knows-he-worked-on img {
  width: 100%;
  height: auto;
}
.nobody-knows-he-worked-on figure {
  position: relative;
}
.nobody-knows-he-worked-on figure a {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 3;
  font-size: 24px;
  padding: 8px 16px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
}
.nobody-knows-he-worked-on figure a:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}
.nobody-knows-he-worked-on figure figcaption {
  position: absolute;
  bottom: 0;
  padding-left: 8px;
  background-color: var(--color-secondary);
  background-color: rgba(0, 0, 0, 0.85);
  color: #adb6c5;
  backdrop-filter: opacity(0.4);
}

.project-n section,
.project-n .gallery {
  padding-top: 80px;
}
.project-n #brief strong {
  font-size: 24px;
}
.project-n .gallery figure {
  padding-top: 80px;
}
.project-n .gallery .navigation-links a {
  display: inline-block;
  margin: 6px 4px 0;
  padding: 11px 14px;
  border-radius: 50%;
}

.nor-where-to-find-him #contact-data {
  font-size: 24px;
  line-height: 1.2;
}
.nor-where-to-find-him #contact-data .name {
  margin-bottom: 40px;
}
.nor-where-to-find-him #contact-data .name .fn {
  font-size: 30px;
}
.nor-where-to-find-him #contact-data .cards strong {
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 24px;
}
.nor-where-to-find-him #contact-data .cards .v_card {
  display: inline-block;
  margin-bottom: 30px;
}
.nor-where-to-find-him #message {
  font-size: 20px;
}
.nor-where-to-find-him #message label {
  display: inline-block;
  margin-bottom: 4px;
}
.nor-where-to-find-him #message .text,
.nor-where-to-find-him #message .number,
.nor-where-to-find-him #message select,
.nor-where-to-find-him #message textarea {
  font-size: inherit;
  width: 100%;
  padding: 12px 0;
  text-indent: 8px;
  border: none;
}
.nor-where-to-find-him #message select {
  text-indent: 0;
  padding-left: 8px;
}
.nor-where-to-find-him #message input[type=checkbox] {
  transform: scale(1.5);
  border: none;
  margin-right: 8px;
  margin-bottom: 8px;
  background-color: white;
  width: 16px;
  height: 16px;
}
.nor-where-to-find-him #message button {
  font-size: inherit;
  font-weight: 400;
  border-radius: 0;
  border: none;
  padding: 8px 16px;
  margin-right: 4px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
}
.nor-where-to-find-him #message .error {
  color: #ef2727;
}
.nor-where-to-find-him #social-media h3 {
  font-size: 28px;
  margin-bottom: 0;
}
.nor-where-to-find-him #social-media .social-network {
  margin-bottom: 60px;
}

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