/* =========================================== */
/*    HEADER & INTRO RESPONSIVE BREAKPOINTS    */
/* =========================================== */
/* small */
/* 360px */
/* 370px */
/* 560px */
/* 640px */
/* medium */
/* 800px */
/* 896px */
/* 1104px */
/* large */
/* 1296px */
/* 1590px */
/* wide */
/* ============ */
/*    COLORS    */
/* ============ */
html {
  --background-color: #fafcfc; }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0b1 | 201101 
   NOTE: WORK IN PROGRESS
   USE WITH CAUTION AND TEST WITH ABANDON */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

:focus {
  outline: 1px dotted grey; }

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none; }

del {
  text-decoration: line-through; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ============ */
/*    Barlow    */
/* ============ */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Barlow/Barlow-Bold.woff") format("woff"); }
/* ================= */
/*    FF Meta Pro    */
/* ================= */
@font-face {
  font-family: "FF Meta Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/MetaPro/FFMetaProLight.woff") format("woff"); }
@font-face {
  font-family: "FF Meta Pro";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/MetaPro/FFMetaProLightIt.woff") format("woff"); }
@font-face {
  font-family: "FF Meta Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MetaPro/FFMetaProRegular.woff") format("woff"); }
@font-face {
  font-family: "FF Meta Pro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/MetaPro/FFMetaProMedium.woff") format("woff"); }
@font-face {
  font-family: "FF Meta Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/MetaPro/FFMetaProBold.woff") format("woff"); }
/* ============= */
/*    DIN Pro    */
/* ============= */
@font-face {
  font-family: "DIN Pro";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/DINPro/DINPro-Light.woff2") format("woff2"), url("../fonts/DINPro/DINPro-Light.woff") format("woff"); }
@font-face {
  font-family: "DIN Pro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/DINPro/DINNextLTPro-Medium.woff2") format("woff2"), url("../fonts/DINPro/DINNextLTPro-Medium.woff") format("woff"); }
/* I changed the font family because it renders better at small sizes (15 and 14px) in FFox 62 */
@font-face {
  font-family: "DIN Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/DINPro/DINPro-Bold.woff") format("woff"); }
