/* /// 
Added style customization. 
 */
html,
body {
  margin: 0;
  border: 0;
  width: 100%;
  height: 100vh;
}
#main {
  margin: 0 auto;
}
.grid {
  display: grid;
}
div {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  /*border: 1px dotted gray;*/
}
img {
  max-width: 100%;
  height: auto;
}
/* [ ALIGN ] */
.is-vtop {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  vertical-align: top;
  align-content: start;
}
.is-hcentered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/*[ CARD ]*/
.card {
  height: 100% !important;
}

/* [ COLORS ]*/
/*
#37B4FA // 55,180,250 // AZUL oscuro, fuentes, titulos, iconos
#69CDFF / 105,205,255 // azul,  fuentes,  
#BEDCFA  / 190,220,250 // azul muy suave, fondos
#faf9f4 / 250,249,244 // blanco: fuentes, iconos, fondos
#96b4d5 / 150,180,215 / fuentes, divisores, barras, bordes
#969696 / 150,150,150 / negro: contraste, fuentes, iconos,   

# **** ORANGE PALETTE
#FFC44C / 255 196, 76  // fondos, navbar
#B14E46 // brown 
#9452ea / 148.82,234 / purple 
 */
.has-background-orange {
  background-color: #ffc44c;
}
/* *** END COLORS *** */

/* [FONTS] | fonts are served from our own server,  locally, not CDN. */
@font-face {
  font-family: "Roboto Condensed Bold";
  src: url("../fonts/Roboto_Condensed/static/RobotoCondensed-Bold.ttf");
  font-style: normal;
  font-weight: 700;
  font-display: auto;
}
@font-face {
  font-family: "Roboto Condensed Regular";
  src: url("../fonts/Roboto_Condensed/static/RobotoCondensed-Regular.ttf");
  font-style: normal;
  font-weight: 300;
  font-display: auto;
}
@font-face {
  font-family: "Roboto Condensed Light";
  src: url("../fonts/Roboto_Condensed/static/RobotoCondensed-Light.ttf");
  font-style: normal;
  font-weight: 300;
  font-display: auto;
}
@font-face {
  font-family: "Bellota Text Regular";
  src: url("../fonts/Bellota_Text/BellotaText-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: auto;
}
@font-face {
  font-family: "Bellota Text Italic";
  src: url("../fonts/Bellota_Text/BellotaText-Italic.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: auto;
}
@font-face {
  font-family: "Bellota Text Light";
  src: url("../fonts/Bellota_Text/BellotaText-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: auto;
}
@font-face {
  font-family: "Bellota Text Bold";
  src: url("../fonts/Bellota_Text/BellotaText-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: auto;
}
.has-font-roboto-bold {
  font-family: "Roboto Condensed Bold";
}
.has-font-roboto-regular {
  font-family: "Roboto Condensed Regular";
}
.has-font-roboto-light {
  font-family: "Roboto Condensed Light";
}
.has-font-bellota-regular {
  font-family: "Bellota Text Regular";
}
.has-font-bellota-light {
  font-family: "Bellota Text Light";
}
.has-font-bellota-italic {
  font-family: "Bellota Text Italic";
}
.has-font-bellota-bold {
  font-family: "Bellota Text Bold";
}
/* *** END FONTS *** */

/* [ GRAPHS ]*/

/* [IMAGES] */
.icon-16 {
  width: 18px;
  height: auto;
  padding: 1px;
}
.icon-36 {
  width: 38px;
  height: auto;
  padding: 1px;
}
.icon-60 {
  width: 60px;
  height: auto;
  padding: 1px;
}
.image-wall {
  background-image: url("../img/pic/digitai_ban_2_3.jpg");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: center;
  position: relative;
}
.logo-main {
  width: 175px;
  height: auto;
  padding: 1px;
}

/*[ TABLE ]*/
.table_wrapper {
  overflow-x: auto;
}

/*[ TEXT ]*/
.is-text-overlay {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 20%;
}
.is-justified {
  text-align: justify;
}
.text-is-blue {
  color: #37b4fa;
}
.text-is-grey {
  color: gray;
}
.text-is-white {
  color: #ffffff;
}
.text-is-purple {
  color: #9452ea;
}
.mobile-subtitle {
  display: none;
}
.has-text-shadow-white {
  text-shadow: 1px 1px 1px #ffffff;
}
.has-text-shadow-black {
  text-shadow: 2px 2px 4px #000000;
}
.has-text-shadow-brown {
  text-shadow: 1px 1px 1px #b14e46;
}
.text-spacing-title {
  letter-spacing: 0.175rem;
  word-spacing: 0.2rem;
}
.text-spacing-paragraph {
  letter-spacing: 0.08rem;
  word-spacing: 0.1rem;
}
.mobile-wall {
  display: none;
  position: relative;
}
/*[ SPACE ]*/
.is-padded-left {
  padding: 0 0 0 20px;
}
/* [ MEDIA QUERIES] */
@media (min-width: 175px) and (max-width: 768px) {
  .image-wall {
    display: none;
  }
  .mobile-wall {
    display: block;
  }
  img {
    max-width: 250px;
    max-height: auto;
  }
  .card {
    max-width: 350px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .is-text-overlay {
    display: none;
  }
  img {
    max-width: 350px;
    max-height: 300px;
  }
}
