@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Open+Sans:wght@300&family=Roboto+Slab&family=Roboto:wght@100;400&display=swap');

/*
font-family: 'Noto Sans', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Slab', serif;
*/


body, html {
  height: 100%;
  padding: 0;
  margin: 0;
}

body a {
  border: 4px solid #FFF;
}

/********************************* COLORES *********************************/
.bg_dark {
  background-color: #151218;
  border-color: #2b3142;
}

.bg_brown {
  background-color: #341e1a;
  border-color: rgba(245, 171, 69, 0.5);
}

.ov_white {
  background-color: rgba(32, 100, 21, 0.6);
}

.ov_oker {
  background-color: rgba(245, 171, 69, 0.4);
}

.ov_brown {
  background-color: rgba(81, 47, 41, 0.8);
}

.ov_red {
  background-color: rgba(209, 58, 63, 0.8);
}
.ov_red h2 {
  color: #f5ab45;
}

.ov_lblue {
  background-color: rgba(87, 178, 185, 0.7);
}

.ov_blue {
  background-color: rgba(45, 51, 61, 0.8);
}

.ov_dblue {
  background-color: rgba(50, 45, 57, 0.8);
}

/********************************* FUENTES *********************************/
html, body {
  font-family: 'Roboto Slab', serif;
  font-size: 1em;
}

h1, h2, h3, span {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  transform: translateZ(30px) scale(1);
  
}

p {
  line-height: 1.5em;
  text-indent: 30px;
  margin: 5px 0;
}
p h4 {
  text-indent: 0;
}

.c_dark {
  color: #423016;
  font-family: 'Open Sans', sans-serif;
}

.c_white {
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
}

.c_oker {
  color: #f5ab45;
  font-family: 'Open Sans', sans-serif;
}

.c_brown {
  color: #512f29;
  font-family: 'Open Sans', sans-serif;
}

.c_red {
  color: #B2F7A7;
  font-family: 'Open Sans', sans-serif;
}

.c_lblue {
  color: #60CDD5;
  font-family: 'Open Sans', sans-serif;
}

/********************************* MENU *********************************/
@media (min-width: 900px) {
  /* INICIA full-screen */
  #mainNav, .grid-section {
    width: 100%;
    height: 100%;
  }

  .grid-section {
    display: flex;
    flex-direction: column;
  }

  .row {
    display: flex;
    flex: 1;
  }

  .column > div {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .col-md-4 {
    width: 33.3%;
  }

  .col-md-8 {
    width: 66.6%;
  }

  .col-md-12 {
    width: 100%;
  }
}
/* TERMINA full-screen */
@media (max-width: 900px) {
  /* START phone */
  #mainNav .grid-section {
    display: flex;
    flex-direction: column;
    height: 90vh;
  }
  #mainNav .row {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  #mainNav .column {
    flex: 1;
  }
  #mainNav .column > div {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
/* END phone */
/* TARJETAS */
#mainNav a {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cards a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 0 auto;
  padding-left: 30px;
  padding-bottom: 30px;
  text-decoration: none;
  background-size: 0;
}
.cards a > div {
  /* BACKGROUND & TINTE */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  /*!!! Flatten preserve-3d*/
  background: inherit;
}
.cards a > div:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all .5s ease-in;
}
.cards a > div:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: inherit;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.cards a span {
  font-weight: bold;
}
.cards a h2 {
  padding-top: 5px;
  font-size: 1.8em;
}
.cards a.center {
  /* TEXTO */
  justify-content: center;
  align-items: center;
  padding: 0;
}
.cards a:hover > div:before {
  transform: scale(1.2);
}

#mainNav.cards a > div:before {
  background-position: center top;
}

  /* CREDITOS */
.credits {
  color: #000;
  font-size: 0.7em;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-weight: 100;
  position: absolute; bottom:10px; left: 20px; z-index: 2;
}