@charset "UTF-8";
:root {
  --background-primary: #16171b;
  --button-primary:#16171b;
  --text-primary: #16171b;
  --white: #FFFFFF;
  --grey10: #f2f3f6;
  --highlightSectionBkg: #d7dada3e;
  --transparent10: #16171b5f;
  --link: #1f5e77;
  --linkHover: #124154;
  --font-primary: "Open Sans", sans-serif;
  --font-secondary: "Noto Sans", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* Reseteamos los margin y paddings de todas las etiquetas */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  cursor: none;
}

/* Evitamos problemas con las imagenes */
img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}

/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}

/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* Configuramos el texto que seleccionamos */
::-moz-selection {
  background-color: var(--background-primary);
  color: var(--blanco);
}
::selection {
  background-color: var(--background-primary);
  color: var(--blanco);
}

/* Nivelamos problemas de tipografías y colocación de formularios */
form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Reseteamos las tablas */
table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* Configuramos la tipografía para toda la web */
body {
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--white);
  line-height: 230%;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
}

h2 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: bold;
  line-height: 150%;
}

h3 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 230%;
}
p b {
  font-weight: bold;
}

.wrapper__menu {
  margin: 0 auto;
  width: 100%;
}
.wrapper__header {
  margin: 0 auto;
  width: 70%;
  max-width: 1500px;
}
@media (max-width: 560px) {
  .wrapper__header {
    width: 100%;
    padding: 0 1rem;
  }
}
.wrapper__default {
  margin: 0 auto;
  width: 65%;
  max-width: 1000px;
}
@media (max-width: 900px) {
  .wrapper__default {
    width: 75%;
  }
}
@media (max-width: 560px) {
  .wrapper__default {
    width: 100%;
    padding: 0 1rem;
  }
}
.wrapper__biggallery {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
@media (max-width: 900px) {
  .wrapper__biggallery {
    width: 95%;
  }
}
@media (max-width: 560px) {
  .wrapper__biggallery {
    width: 100%;
    padding: 0 1rem;
  }
}
.wrapper__min {
  margin: 0 auto;
  width: 55%;
  max-width: 800px;
}
.wrapper__inside {
  margin: 0 auto;
  width: 85%;
  max-width: 800px;
}
@media (max-width: 900px) {
  .wrapper__inside {
    width: 90%;
  }
}
@media (max-width: 560px) {
  .wrapper__inside {
    width: 100%;
  }
}

.caption {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.button {
  font-weight: bold;
  color: var(--link);
}
.button:hover {
  color: var(--linkHover);
}

.mouse {
  pointer-events: none;
  z-index: 6;
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: -6px;
  margin-left: -6px;
  background-color: var(--white);
  mix-blend-mode: difference;
  transform: translateY(-30px) translateX(-30px);
  transition: width 0.4s, height 0.4s, margin-top 0.4s, margin-left 0.4s;
  animation: opacity 0.5s ease 1;
}
@media (pointer: none) {
  .mouse {
    display: none;
  }
}
.mouse.scale {
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
}
@media (pointer: none) {
  .mouse {
    display: none;
  }
}
@media (hover: none) {
  .mouse {
    display: none;
  }
}

.menu {
  width: 100%;
  position: fixed;
  top: 0rem;
  left: 0;
  z-index: 4;
  padding: 1.5rem 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(163, 94, 94, 0);
  transition: top 1s;
}
@media (max-width: 560px) {
  .menu {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
  }
}
.menu.slidedown {
  animation: slideDown 1s ease 1;
}
.menu.light {
  background-color: white;
}
.menu.light .menu__link {
  color: black;
}
.menu.light .menu__svg {
  fill: black;
}
.menu.light .menu__burger:before {
  background-color: #000000;
}
.menu.light .menu__burger:after {
  background-color: #000000;
}
@media (max-width: 560px) {
  .menu.light {
    background-color: transparent;
  }
}
.menu__name {
  display: none;
}
.menu__content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 560px) {
  .menu__content {
    flex-direction: column;
  }
}
.menu__container-movil {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 4;
}
@media (max-width: 560px) {
  .menu__container-movil {
    padding: 1rem 0;
  }
}
.menu__ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
  transition: 0.2s;
  padding-right: 2rem;
}
@media (max-width: 560px) {
  .menu__ul {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0rem;
    left: 0;
    opacity: 0;
    padding-left: 2rem;
    z-index: 3;
    transition: 0.5ss;
    pointer-events: none;
  }
}
.menu__li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 560px) {
  .menu__li {
    position: relative;
    transition-delay: 0.5s;
    transition: 0.2s;
  }
}
.menu__link {
  color: white;
  height: 1rem;
  position: relative;
  overflow: hidden;
  margin-left: 1rem;
  display: block;
}
.menu__link:hover .link__container {
  animation-name: menuAnim;
  animation-duration: 0.2s;
}
@media (max-width: 560px) {
  .menu__link {
    height: 1rem;
    color: black;
  }
}
.menu__hello {
  color: white;
  padding-left: 2rem;
  width: 100px;
}
.menu__svg {
  fill: rgb(255, 255, 255);
  transition: 1s;
}
.menu__burger {
  width: 32px;
  height: 32px;
  display: none;
  position: relative;
  margin-right: 2rem;
}
.menu__burger:before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transform-origin: center;
  background-color: #ffffff;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 1s ease;
}
.menu__burger:after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transform-origin: center;
  background-color: #ffffff;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.5s ease;
}
@media (max-width: 560px) {
  .menu__burger {
    display: block;
  }
}
.menu.active {
  position: fixed;
  top: 0;
  left: 0;
}
.menu.active .menu__burger:before {
  transform: rotate(45deg);
  top: 15px;
  background-color: black;
}
.menu.active .menu__burger:after {
  transform: rotate(-45deg);
  bottom: 15px;
  background-color: black;
}
.menu.active .menu__ul {
  left: 0;
  opacity: 1;
  pointer-events: all;
  padding-left: 2rem;
}
.menu.active .menu__svg {
  fill: black;
}