/* ======================= */
/*    DIN Pro Condensed    */
/* ======================= */
@font-face {
  font-family: "DIN Pro Condensed";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/DINPro/DINPro-CondBold.woff") format("woff"); }
@font-face {
  font-family: "DIN Pro Condensed";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/DINPro/DINCond-BoldItalic.woff2") format("woff2"), url("../fonts/DINPro/DINCond-BoldItalic.woff") format("woff"); }
@font-face {
  font-family: "DIN Pro Condensed";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/DINPro/DINPro-Condensed-Medium.woff2") format("woff2"), url("../fonts/DINPro/DINPro-Condensed-Medium.woff") format("woff"); }
/* ================================ */
/*   TOP LIMIT FOR CONTAINER GRID   */
/* ================================ */
/* 1568px */
.visually-hidden {
  position: absolute !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important; }

html {
  scroll-behavior: smooth; }

::-moz-selection {
  background: #40FFC4; }

::selection {
  background: #40FFC4; }

body {
  font: normal 100%/1 "FF Meta Pro", Helvetica, Arial, sans-serif;
  background: var(--background-color);
  color: #121620; }

/* ============================================================================== */
/*    GRID CONTAINER that limits max-width + allows full viewport manipulation    */
/* ============================================================================== */
.home-wrapper {
  display: grid;
  grid-template-columns: minmax(17px, 1fr) 0 minmax(auto, 98rem) 0 minmax(28px, 1fr); }

.home-wrapper > * {
  grid-column: 3 / 4; }

/* ========== */
/*    LOGO    */
/* ========== */
.main-header {
  display: flex;
  justify-content: space-between; }

@media screen and (min-width: 50em) {
  .main-header {
    padding-top: 20px; } }
@media screen and (min-width: 99.375em) {
  .main-header {
    padding-top: 36px; } }
.main-header__logo {
  width: 72px;
  height: 16px;
  margin: 16px 0 18px 0;
  position: relative;
  color: #2D2D30;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.main-header__logo svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  fill: #EE00AC; }

@media screen and (min-width: 50em) {
  .main-header__logo {
    width: 100px;
    height: 22px;
    margin: 6px 0 0 76px; } }
@media screen and (min-width: 99.375em) {
  .main-header__logo {
    width: 135px;
    height: 30px;
    margin-left: 82px; } }
/* ====================== */
/*     LANGUAGES MENU     */
/* ====================== */
.main-header__langmenu {
  display: flex;
  position: absolute;
  top: 10.5rem;
  right: 10px;
  writing-mode: vertical-rl;
  width: 0.875rem;
  color: #CCC;
  text-transform: uppercase;
  font-family: "DIN Pro", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  transform: rotate(180deg); }

.mh-langmenu__link {
  color: #666;
  text-decoration: none;
  padding: 10px 20px 4px 0; }

.mh-langmenu__link[aria-current="true"] {
  color: currentColor; }

.mh-langmenu__link span {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden; }

@media screen and (min-width: 50em) {
  .main-header__langmenu {
    top: 14rem; }

  .mh-langmenu__link {
    padding: 10px 20px 6px 0; } }
@media screen and (min-width: 99.375em) {
  .main-header__langmenu {
    top: 26rem;
    font-size: 0.875rem;
    right: 14px; }

  .main-header__langmenu > :nth-child(1) {
    margin-bottom: 20px; }

  .mh-langmenu__link {
    color: #EE00AC;
    padding: 10px 20px 10px 0; }

  .mh-langmenu__link[aria-current="true"] {
    color: currentColor;
    font-weight: 700; }

  .mh-langmenu__link span {
    clip: auto;
    clip-path: none;
    position: static;
    width: auto;
    overflow: visible; } }
/* ============================ */
/*    CONTACT PLATFORMS MENU    */
/* ============================ */
.main-header__contact-platforms-menu {
  display: flex;
  margin-right: -17px; }

.mh-contact-platforms-menu__link {
  width: 42px;
  height: 48px;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: var(--background-color);
  position: relative; }

.mh-contact-platforms-menu__link svg {
  position: absolute;
  top: 14px;
  left: 12px;
  width: 21px;
  height: auto; }

.main-header__contact-platforms-menu li:nth-child(2) {
  margin-right: 3px; }

.main-header__contact-platforms-menu li svg {
  fill: #D5D5D6; }

@media screen and (min-width: 50em) {
  .main-header__contact-platforms-menu {
    margin-right: 150px;
    margin-top: -10px; }

  .mh-contact-platforms-menu__link {
    width: 44px; }

  .mh-contact-platforms-menu__link svg {
    top: 14px;
    left: 13px;
    width: 26px;
    height: auto; } }
@media screen and (min-width: 99.375em) {
  .main-header__contact-platforms-menu {
    margin-right: 150px;
    margin-top: 2px; }

  .mh-contact-platforms-menu__link svg {
    top: 10px;
    left: 7px;
    width: 30px;
    height: 29px; }

  .main-header__contact-platforms-menu li:nth-child(2) {
    margin-right: 0;
    margin-left: 10px; } }
/* ============================= */
/*    GREETING & IMAGE GROUP     */
/* ============================= */
.home-intro {
  margin-top: 33px; }

.home-intro strong {
  color: #EE00AC; }

.home-intro__avatar {
  width: 128px;
  float: right;
  margin-right: -17px;
  shape-outside: polygon(0px 0px, 100% 0px, 100% 100%, 23% 100%, 24.7% 42.5%, 0px 33.2%); }

.home-intro__greetings {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 2.1875rem;
  color: #2C2C30;
  line-height: 1.1;
  padding-top: 14px;
  margin-bottom: 2rem;
  max-width: 18rem;
  text-transform: lowercase; }

/* Shamefull Spanish title spacing tweak */
html[lang="es"] .home-intro__greetings {
  font-size: 1.875rem; }

.home-intro__greetings:first-letter {
  text-transform: uppercase; }

@media screen and (min-width: 22.5em) {
  /* 360px */
  .home-intro__avatar {
    width: 150px; } }
@media screen and (min-width: 24.5em) {
  /* 392px */
  .home-intro__avatar {
    width: 160px; }

  .home-intro__greetings {
    max-width: 24rem; } }
@media screen and (min-width: 35em) {
  /* 560px */
  .home-intro__avatar {
    margin-top: 10px;
    width: 200px;
    margin-right: 5%; } }
@media screen and (min-width: 47em) {
  /* 752px */
  .home-intro__avatar {
    margin-right: 14%; } }
@media screen and (min-width: 50em) {
  /* 800px */
  .home-intro {
    display: grid;
    /*grid-template-columns: 76px 1.5fr 10px 1.05fr;*/
    grid-template-columns: 76px 1.8fr 10px 1.05fr;
    grid-template-rows: repeat(2, auto);
    margin-top: calc(2.5rem + (11.25 - 2.5) * (100vw - 50rem) / (99.375 - 50) ); }

  .home-intro__avatar {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    margin-top: calc(-.5rem + (3.125 - 0) * (100vw - 50rem) / (99.375 - 50) );
    margin-right: -45px;
    width: 80%;
    margin-left: 0;
    shape-outside: none; }

  html[lang] .home-intro__greetings {
    font-family: "Barlow", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: calc(1.875rem + (3.75 - 1.875) * (100vw - 50rem ) / (99.375 - 50) );
    color: #2C2C30;
    line-height: 1.2;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: url(../img/bullets/title-arrow-down.svg) no-repeat 30px 11%;
    background-size: 25px 24px;
    padding-left: 76px;
    margin-bottom: 2rem;
    padding-top: 0;
    max-width: none; } }
@media screen and (min-width: 93.75em) {
  /* 1500px */
  .home-intro {
    grid-template-columns: 76px 1.5fr 10px 1.05fr; } }
@media screen and (min-width: 99.375em) {
  /* 1590px */
  .home-intro {
    grid-template-columns: 76px 2fr .2fr 1.05fr;
    margin-top: 180px; }

  .home-intro__avatar {
    width: 92%;
    margin-top: 50px; }

  html[lang] .home-intro__greetings {
    font-size: 3.75rem;
    background: url(../img/bullets/title-arrow-down.svg) no-repeat 0 18px;
    background-size: auto auto;
    padding-left: 76px;
    margin-bottom: 4rem; } }
/* =============== */
/*     BIO TEXT    */
/* =============== */
.home-intro__bio {
  font-family: "FF Meta Pro", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.38;
  max-width: 24rem; }

.home-intro__bio::before {
  content: "";
  width: 60px;
  height: 35px;
  margin-right: -10px;
  float: right;
  background: url(../img/bullets/title-arrow-down.svg) no-repeat top center;
  transform: scaleX(-1); }

.home-intro__bio strong {
  font-weight: 700; }

.home-intro__bio p {
  margin-bottom: 2rem; }

.home-intro__bio a {
  margin-top: 1.125rem;
  color: #EE00AC;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, currentColor, currentColor) no-repeat bottom left;
  background-size: 23ch 2px;
  padding-bottom: 12px;
  padding-right: 11px; }

@media screen and (min-width: 47em) {
  /* 752px */
  .home-intro__bio {
    padding-top: 10px;
    max-width: 34rem; }

  .home-intro__bio::before {
    content: none; } }
@media screen and (min-width: 50em) {
  /* 800px */
  .home-intro__bio {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 1.125rem;
    line-height: 1.4;
    padding-top: 0;
    margin-left: 3px;
    font-weight: 500;
    max-width: none; }

  .home-intro__bio > * {
    grid-column: 1 / 2; }

  .home-intro__bio p {
    margin-bottom: 2.625rem; }

  .home-intro__bio a {
    background-size: 19ch 2px;
    padding-right: 0; } }
@media screen and (min-width: 99.375em) {
  /* 1590px */
  .home-intro__bio {
    font-size: 1.25rem;
    line-height: 1.65;
    display: grid;
    grid-template-columns: 3fr 1fr; }

  .home-intro__bio a {
    font-size: 1.375rem; } }
/* ==================================== */
/*    HOME  PROJECTS LAYOUT (mostly)    */
/* ==================================== */
.home-projects {
  grid-column: 2 / 5;
  padding-top: 7rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto); }

.home-projects__title {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 2.125rem;
  color: #2C2C30;
  max-width: 12.5ch;
  margin-bottom: 3rem; }

.home-projects__title strong {
  color: #EE00AC; }

.home-projects__description {
  display: none; }

.home-projects__curated {
  max-width: 18rem; }

@media screen and (min-width: 23.125em) {
  /* 370px */
  .home-projects {
    justify-items: center; }

  .home-projects__title {
    max-width: none;
    text-align: center;
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem; }

  .home-projects__description {
    display: block;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 34ch; } }
@media screen and (min-width: 35em) {
  /* 560px */
  .home-projects {
    justify-items: start; }

  .home-projects__title {
    max-width: none;
    text-align: left; }

  .home-projects__description {
    text-align: left;
    max-width: 35ch; }

  .home-projects__curated {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    max-width: none;
    margin-left: -25px; } }
@media screen and (min-width: 40em) {
  /* 640px */
  .home-projects {
    justify-items: stretch; }

  .home-projects__title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    max-width: none;
    margin-top: 0;
    margin-bottom: 5rem;
    text-align: left; }

  .home-projects__description {
    display: none; }

  .home-projects__curated {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    max-width: none;
    margin-left: -12px; } }
@media screen and (min-width: 50em) {
  /* 800px */
  .home-projects {
    grid-template-columns: 76px minmax(auto, 47rem) 76px; }

  .home-projects__title {
    grid-column: 2 / 4;
    margin-bottom: 5rem; }

  .home-projects__curated {
    grid-column: 2 / 3;
    margin-left: -12px; } }
@media screen and (min-width: 56em) {
  /* 896px */
  .home-projects__curated {
    margin-left: -28px; } }
@media screen and (min-width: 69em) {
  /* 1104px */
  .home-projects {
    grid-template-columns: 76px 1fr 76px; } }
@media screen and (min-width: 70em) {
  /* 1088px */
  .home-projects__curated {
    margin-left: -12px; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-projects {
    grid-template-columns: 76px 1fr 18%;
    background: radial-gradient(closest-side at 45% 55%, #ededf5, rgba(237, 237, 245, 0)) no-repeat 0 0; }

  .home-projects__title {
    font-size: 2.875rem;
    padding-top: 6rem; }

  .home-projects__curated {
    margin-left: -28px; } }
@media screen and (min-width: 99.375em) {
  /* 1590px */
  .home-projects {
    grid-column: 2 / 5;
    grid-template-columns: 76px 414px 1fr 70px;
    grid-template-rows: max-content;
    margin-top: 50px;
    padding-top: 120px;
    padding-bottom: 400px; }

  .home-projects__title {
    font-size: 2.875rem;
    color: #2C2C30;
    grid-column: 2 / 3;
    padding-top: 12.5rem;
    max-width: 12.5ch; }

  .home-projects__curated {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin-left: 0;
    justify-content: center; } }
/* =================== */
/*    PROJECT CARDS    */
/* =================== */
.home-projects__curated__item {
  display: grid;
  width: calc(100% + 10px);
  grid-template-columns: 1fr;
  grid-template-rows: repeat(7, max-content);
  margin-bottom: 25px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px; }

.home-projects__curated__item > * {
  grid-column: 1 / 2; }

@media screen and (min-width: 35em) {
  /* 560px */
  .home-projects__curated__item {
    max-width: calc(50% - 25px);
    flex: 1 1 calc(50% - 25px);
    margin-left: 25px; } }
@media screen and (min-width: 40em) {
  /* 640px */
  .home-projects__curated__item {
    background: #FFF;
    box-sizing: border-box;
    padding: 10px 20px 0 20px;
    box-shadow: 0 0 42px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    display: block;
    max-width: 48%;
    flex: 1 1 48%;
    margin-left: 12px;
    margin-bottom: 12px; }

  .home-projects__curated__item > * {
    margin-left: 0;
    margin-right: 0; } }
@media screen and (min-width: 56em) {
  /* 896px */
  .home-projects__curated__item {
    max-width: 44%;
    flex: 1 1 44%;
    margin-left: 28px;
    margin-bottom: 28px; } }
@media screen and (min-width: 70em) {
  /* 1088px */
  .home-projects__curated__item {
    max-width: 31%;
    flex: 1 1 31%;
    margin-left: 12px;
    margin-bottom: 12px; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-projects__curated__item {
    max-width: 30%;
    flex: 1 1 30%;
    margin-left: 28px;
    margin-bottom: 28px; } }
@media screen and (min-width: 99.375em) {
  /* 1590px */
  .home-projects__curated__item:nth-child(1) {
    margin-top: 125px; }

  /* Autoportrait (1) */
  .home-projects__curated__item:nth-child(3) {
    margin-top: 70px; }

  /* Naranjas (3) */
  /* From here values also get calculated in JS, these are for no JS */
  .home-projects__curated__item:nth-child(5) {
    margin-top: -76px; }

  /* Zelentcher */
  .home-projects__curated__item:nth-child(6) {
    margin-top: -30px; }

  /* This is */
  .home-projects__curated__item:nth-child(7) {
    /* Aprender Conectados */
    margin-top: -94px; } }
.hp__curated__item__thumbnail {
  grid-row: 1 / 2;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px; }

@media screen and (min-width: 40em) {
  /* 640px */
  .hp__curated__item__thumbnail {
    width: calc(100% + 20px);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-left: -10px;
    margin-bottom: 28px; } }
.hp__curated__item__category {
  font-family: "DIN Pro", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .025rem;
  color: #EE00AC;
  margin-bottom: 9px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 30px; }

.hp__curated__item__title {
  grid-row: 3 / 4;
  font-family: "DIN Pro Condensed", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: .025rem;
  padding-right: 10px;
  margin-bottom: 22px;
  margin-left: 20px;
  margin-right: 20px;
  text-transform: uppercase;
  color: #2C3446;
  max-width: 38ch; }

.hp__curated__item__abstract {
  grid-row: 4 / 5;
  font-weight: 400;
  font-size: .9375rem;
  line-height: 1.4;
  color: #666;
  margin-left: 18px;
  margin-right: 18px;
  margin-bottom: 22px; }

.hp__curated__item__abstract i,
.hp__curated__item__abstract cite {
  font-style: italic; }

.hp__curated__item__abstract__rest {
  display: none; }

@media screen and (min-width: 40em) {
  /* 640px */
  .hp__curated__item__category {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0; }

  .hp__curated__item__title {
    margin-left: 0;
    margin-right: 0; }

  .hp__curated__item__abstract {
    font-weight: 300;
    font-size: 1.0625rem;
    margin-left: 0;
    margin-right: 0; }

  .hp__curated__item__abstract__rest {
    display: inline; } }
/* ====================== */
/*    CARD GITHUB LINK    */
/* ====================== */
.hp__curated__item__sourcelink {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  align-self: end;
  justify-self: right;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.05);
  height: 30px;
  width: 29px;
  background-color: #FFF;
  border: 3px solid #FFF;
  border-radius: 50%;
  margin-right: 8px;
  margin-bottom: -17px;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.hp__curated__item__sourcelink svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  fill: #EE00AC; }

.hp__curated__item__sourcelink:hover svg {
  fill: #000; }

@media screen and (min-width: 40em) {
  /* 640px */
  .hp__curated__item__sourcelink {
    height: auto;
    width: auto;
    border: none;
    border-radius: 0;
    margin-right: 0;
    box-shadow: none;
    text-indent: 0;
    white-space: normal;
    overflow: visible;
    font-family: "DIN Pro", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: .875rem;
    color: #666;
    margin-bottom: 14px;
    text-decoration: none;
    background: linear-gradient(90deg, #DDD, #DDD) no-repeat bottom right;
    background-size: calc(100% - 22px) 1px;
    padding-left: 24px;
    padding-bottom: 3px; }

  .hp__curated__item__sourcelink svg {
    width: 17px;
    height: auto;
    fill: #FF952F; }

  .hp__curated__item__sourcelink:hover {
    color: #EE00AC;
    background-image: linear-gradient(90deg, #EE00AC, #EE00AC); }

  .hp__curated__item__sourcelink:hover svg {
    fill: #EE00AC; } }
/* ===================== */
/*    CARD VISIT LINK    */
/* ===================== */
.hp__curated__item__visitlink {
  grid-row: 5 / 6;
  font-family: "DIN Pro Condensed", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1.25;
  color: #EE00AC;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  border: 2px solid #EE00AC;
  padding: 12px 0;
  text-decoration: none;
  margin: 0px 12px 18px 12px;
  white-space: nowrap;
  overflow: hidden; }

.hp__curated__item__visitlink span {
  margin-left: 0;
  max-width: none;
  padding-top: 0; }

.hp__curated__item__visitlink svg {
  display: none;
  width: 16px;
  height: 13px;
  margin-left: 12px; }

.hp__curated__item__visitlink:hover {
  border-color: #2C3446;
  color: #2C3446; }

@media screen and (min-width: 40em) {
  /* 640px */
  .hp__curated__item__visitlink {
    margin: 25px 0; }

  .hp__curated__item__visitlink svg {
    display: block; } }
/* ==================== */
/*    CARD TECH TAGS    */
/* ==================== */
.hp__curated__item__technologies {
  display: none; }

@media screen and (min-width: 40em) {
  /* 640px */
  .hp__curated__item__technologies {
    box-sizing: border-box;
    width: calc(100% + 40px);
    margin-left: -20px;
    border-top: 1px solid #FAFAFC;
    box-shadow: 0 -2px 0 0 #EEE;
    padding: 12px 15px 13px 0;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: "DIN Pro", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: .875rem;
    color: #999;
    text-transform: none; }

  .hp__curated__item__technologies li {
    display: inline;
    white-space: nowrap; }

  .hp__curated__item__technologies li ~ li {
    margin-left: 4px; }

  .hp__curated__item__technologies li:first-child {
    margin-left: 19px; }

  .hp__curated__item__technologies li strong {
    color: #2C3446; } }
/* SPECIAL FOR ALL Pn=n! name ocrrurrence */
.pn-title {
  text-transform: none;
  font-style: italic;
  position: relative;
  letter-spacing: .04125em; }

.hp__curated__item__visitlink .pn-title {
  margin-left: .2rem; }

.pn-title sub {
  position: relative;
  bottom: -3px;
  left: -2px;
  font-size: .875em; }

/* ====================== */
/*    HOME  JOBS LAYOUT   */
/* ====================== */
.home-jobs {
  grid-column: 2 / 5;
  margin-top: 6rem; }

.home-jobs__title {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: #2C2C30;
  margin-bottom: 6rem; }

.home-jobs__title strong {
  display: block;
  color: #EE00AC; }

.home-jobs__description {
  display: none; }

@media screen and (min-width: 28em) {
  /* 448px */
  .home-jobs {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 26rem) 1fr; }

  .home-jobs > * {
    grid-column: 2 / 3; } }
@media screen and (min-width: 35em) {
  /* 560px */
  .home-jobs {
    margin-top: 10rem;
    justify-content: center; }

  .home-jobs__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 18ch; }

  .home-jobs__title strong {
    display: inline; }

  .home-jobs__description {
    display: block;
    margin-bottom: 6rem;
    text-align: center; } }
@media screen and (min-width: 50em) {
  /* 800px */
  .home-jobs__title {
    grid-column: 1 / 4;
    max-width: none;
    margin-bottom: 2rem; } }
@media screen and (min-width: 56em) {
  /* 896px */
  .home-jobs {
    display: grid;
    grid-template-columns: 10px 1fr 10px; } }
@media screen and (min-width: 67em) {
  /* 1072px */
  .home-jobs {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs {
    max-width: none;
    grid-column: 2 / 5;
    grid-template-columns: 40px 74px 1fr 40px; }

  .home-jobs__title {
    grid-column: 2 / 4;
    font-size: 3.25rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: none; }

  .home-jobs__description {
    grid-column: 2 / 4;
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 250px; } }
@media screen and (min-width: 99.375em) {
  /* 1590px */
  .home-jobs {
    margin-top: -200px;
    grid-column: 3 / 5;
    grid-template-columns: 70px 74px 1fr 70px; } }
/* =========================== */
/*    HOME JOBS ITEMS LAYOUT   */
/* =========================== */
.home-jobs__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, max-content) 1fr;
  margin-bottom: 6rem; }

.home-jobs__item:last-of-type {
  margin-bottom: 0; }

.home-jobs__item__years {
  grid-column: 1 / 2;
  grid-row: 1 / 2; }

.home-jobs__item__title {
  grid-column: 1 / 2;
  grid-row: 2 / 3; }

.home-jobs__item__technologies {
  display: none; }

.home-jobs__item__description {
  grid-column: 1 / 2;
  grid-row: 4 / 6; }

.home-jobs__item__image,
.home-jobs__item__imageslider {
  grid-column: 1 / 2;
  grid-row: 3 / 4; }

@media screen and (min-width: 56em) {
  /* 896px */
  .home-jobs__item {
    grid-column: 1 / 4;
    grid-template-columns: 30px .8fr .7fr 50px 1.5fr 15px;
    grid-template-rows: repeat(2, max-content) 1fr;
    align-items: start;
    margin-bottom: 8rem; }

  .home-jobs__item__years,
  .home-jobs__item__title {
    grid-column: 2 / 4; }

  .home-jobs__item__years {
    grid-row: 1 / 2; }

  .home-jobs__item__title {
    grid-row: 2 / 3; }

  .home-jobs__item__description {
    grid-column: 5 / 6;
    grid-row: 3 / 4; }

  .home-jobs__item__image,
  .home-jobs__item__imageslider {
    grid-column: 2 / 4;
    grid-row: 3 / 4; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item {
    grid-column: 2 / 5;
    grid-template-columns: 1.5fr .7fr .8fr;
    grid-template-rows: repeat(3, max-content) 1fr;
    grid-gap: 0 70px;
    align-items: start;
    margin-bottom: 17rem; }

  .home-jobs__item:nth-child(even) {
    grid-column: 1 / 4;
    grid-template-columns: .8fr .7fr 1.5fr; }

  .home-jobs__item__years,
  .home-jobs__item__title,
  .home-jobs__item__technologies,
  .home-jobs__item__description {
    grid-column: 1 / 2; }

  .home-jobs__item__technologies {
    grid-row: 3 / 4; }

  .home-jobs__item__description {
    grid-row: 4 / 5; }

  .home-jobs__item__image,
  .home-jobs__item__imageslider {
    grid-column: 2 / 4;
    grid-row: 1 / 5; }

  .home-jobs__item__imageslider {
    grid-column: 2 / 4;
    grid-row: 1 / 5; }

  .home-jobs__item:nth-child(even) .home-jobs__item__years,
  .home-jobs__item:nth-child(even) .home-jobs__item__title,
  .home-jobs__item:nth-child(even) .home-jobs__item__technologies,
  .home-jobs__item:nth-child(even) .home-jobs__item__description {
    grid-column: 3 / 4; }

  .home-jobs__item:nth-child(even) .home-jobs__item__image,
  .home-jobs__item:nth-child(even) .home-jobs__item__imageslider {
    grid-column: 1 / 3; } }
@media screen and (min-width: 104.375em) {
  /* 1670px */
  .home-jobs__item {
    grid-gap: 0 130px; } }
/* ========================= */
/*    HOME JOBS ITEMS TEXT   */
/* ========================= */
.home-jobs__item__years {
  font-family: "DIN Pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: .75rem;
  color: #666;
  margin: 0 0 .5rem 1px; }

.home-jobs__item__title {
  font-family: "DIN Pro Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #EE00AC;
  max-width: 34ch;
  margin-bottom: 1rem; }

@media screen and (min-width: 23.125em) {
  /* 370px */
  .home-jobs__item__title {
    font-size: 1.5rem; } }
@media screen and (min-width: 35em) {
  /* 560px */
  .home-jobs__item__title {
    font-size: 1.75rem; } }
@media screen and (min-width: 56em) {
  /* 896px */
  .home-jobs__item__title {
    font-size: 1.5625rem; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item__technologies {
    display: flex;
    font-family: "DIN Pro", Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px; }

  .home-jobs__item__technologies li::before {
    content: ", "; }

  .home-jobs__item__technologies li:first-child::before {
    content: none; } }
.home-jobs__item__image {
  margin-bottom: 28px; }

.hj__item__image__caption {
  font-size: .75rem;
  text-align: left;
  margin: 10px 10px 0 0;
  line-height: 1.3; }

.hj__item__image__caption a,
.hj__item__image__caption strong {
  font-weight: 700;
  color: currentColor; }

.hj__item__image__caption a {
  text-decoration: none;
  background: linear-gradient(90deg, #4BFFC7, #4BFFC7) repeat-x bottom left;
  background-size: 1px 5px; }

.hj__item__image__caption__rest {
  display: none; }

@media screen and (min-width: 81em) {
  /* 1296px */
  .hj__item__image__caption__rest {
    display: inline; } }
.home-jobs__item__description {
  font-size: 0.9375rem;
  line-height: 1.4; }

@media screen and (min-width: 56em) {
  /* 896px */
  .home-jobs__item__description {
    margin-top: .75rem; } }
.home-jobs__item__description p {
  margin-bottom: 1.3rem; }

.hj__item__description__features > li {
  background: url(../img/bullets/list-bullet-square.svg) no-repeat 0 0.4125rem;
  background-size: 4px 4px;
  padding-left: 13px;
  margin-bottom: .5625rem;
  margin-left: -1px; }

@media screen and (min-width: 33em) {
  /* 528px */
  .hj__item__description__features > li {
    padding-left: 16px;
    margin-left: -16px; } }
@media screen and (min-width: 56em) {
  /* 896px */
  .hj__item__description__features > li {
    margin-left: 0px; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item__years {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 3.375rem 0 .75rem 1px; }

  .home-jobs__item__title {
    font-size: 2rem;
    line-height: 1.2;
    max-width: 36ch;
    margin-bottom: 1rem; }

  .home-jobs__item__description {
    margin-top: 0;
    font-size: 1.0625rem;
    line-height: 1.4; }

  .home-jobs__item__description p {
    margin-bottom: 1.4rem; }

  .home-jobs__item__description strong {
    font-weight: 700; }

  .hj__item__description__features {
    padding-top: .25rem; }

  .hj__item__description__features > li {
    background-size: auto auto;
    background-position: 0 .5rem;
    padding-left: 20px;
    margin-left: -20px; }

  .home-jobs__item__image,
  .home-jobs__item__imageslider {
    margin-bottom: 0; }

  .hj__item__image__caption {
    font-size: .9375rem;
    line-height: 1.4;
    text-align: right;
    margin: 20px 10px 0 10px; }

  .home-jobs__item:nth-child(even) .hj__item__image__caption {
    text-align: left;
    margin: 20px 10px 0 15px; }

  .hj__item__image__caption a {
    background-size: 1px 6px; } }
/* ======================== */
/*       IMAGE SLIDER       */
/* ======================== */
.home-jobs__item__imageslider {
  position: relative;
  display: grid;
  grid-template-rows: max-content; }

.home-jobs__item__imageslider .home-jobs__item__image {
  grid-row: 1 / 2;
  opacity: 0;
  pointer-events: none; }

.home-jobs__item__imageslider .home-jobs__item__image--show {
  opacity: 1;
  pointer-events: auto; }

/* Cheap way to have a "pointer-events: none" for focus */
.home-jobs__item__imageslider .home-jobs__item__image a {
  display: none; }

.home-jobs__item__imageslider .home-jobs__item__image--show a {
  display: inline; }

/* Set a fixed height for captions to keep btn absolute position consistent */
.home-jobs__item__imageslider .hj__item__image__caption {
  min-height: 3.9rem; }

.home-jobs__item__imageslider__nextbtn {
  display: block;
  padding: 0;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 42px;
  background: url(../img/btn/arrow-next-btn.svg) no-repeat 22px 15px/6px auto, linear-gradient(90deg, #EE00AC 0, #EE00AC 100%) no-repeat 9px 5px/30px 32px;
  position: absolute;
  bottom: 7.125rem;
  right: -26px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.home-jobs__item__imageslider__nextbtn:hover {
  background-image: url(../img/btn/arrow-next-btn.svg), linear-gradient(90deg, #2C3446 0, #2C3446 100%); }

@media screen and (min-width: 35em) {
  /* 560px */
  .home-jobs__item__imageslider__nextbtn {
    background-position: 21px 15px, 9px 5px;
    right: -47px; } }
@media screen and (min-width: 56em) {
  /* 896px */
  .home-jobs__item__imageslider__nextbtn {
    right: 0;
    left: -39px;
    transform: scaleX(-1); } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item__imageslider__nextbtn {
    left: -31px; } }
@media screen and (min-width: 105.375em) {
  /* 1686px */
  .home-jobs__item__imageslider .hj__item__image__caption {
    min-height: none; }

  .home-jobs__item__imageslider__nextbtn {
    height: 45px;
    box-sizing: content-box;
    background: #EE00AC url(../img/btn/arrow-next-btn.svg) no-repeat 17px 16px/auto auto;
    bottom: 7.25rem;
    right: -46px;
    transform: none;
    left: auto; }

  .home-jobs__item__imageslider__nextbtn:hover {
    background-color: #2C3446; } }
/* =========================== */
/*    SPECIFIC ITEMS STYLES    */
/* =========================== */
.home-jobs__item--educar .home-jobs__item__image:last-of-type {
  display: none; }

.home-jobs__item__imageslider .home-jobs__item__image:nth-child(2) img {
  transform: scaleX(-1); }

@media screen and (min-width: 35em) {
  /* 560px */
  .home-jobs__item--educar .home-jobs__item__image:last-of-type {
    display: block;
    max-width: 34.5%;
    margin-top: -.75rem;
    margin-right: -1rem;
    justify-self: right;
    margin-bottom: 0px; }

  .home-jobs__item--educar .home-jobs__item__image:first-of-type .hj__item__image__caption {
    margin-right: 35%; }

  .home-jobs__item--educar .home-jobs__item__image:last-of-type .hj__item__image__caption {
    text-align: center;
    margin-right: 0; } }
@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item--freelance .home-jobs__item__years {
    margin-top: 1.5rem; }

  /* EDUCAR */
  .home-jobs__item--educar .home-jobs__item__years {
    margin-top: 0; }

  .home-jobs__item--educar .home-jobs__item__image {
    margin-top: 3rem; }

  .home-jobs__item--educar .home-jobs__item__image:last-of-type {
    max-width: 35%;
    margin-top: 1rem;
    margin-right: 2.125rem; }

  .home-jobs__item--educar .home-jobs__item__image:first-of-type .hj__item__image__caption {
    margin-right: 43%; }

  .home-jobs__item--educar .home-jobs__item__image:last-of-type .hj__item__image__caption {
    margin: 20px 10px 0 10px; }

  /* TEACHING */
  .home-jobs__item--teaching {
    grid-template-columns: 1.6fr .7fr .7fr;
    grid-gap: 0 110px; }

  .home-jobs__item--teaching .home-jobs__item__years {
    margin-top: .75rem; }

  .home-jobs__item__imageslider .home-jobs__item__image:nth-child(2) img {
    transform: none; }

  /* MECAD */
  .home-jobs__item--mecad .home-jobs__item__years {
    margin-top: 2.3rem; }

  /* YPF */
  .home-jobs__item--ypf .home-jobs__item__years {
    margin-top: 0; }

  .home-jobs__item--ypf .home-jobs__item__image {
    margin-top: 3rem; } }
/* ========================================== */
/*    SKIN THAT RESEMBLES A BROWSER WINDOW    */
/* ========================================== */
.home-jobs__item__image--browserskin img,
.home-jobs__item__image--browserskin video {
  box-sizing: border-box;
  width: calc(100% + 24px);
  margin-left: -8px;
  padding: 6px;
  background: #FFF;
  display: block;
  /* remove inline img whitesapce  */
  box-shadow: 0 0 3px 2px rgba(0, 0, 90, 0.07); }

@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item__image--browserskin {
    position: relative; }

  .home-jobs__item__image--browserskin::before,
  .hj__item__image--browserskin__btns::before,
  .hj__item__image--browserskin__btns::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 13px;
    left: 15px;
    background: #E6E6E6; }

  .hj__item__image--browserskin__btns::before {
    left: 28px; }

  .hj__item__image--browserskin__btns::after {
    left: 40px; }

  .home-jobs__item__image--browserskin img,
  .home-jobs__item__image--browserskin video {
    box-sizing: content-box;
    display: block;
    /* remove html whitespace */
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 3px solid transparent;
    border-top-width: 33px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 0 50px 5px rgba(0, 0, 90, 0.1); } }
/* ================================= */
/*    SKIN THAT RESEMBLES A PHONE    */
/* ================================= */
.home-jobs__item__image--phoneskin {
  position: relative; }

.home-jobs__item__image--phoneskin img,
.home-jobs__item__image--phoneskin video {
  box-sizing: border-box;
  width: 100%;
  background: #FFF;
  display: block;
  /* remove inline img whitesapce  */
  border: 2px solid #000;
  border-top-width: 16px;
  border-radius: 7px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 90, 0.07); }

.home-jobs__item__image--phoneskin::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 8px;
  background: #E6E6E6; }

.home-jobs__item__image--phoneskin::after {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 4px;
  position: absolute;
  top: 7px;
  right: 50%;
  transform: translateX(50%);
  background: #222; }

@media screen and (min-width: 81em) {
  /* 1296px */
  .home-jobs__item__image--phoneskin img,
  .home-jobs__item__image--phoneskin video {
    box-sizing: content-box;
    display: block;
    /* remove html whitespace */
    width: 100%;
    border: 3px solid #000;
    border-top-width: 33px;
    border-radius: 16px;
    box-shadow: 0 0 50px 5px rgba(0, 0, 90, 0.1); }

  .home-jobs__item__image--phoneskin::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 18px;
    background: #E6E6E6; }

  .home-jobs__item__image--phoneskin::after {
    content: "";
    width: 70px;
    height: 5px;
    border-radius: 4px;
    position: absolute;
    top: 15px;
    right: 49%;
    transform: translateX(50%);
    background: #222; } }
/* =================================================== */
/*    SPECIFIC STYLES FOR JOBS -> FRELANCE (THISIS)    */
/* =================================================== */
.hj__item__image--browserskin--thisis {
  position: relative; }

/* 1px pattern would get lost in video compression */
/* so I reconstruct home with pattern + overlay interface */
/* zooming subpixel renders terribly, next time use patterns with 2px lines min! */
.hj__item__image--browserskin--thisis::before {
  content: '';
  position: absolute;
  top: 6px;
  right: -10px;
  bottom: 6px;
  left: 1px;
  transform: translateZ(0);
  /* enhance rendering in FFox 62 */
  background: url(../../public/video/home/jobs/thisis-text-overlay.svg) no-repeat 0 0/cover, linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0, rgba(0, 0, 0, 0.35) 100%) repeat 0 0/auto auto; }

@media screen and (min-width: 81em) {
  /* 1296px */
  .hj__item__image--browserskin--thisis::before {
    top: 33px;
    right: -3px;
    bottom: 4px;
    left: 3px; } }
.main-footer {
  position: relative;
  grid-column: 1 / 6;
  font-family: "DIN Pro", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: .9375rem;
  color: #FFF;
  background: #EE00AC;
  margin-top: 11rem; }

@media screen and (min-width: 50em) {
  .main-footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 12rem; } }
@media screen and (min-width: 99.375em) {
  .main-footer {
    grid-column: 3 / 4;
    background: transparent;
    color: #2C3446;
    margin-top: 21rem; } }
/* BIRD */
.main-footer::before {
  content: "";
  width: 130px;
  height: 75px;
  background: url(../img/footer/european-pipit.png) no-repeat 20px 0;
  background-size: 100% auto;
  position: absolute;
  top: -68px;
  right: 0; }

@media screen and (min-width: 47.5em) {
  .main-footer::before {
    background-position: 0 0;
    right: 20px; } }
@media screen and (min-width: 99.375em) {
  .main-footer::before {
    width: 200px;
    height: 115px;
    top: -105px;
    right: 100px; } }
.main-footer__wrapper {
  padding-top: 18px;
  padding-bottom: 12px;
  background: linear-gradient(90deg, #FFF 50%, transparent 50%) repeat-x left bottom;
  background-size: 4px 1px; }

@media screen and (min-width: 50em) {
  .main-footer__wrapper {
    display: flex;
    justify-content: space-between; } }
@media screen and (min-width: 99.375em) {
  .main-footer__wrapper {
    background: #EE00AC;
    margin: 0 0 0 40px;
    padding-top: 29px;
    padding-bottom: 28px; } }
/* ================= */
/*    LOGO FOOTER    */
/* ================= */
.main-footer__logo {
  width: 90px;
  height: 20px;
  margin: 0 0 0 25px;
  position: relative;
  color: #FFF;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.main-footer__logo svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  fill: #FFF; }

@media screen and (min-width: 50em) {
  .main-footer__logo {
    width: 110px;
    height: 24px;
    margin-left: 20px;
    margin-top: 7px;
    flex: 0 0 110px; } }
@media screen and (min-width: 99.375em) {
  .main-footer__logo {
    flex: 0 1 auto;
    width: 130px;
    height: 29px;
    margin-left: 50px; } }
/* ================= */
/*    MENU FOOTER    */
/* ================= */
.main-footer__menu {
  display: grid;
  grid-template-columns: 20px 45px 40px 68px 1fr 10px;
  grid-template-rows: repeat(3, max-content);
  color: #FFF;
  margin-top: -16px; }

@media screen and (min-width: 50em) {
  .main-footer__menu {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    margin-top: 3px;
    margin-right: 15px; } }
@media screen and (min-width: 99.375em) {
  .main-footer__menu {
    margin-top: 4px;
    margin-right: 40px; } }
.main-footer__menu li {
  grid-column: 5 / 6;
  align-self: center;
  margin-bottom: 15px; }

.main-footer__menu li:nth-child(3) {
  margin-bottom: 3px; }

@media screen and (min-width: 50em) {
  .main-footer__menu li,
  .main-footer__menu li:nth-child(3) {
    margin-bottom: 0;
    display: flex; }

  .main-footer__menu li:nth-child(1)::after,
  .main-footer__menu li:nth-child(2)::after,
  .main-footer__menu li:nth-child(3)::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: 5px 13px 0 13px;
    display: block;
    background: currentColor; } }
.main-footer__menu a {
  color: currentColor;
  text-decoration: none;
  font-weight: 700; }

@media screen and (min-width: 50em) {
  .main-footer__menu a {
    padding-bottom: 4px;
    border-bottom: 1px solid #FFF; } }
/* ==================================== */
/*    LINKEDIN/GITHUB in MENU FOOTER    */
/* ==================================== */
.main-footer__menu .main-footer__menu__linkedin {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  align-self: end;
  margin-bottom: 0; }

.main-footer__menu .main-footer__menu__github {
  grid-column: 3 / 4;
  grid-row: 1 / 4;
  align-self: end;
  margin-bottom: 0; }

.main-footer__menu__linkedin a,
.main-footer__menu__github a {
  width: 44px;
  height: 48px;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  border-bottom-width: 0;
  overflow: hidden;
  position: relative;
  color: #EE00AC;
  margin-top: -6px; }

.main-footer__menu__linkedin svg,
.main-footer__menu__github svg {
  position: absolute;
  top: 14px;
  left: 8px;
  width: 30px;
  height: 29px;
  fill: #FFF; }

@media screen and (min-width: 50em) {
  .main-footer__menu__linkedin a,
  .main-footer__menu__github a {
    margin-top: -9px; } }
/* =============== */
/*    COPYRIGHT    */
/* =============== */
.main-footer__legal {
  width: 1px;
  height: 1px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/* move it next to the bird */
.main-footer__legal__year {
  position: absolute;
  top: -14px;
  right: 4px;
  font-size: .75rem;
  font-weight: 700;
  color: #EE00AC;
  text-indent: 0; }

.main-footer__legal__year__rest {
  display: none; }

@media screen and (min-width: 50em) {
  .main-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

  .main-footer__wrapper {
    flex: 1 1 100%; }

  .main-footer__legal {
    text-indent: 0;
    overflow: visible;
    white-space: normal;
    width: 100%;
    height: auto;
    font-size: .875rem;
    padding: 10px 0 10px 20px; }

  .main-footer__legal__year {
    position: static;
    color: currentColor;
    font-weight: inherit;
    font-size: inherit; }

  .main-footer__legal,
  .main-footer__contact {
    flex: 1 1 40%; } }
@media screen and (min-width: 55em) {
  .main-footer__legal__year__rest {
    display: inline; } }
/* ============= */
/*    CONTACT    */
/* ============= */
.main-footer__contact {
  font-size: .875rem;
  text-align: center;
  padding: 10px 0 10px 0; }

@media screen and (min-width: 25.125em) {
  .main-footer__contact {
    text-align: left;
    padding-left: 26px; } }
@media screen and (min-width: 50em) {
  .main-footer__contact {
    padding-left: 0;
    padding-right: 20px;
    text-align: right; } }
.main-footer__contact .bold {
  font-weight: 700;
  font-size: .8125rem; }

@media screen and (min-width: 99.375em) {
  .main-footer__contact,
  .main-footer__legal,
  .main-footer__contact .bold {
    font-size: .9375rem;
    font-weight: 500; }

  .main-footer__contact {
    padding: 15px 20px 16px 0; }

  .main-footer__legal {
    padding: 15px 0 16px 57px; }

  .main-footer__contact strong {
    color: #EE00AC; } }

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