.menu-light .menu {
  background-color: white;
}
.menu-light .menu__link {
  color: var(--text-primary);
}

.link__container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
}
.link__text {
  font-size: 1rem;
  line-height: 100%;
  line-height: 100%;
}
@media (max-width: 560px) {
  .link__text {
    font-size: 1rem;
  }
}

@keyframes left-right {
  from {
    transform: translateX(-3rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes right-left {
  from {
    transform: translateX(3rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-top {
  from {
    bottom: -3rem;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes menuAnim {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
.intro {
  width: 100%;
  height: 100vh;
  background-color: var(--background-primary);
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.intro__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.intro__image {
  max-height: 90vh;
  pointer-events: none;
  position: relative;
  animation: fade 1s ease 1;
}
.intro__down {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.intro__spiral {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  animation: spiralLoop 4s linear infinite;
}

.down__comment {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  transition: 0.2s;
  animation: opacityInt 2s infinite ease-in-out;
}
.down__chevron {
  width: 24px;
  height: 24px;
  transition: 0.2s;
  animation: opacityInt 2s infinite ease-in-out;
}

@keyframes spiralLoop {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.3);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacityInt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.about {
  overflow-x: hidden;
  width: 100%;
  padding: 15rem 0 5rem 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 560px) {
  .about {
    padding: 7rem 0 3.5rem 0;
  }
}
.about__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: flex-start;
  margin: 0 auto;
  max-width: 800px;
  gap: 1rem;
}
.about__content .content__col {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  background-color: red;
  height: 200px;
}
.about__title {
  color: rgb(0, 0, 0);
  margin-bottom: 1rem;
  text-align: left;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
}
.about__p {
  text-align: left;
  position: relative;
  transition: 0.5s;
}
.about__note {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-color: var(--highlightSectionBkg);
  text-align: left;
  font-weight: bold;
}
.about__list {
  margin-top: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.workingon {
  overflow-x: hidden;
  width: 100%;
  padding: 5rem 0 7rem 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 560px) {
  .workingon {
    padding: 7rem 0 3.5rem 0;
  }
}
.workingon__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 800px;
}
.workingon__content .content__col {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  background-color: red;
  height: 200px;
}
.workingon__container {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 560px) {
  .workingon__container {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.workingon__title {
  color: rgb(0, 0, 0);
  margin-bottom: 1rem;
  text-align: left;
  position: relative;
  transition: 1s;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
}
.workingon__p {
  text-align: left;
  position: relative;
  left: -3rem;
  transition: 0.5s;
}
.workingon__item {
  position: relative;
  top: 0;
  right: 0;
  overflow: hidden;
  height: 300px;
  width: 100%;
  flex: 1;
  background-color: #d7eef8;
}
.workingon__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(22, 25, 28, 0.5843137255);
  color: white;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}
.workingon__item:hover .gallery__img {
  transform: scale(1.2);
}
.workingon__item:hover:after {
  opacity: 1;
}
.workingon__item:nth-child(1) {
  background-color: #adbcd3;
  grid-column-end: span 2;
}
.workingon__item:nth-child(1):after {
  content: "Coming soon";
}
@media (max-width: 560px) {
  .workingon__item:nth-child(1) {
    grid-column-end: span 1;
  }
}
.workingon__info {
  flex: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.gallery {
  overflow-x: hidden;
  opacity: 1;
  width: 100%;
  padding: 10rem 0;
  transition: opacity 1s;
}
@media (max-width: 560px) {
  .gallery {
    padding: 5rem 0;
  }
}
.gallery__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.gallery__grid {
  display: grid;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  width: 100%;
}
@media (max-width: 560px) {
  .gallery__grid {
    grid-auto-rows: auto;
    grid-gap: 1rem;
  }
}
.gallery__container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 560px) {
  .gallery__container {
    gap: 1rem;
    align-items: flex-start;
  }
}
.gallery__button {
  margin-top: 5rem;
  color: var(--link);
  border: 1px solid #3066a0;
  padding: 0.3rem 2rem;
}
@media (max-width: 560px) {
  .gallery__button {
    margin-top: 2rem;
  }
}
.gallery__button:hover {
  border: 1px solid #17686c;
  color: #17686c;
}
.gallery__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 0.5s;
}
.gallery__img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery__title {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.gallery__item {
  position: relative;
  top: 0;
  right: 0;
  overflow: hidden;
  height: 300px;
  width: 100%;
}
.gallery__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(22, 25, 28, 0.5843137255);
  color: white;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.2);
}
.gallery__item:hover:after {
  opacity: 1;
}
.gallery__item:nth-child(1) {
  background-color: #cce3e1;
  grid-column-end: span 2;
}
.gallery__item:nth-child(1):after {
  content: "Units App - Available in the App Store";
}
@media (max-width: 560px) {
  .gallery__item:nth-child(1) {
    grid-column-end: span 1;
  }
}
.gallery__item:nth-child(2):after {
  content: "Icon set and Guidelines - Figma Resource";
}
.gallery__comment {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background-color: var(--highlightSectionBkg);
  border-radius: 1rem;
  text-align: left;
  font-weight: bold;
  width: 100%;
}

.experience {
  overflow-x: hidden;
  width: 100%;
  padding: 15rem 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 560px) {
  .experience {
    padding: 7.5rem 0;
  }
}
.experience__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6rem;
  position: relative;
  width: 50%;
  max-width: 750px;
}
@media (max-width: 1200px) {
  .experience__content {
    width: 80%;
    max-width: none;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .experience__content {
    gap: 4rem;
    width: 100%;
  }
}
.experience__header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
.experience__col {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .experience__col {
    flex-direction: column;
    gap: 0rem;
  }
}
@media (max-width: 560px) {
  .experience__col {
    width: 100%;
    align-items: flex-start;
  }
}
.experience__icon {
  width: 32px;
  margin-bottom: 1.5rem;
  transition: 0.5s;
}
.experience__title {
  color: grey;
  margin-bottom: 1rem;
  position: relative;
  transition: 1s;
}
.experience__li {
  font-size: 1rem;
  text-align: left;
  position: relative;
}
@media (max-width: 900px) {
  .experience__li {
    text-align: left;
  }
}
.experience__button {
  color: var(--link);
  border: 1px solid #3066a0;
  padding: 0.3rem 2rem;
  margin-top: 5rem;
}
@media (max-width: 560px) {
  .experience__button {
    margin-top: 2rem;
  }
}
.experience__button:hover {
  border: 1px solid #17686c;
  color: #17686c;
}
.experience__container {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: center;
}

.social {
  overflow-x: hidden;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
  position: relative;
  margin: auto;
}
@media (max-width: 560px) {
  .social {
    padding-bottom: 0rem;
  }
}
.social__content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 0 auto;
  width: 90%;
  max-width: 1500px;
  padding-top: 2rem;
  position: relative;
}
.social__ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.social__link {
  background-color: #16191C;
  padding: 2rem;
  opacity: 0;
  transition: 0.2s;
}
.social__link:hover {
  background-color: #64babf;
  transform: scale(1.1);
}
@media (max-width: 560px) {
  .social__link {
    padding: 1rem;
  }
}
.social__icon {
  width: 32px;
  height: 32px;
}
.social__content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 2rem 0;
  position: relative;
}
@media (max-width: 1200px) {
  .social__content {
    display: flex;
    flex-flow: column-reverse nowrap;
    justify-content: center;
    align-items: center;
  }
}
.social__location {
  display: inline-block;
  position: absolute;
  left: -3rem;
  opacity: 0;
  bottom: 2rem;
  transition: 1s;
}
@media (max-width: 1200px) {
  .social__location {
    position: relative;
  }
}
.social__mail {
  display: inline-block;
  position: absolute;
  right: -3rem;
  opacity: 0;
  bottom: 2rem;
  font-weight: bold;
  transition: right 1s, opacity 1s;
  color: var(--link);
}
.social__mail:hover {
  color: var(--linkHover);
}
@media (max-width: 1200px) {
  .social__mail {
    position: relative;
  }
}
.social.active .social__location {
  left: 0;
  opacity: 1;
}
.social.active .social__mail {
  right: 0;
  opacity: 1;
}
.social.active .social__link {
  opacity: 1;
}

.projects-menu {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.813);
  padding: 2rem 0;
  border: 1px solid rgba(0, 0, 0, 0.0901960784);
}
.projects-menu__content {
  margin: 0 auto;
  width: 70%;
  max-width: 1000px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.projects-menu__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.project__header {
  padding-top: 3rem;
  text-align: center;
}
.project__learned {
  padding-bottom: 5rem;
}
.project__comment {
  font-size: 0.875rem;
  font-style: italic;
}
.project__section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fade-top 0.5s ease 1;
}
.project__container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}
@media (max-width: 560px) {
  .project__container {
    padding: 2rem 1rem;
  }
}
.project__table {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
.project__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media (max-width: 560px) {
  .project__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
.project__icon {
  width: 32px;
  height: 32px;
}
.project__icon-large {
  width: 45px;
  height: 32px;
}
.project__li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 560px) {
  .project__p {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .project__subtitle {
    text-align: left;
  }
}

.table__col {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.table__categories {
  gap: 4rem;
}

.icons .guidelines__table {
  padding: 2rem;
  background-color: #F5F6F8;
}
.icons .workflow__media {
  max-width: 10rem;
}
.icons__live {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ADD1D3;
}
.icons .live__grid {
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
}
.icons .live__li {
  max-width: 100px;
}
.icons__col {
  align-items: flex-start;
}

.underground__nav-img {
  margin-top: 4rem;
}
.underground__users {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5;
}
.underground .survey__img {
  padding-bottom: 2rem;
}

.miniver__grid .grid__item:first-of-type {
  grid-row: span 2;
  background-color: blue;
}
.miniver__grid .grid__item:first-of-type img {
  height: 100%;
}
.miniver__grid .grid__item:nth-of-type(3) {
  grid-row-start: 2;
  grid-column-start: 2;
}

.galleryexp {
  overflow-x: hidden;
  padding: 10rem 0;
  opacity: 1;
  animation-name: fadein;
  animation-duration: 1s;
}
@media (max-width: 560px) {
  .galleryexp {
    padding: 5rem 0;
  }
}
.galleryexp__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.galleryexp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  grid-auto-rows: 300px;
  position: relative;
}
@media (max-width: 900px) {
  .galleryexp__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 200px;
  }
}
@media (max-width: 560px) {
  .galleryexp__grid {
    grid-auto-rows: auto;
    grid-gap: 1rem;
  }
}
.galleryexp__container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 2rem;
}
@media (max-width: 560px) {
  .galleryexp__container {
    gap: 1rem;
    align-items: flex-start;
  }
}
.galleryexp__button {
  margin-top: 5rem;
}
@media (max-width: 560px) {
  .galleryexp__button {
    margin-top: 2rem;
  }
}
.galleryexp__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 0.5s;
}
.galleryexp__title {
  color: grey;
  display: block;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  bottom: 0rem;
  left: -4rem;
  transition: bottom 2s;
}
@media (max-width: 1200px) {
  .galleryexp__title {
    position: relative;
    top: 0;
    left: 0;
    transform: rotate(0);
  }
}
.galleryexp__item {
  position: relative;
  top: 0;
  right: 0;
  overflow: hidden;
  transition: opacity 1s;
}
.galleryexp__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(22, 25, 28, 0.5843137255);
  color: white;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}
.galleryexp__item:hover .galleryexp__img {
  transform: scale(1.2);
}
.galleryexp__item:hover:after {
  opacity: 1;
}
.galleryexp__item:nth-child(1) {
  grid-row-start: span 2;
}
.galleryexp__item:nth-child(1):after {
  content: "Icon set and Guidelines - Figma Resource";
}
@media (max-width: 900px) {
  .galleryexp__item:nth-child(1) {
    grid-row-start: span 1;
  }
}
.galleryexp__item:nth-child(2) {
  background-color: #ADD1D3;
}
.galleryexp__item:nth-child(2):after {
  content: "Underground App - Personal Case Study";
}
.galleryexp__item:nth-child(2) img {
  -o-object-fit: contain;
     object-fit: contain;
  color: green;
}
.galleryexp__item:nth-child(3) {
  background-color: #f2f3f6;
}
.galleryexp__item:nth-child(3):after {
  content: "Units App - Available in the App Store";
}
.galleryexp__item:nth-child(3) img {
  -o-object-fit: contain;
     object-fit: contain;
}
.galleryexp__item:nth-child(4) {
  background-color: #f2f3f6;
}
.galleryexp__item:nth-child(4):after {
  content: "Prototypes and explorations - Personal";
}
.galleryexp__item:nth-child(5):after {
  content: "Pink Floyd (Illustrations) - Personal";
}
.galleryexp__item:nth-child(6) {
  grid-column-start: span 1;
}
.galleryexp__item:nth-child(6):after {
  content: "Sulcus Band (Graphic and motion design) - Professional";
}
@media (max-width: 900px) {
  .galleryexp__item:nth-child(6) {
    grid-column-start: span 1;
  }
}
.galleryexp__item:nth-child(7) {
  background-color: #1B272C;
}
.galleryexp__item:nth-child(7):after {
  content: "Freelance Music Projects - Professional";
}
.galleryexp__item:nth-child(7) img {
  -o-object-fit: contain;
     object-fit: contain;
}
.galleryexp__item:nth-child(8) {
  background-color: #adbcd3;
}
.galleryexp__item:nth-child(8):after {
  content: "Instagram UI kit - Figma Resource";
}
.galleryexp__item:nth-child(8) img {
  -o-object-fit: contain;
     object-fit: contain;
}
.galleryexp.active .galleryexp__button {
  animation: opacity 1s ease 1 both;
}

.publications__content {
  padding-bottom: 10rem;
}
.publications__header {
  max-width: 650px;
  padding-bottom: 4rem;
}
.publications__title {
  color: grey;
}
.publications__list {
  padding-top: 2rem;
}
.publications__item {
  text-decoration: underline;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=app.css.map */