/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

/* COLORS
color-ffffff: #FFFFFF;
color-f2a900: #F2A900;
color-0c1823: #0C1823;
color-23243d: #23243D;
color-27476e: #27476E;
color-e5e5e5: #E5E5E5;
color-fccb33: #FCCB33;
*/

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Titillium Web", sans-serif;
  line-height: 1.3;
  position: relative;
}

/* ---------------------------- Navigation bar section ---------------------------- */
.nav-bar {
  background-color: #fccb33;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100px;
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.nav-bar-container {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  margin-left: 50px;
  margin-right: 80px;
}

.nav-bar img {
  height: 70px;
  width: auto;
}

.nav-bar ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-grow: 1;
  flex-direction: row;
  margin-left: 1%;
  max-lines: 1;
}

.nav_link_cnt {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: end;
  transition: all ease 0.5s;
}

.nav_link_cnt :hover {
  transition: all ease 0.3s;
  transform: scale(1.2);
}

.nav_link {
  text-transform: uppercase;
  color: #0c1823;
  font-size: 14px;
  text-decoration: none;
  transition: all ease 0.1s;
  text-align: center;
}

.nb_support_button {
  background-color: #27476e;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 20px;
  transition: all ease 0.3s;
}

.lnk_support_button {
  text-transform: uppercase;
  padding: 10px 15px 10px 15px;
  color: #e5e5e5;
  font-size: 14px;
  text-decoration: none;
  transition: all ease 0.1s;
}

.nb_support_button:hover {
  transition: all ease 0.3s;
  transform: scale(1.2);
}

/* ---------------------------- Side  Bar Active Logic---------------------------- */

.side-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  background-color: #27476e;
  z-index: 1;
  transition: all ease 0.5s;
}
.side-menu-button {
  position: fixed;
  display: flex;
  top: 0px;
  left: 270px;
  border-radius: 10px;
  background-color: #fccb33;
  width: 35px;
  height: 35px;
  transition: all ease 0.5s;
  box-shadow: 2px 0px 10px 5px rgba(0, 0, 0, 0.2);
}

.nav_link {
  color: #0c1823;
  font-size: 14px;
}

.side-menu-icon {
  margin: auto auto;
  width: 30px;
  height: 30px;
}
.side-bar-container img {
  margin: auto auto;
  width: 200px;
  transition: all ease 0.5s;
}

.side-bar .nav-links-bar {
  transition: all ease 0.5s;
}

/* ---------------------------- Side  Bar Inactive Logic---------------------------- */

.side-bar.close {
  width: 0px;
  transition: all ease 0.5s;
}

.side-bar.close .side-menu-button {
  top: 0px;
  left: 0px;
  transition: all ease 0.5s;
}

.side-bar.close .side-bar-container img {
  width: 1px;
  display: none;
  transition: all ease 0.5s;
}

.side-bar.close .nav-links-bar {
  display: none;
  transition: all ease 2s;
}

/* ---------------------------- First Container section ---------------------------- */
.contact-consultant-section {
  display: flex;
  background-color: #0c1823;
  position: relative;
}

.section-vid {
  width: 100%;
  object-fit: cover;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  overflow: hidden;
}

.container-carousel {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 0px auto 0px auto;
  top: 30%;
  border: solid thin red;
}

.carruseles {
  display: flex;
}

.mask > .div {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  margin: auto;
  padding-right: 60px;
  padding-left: 60px;
  bottom: 20%;
  padding-top: 128px;
}
.fakeH1 {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 35px;
  transition: 0.2s;
}
.fakeH3 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  transition: 0.3s;
}

.contact-us-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 40px;
  width: 120px;
  height: 50px;
  gap: 20px;
  border: solid #fff 3px;
  transition: all ease 0.2s;
}

.contact-us-button-text {
  font-size: 16px;

  color: #e5e5e5;
  text-decoration: none;
}

.contact-us-button:hover .contact-us-button-text,
.contact-us-button:hover {
  transition: all ease 0.2s;
  background-color: #fff;
  cursor: pointer;
  color: #0c1823;
}

/* ---------------------------- Services section   ---------------------------- */
.services-section {
  background-color: #e5e5e5;
}
.servicess-title {
  width: 100%;
  display: flex;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
}

.servicess-title h2 {
  color: #27476e;
  font-size: 32px;
}

.card-section {
  width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
}

.cards-group-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.cards-group-2 {
  display: flex;
}

.services-card {
  display: flex;
  background-color: #20283a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20vh;
  height: 27vh;
  margin: 30px;
  box-shadow: 15px 10px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  border: solid 1px #0c1823;
  transition: all 0.5s ease;
}

.services-card img {
  width: 18vh;
}

.services-card:hover {
  transform: translate(0, -10%);
  transition: all 0.5 ease;
  box-shadow: 30px 25px 5px rgba(0, 0, 0, 0.2);
}

.services-card h3 {
  text-align: center;

  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ---------------Clients section--------------------------- */

.clients-section h2 {
  width: 100%;
  text-align: center;
  color: #27476e;
  margin-top: 60px;
  margin: 0px auto 70px auto;
  padding-top: 40px;
  font-size: 32px;
}

.clients-image {
  max-width: 900px;
  margin: 0px auto 0px auto;
  padding-bottom: 100px;
  display: flex;
}

/* ---------------------------- News section ---------------------------- */

.news-section {
  height: 50px;
}

/* ---------------------------- Identity-as-service-section   ---------------------------- */
.identity-as-service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.identity-as-service-section div {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 50px 0px 50px 0px;
}

.identity-as-service-section h2 {
  color: #fccb33;
  font-size: 44px;
  text-align: center;
}

.identity-as-service-section p {
  width: 610px;
  color: #fff;
  line-height: 1.5;
  font-size: 20px;
  margin-top: 20px;
  text-align: justify;
}

.identity-as-service-section img {
  width: 100%;
  height: 450px;
  position: relative;
}

/* ---------------------------- Experience section   ---------------------------- */
.experience-section {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: #fccb33;
  height: 300px;
}

.experience-section .back-ground-img {
  width: 100%;
  height: 500px;
  display: none;
}

.experience-section p {
  width: 650px;
  color: #27476e;
  margin-top: 60px;
  margin-bottom: 50px;
  font-size: 24px;
  text-align: justify;
}

.experience-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ---------------------------- Ecosistem of solutions section   ---------------------------- */
.ecosistem-of-solutions-section {
  display: flex;
  flex-direction: column;
  background-color: #e5e5e5;
  padding: 50px;
}

.ecosistem-of-solutions-section-title {
  color: #27476e;
  margin-top: 50px;
  font-size: 32px;

  margin-left: auto;
  margin-right: auto;
}

.flow-img {
  width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}

.ecosistem-of-solutions-text {
  margin: auto auto;
  margin-top: 60px;
  color: #0c1823;
  width: 950px;
  text-align: justify;
  font-size: 20px;
}

.services-group-title {
  display: none;
}

.services-group-image {
  display: none;
}

.flow-platform {
  margin: 50px auto auto auto;
  display: flex;
}

.flow-title {
  margin-top: 130px;
  color: #27476e;
  margin-left: 30px;
}

.flow-platform-img {
  width: 30%;
  height: 10%;
}

.flow-platform-text {
  margin: 20% 0px auto 30px;
  width: 600px;
  text-align: justify;
  font-size: 20px;
}

.information-button {
  margin-left: 30px;
  display: flex;
  background-color: #fccb33;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 20px;
  width: 150px;
  height: 50px;
  gap: 20px;
  border: solid #fff 3px;
  transition: all ease 0.3s;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.information-button-text {
  font-size: 16px;
  color: black;

  text-decoration: none;
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

.information-button:hover {
  transition: all ease 0.3s;
  background-color: #fff;
  border: solid #0c1823 3px;
  cursor: pointer;
}

.biometric-devices-container {
  width: 100%;
  margin: 180px auto auto 26px;
  display: flex;
}

.biometric-devices {
  margin: 10% 48px auto;
}

.devices-title {
  margin-top: 70px;
  color: #27476e;
}

.biometric-devices-text {
  max-width: 600px;
  min-width: 300px;
  text-align: justify;
  font-size: 20px;
}

.devices-list-container {
  display: flex;
  max-width: 500px;
}

.devices-list {
  margin-top: 50px;
  width: 500px;
  gap: 100px;
}

.devices-list-head {
  margin-bottom: 24px;
  font-size: 20px;
}

.list-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-transform: uppercase;
}

.list-1 span {
  color: #27476e;
}

.list-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-transform: uppercase;
}

.list-2 span {
  color: #27476e;
}

.runt-platform {
  display: flex;
  align-items: center;
  justify-content: center;
}

.runt-title {
  margin-top: 130px;
  color: #27476e;
  margin-left: 30px;
}

.runt-platform-text {
  margin: auto auto auto 32px;
  width: 500px;
  text-align: justify;
  font-size: 20px;
}

/* ---------------------------- Fields of action   ---------------------------- */

.fields-of-action-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.fields-of-action-title {
  color: #27476e;
  font-size: 32px;

  margin-top: 80px;
}

.flow-services-img {
  padding-top: 40px;
  width: 900px;
  margin: auto auto;
}
/* ---------------------------- Patents ---------------------------- */

.patents-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.patents-section img {
  width: 100%;
  height: 30vh;
  position: relative;
}

.text-container {
  position: absolute;
  text-align: center;
}

.main-text {
  color: #fff;
  font-size: 28px;
}

.secondary-text {
  color: #fff;
  margin-top: 30px;
  font-size: 32px;
}

/* ---------------------------- Alies section  ---------------------------- */
.allies-section {
  display: flex;
  justify-content: space-evenly;
  background-color: #e5e5e5;
}

.allies-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0px;
  gap: 50px;
}

.allies-container h2 {
  color: #27476e;

  font-size: 32px;
}

.allies-carousel {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
  gap: 100px;
}

.allies-carousel img {
  height: 30px;
  width: auto;
}

.members-container {
  margin: 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.members-container h2 {
  color: #27476e;

  font-size: 32px;
}

.members-container img {
  height: 40px;
  width: auto;
}

/* ---------------------------- Certifications section  ---------------------------- */

.certifications-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto 50px auto;
}
.certifications-container h2 {
  color: #27476e;

  font-size: 32px;
}

.certifications-container span {
  margin-top: 18px;
  color: #27476e;

  font-size: 24px;
}

.certifications-container img {
  margin-top: 50px;
  width: 600px;
}

/* ---------------------------- FOOTER  ---------------------------- */

/* ---------------------------- footer related links section ---------------------------- */

.related-links-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  background-color: #23243d;
}
.related-links-section img {
  width: 50vh;
  height: 15vh;
}

.related-links-container {
  display: flex;
  gap: 100px;
}

.related-links {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.related-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-links ul li {
  list-style: none;
}

.related-links ul li a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.related-links ul li a:hover {
  color: #f2a900;
}

.cell-number {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

.cell-number p {
  color: #fff;
}

.number {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.number p {
  color: #fff;
}

.user-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

.mail {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.mail p {
  color: #fff;
}

.mail-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

.direction {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.direction p {
  color: #fff;
}

.direction-icon {
  width: 28px;
  height: 28px;
  stroke: #f2a900;
}

/* ---------------------------- footer copyright section ---------------------------- */

.copyright-section p {
  background-color: #fccb33;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  font-size: 10px;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* ---------------------------- / Responsive ---------------------------- */
@media (max-width: 1750px) {
  .assistance-container {
    top: 20%;
    left: 50%;
    width: 600px;
  }
}

@media (max-width: 450px) {
  .nav-bar {
    display: none;
  }

  .side-bar {
    display: block;
  }

  .nav_link {
    color: #e5e5e5;
  }

  /* -------- Boton de soporte en side bar ------- */
  .nb_support_button {
    background-color: #27476e;
    border-radius: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 0px;
    transition: none;
  }

  .lnk_support_button {
    text-transform: uppercase;
    padding: 0px 0px 0px 0px;
    color: #e5e5e5;
    font-size: 14px;
    text-decoration: none;
    transition: all ease 0.1s;
  }

  /* -------- Boton de soporte en side bar ------- */
  .assistance-container {
    display: none;
  }

  /* ---------------------------- FIRST section ---------------------------- */

  .clients-section h2 {
    color: #27476e;
    margin-top: 36px;
    font-size: 24px;
  }

  .wrapper {
    max-width: 400px;
  }

  .clients-slider {
    margin-bottom: 30px;
  }

  .clients-slider img {
    height: 100px;
    width: 100px;
  }

  .mask > .div {
    bottom: 10%;
  }

  .fakeH1 {
    display: none;
  }
  .fakeH3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    transition: 0.3s;
  }

  .contact-us-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    border-radius: 40px;
    width: 120px;
    height: 50px;
    gap: 20px;
    border: solid #fff 1px;
    transition: all ease 0.2s;
  }

  .contact-us-button-text {
    font-size: 16px;

    color: #e5e5e5;
    text-decoration: none;
  }

  .fakeH1 {
    display: none;
  }
  .fakeH3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: 0.3s;
  }

  .contact-us-button {
    width: 80px;
    height: 20px;
  }

  .contact-us-button-text {
    font-size: 10px;
  }

  /* ---------------------------- Services section   ---------------------------- */

  .servicess-title h2 {
    color: #27476e;
    font-size: 24px;
  }

  .cards-group-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  }

  .services-card {
    width: 15vh;
    height: 20vh;
    margin: 10px;
  }

  .services-card img {
    width: 10vh;
  }

  /* ---------------Clients section--------------------------- */

  .clients-section h2 {
    width: 100%;
    text-align: center;
    color: #27476e;
    margin-top: 60px;
    margin: 0px auto 10% auto;
    padding-top: 40px;
    font-size: 24px;
  }

  .clients-image {
    max-width: 90%;
    margin: 0px auto 0px auto;
    padding-bottom: 10%;
    display: flex;
  }

  /* ---------------------------- Identity-as-service-section   ---------------------------- */

  .identity-as-service-section h2 {
    color: #fccb33;
    font-size: 24px;
    text-align: center;
  }

  .identity-as-service-section p {
    margin: auto auto;
    width: 80%;
    font-size: 16px;
    text-align: justify;
  }

  .identity-as-service-section img {
    height: 50vh;
  }

  /* ---------------------------- Ecosistem of solutions section   ---------------------------- */
  .ecosistem-of-solutions-section {
    padding: 5%;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }

  .ecosistem-of-solutions-section-title {
    margin-top: 10%;
    font-size: 24px;
  }

  .flow-img {
    width: 90%;
    margin-top: 10%;
  }

  .ecosistem-of-solutions-text {
    margin: 10% auto auto auto;

    color: #0c1823;
    width: 90%;
    text-align: justify;
    font-size: 16px;
  }

  .services-group-title {
    margin: 50px auto auto auto;
    color: #27476e;
    font-size: 22px;
  }

  .services-group-image {
    margin: 50px auto auto auto;
    width: 80%;
    box-shadow: 3px 3px 10px 10px rgba(0, 0, 0, 0.2);
    border-radius: 45px;
  }

  .flow-platform {
    margin: 10% auto auto auto;
    display: flex;
    flex-direction: column;
  }

  .flow-title {
    margin: 10% auto auto auto;
  }

  .flow-platform-img {
    width: 70%;
    margin: auto auto;
  }

  .flow-platform-text {
    margin: 10% auto auto auto;
    width: 90%;
    font-size: 16px;
  }

  .information-button {
    margin: 10% auto auto auto;
    width: 70%;
    height: 30px;
  }

  .information-button-text {
    font-size: 14px;
  }

  .arrow-icon {
    display: none;
  }

  .biometric-devices-container {
    width: 100%;
    margin: 10% auto auto auto;
    display: flex;
    flex-direction: column;
  }

  .biometric-devices {
    margin: 10% auto auto auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .devices-title {
    margin: 10% auto auto auto;
    font-size: 16px;
  }

  .biometric-devices-text {
    width: 90%;
    text-align: justify;
    font-size: 16px;
  }

  .devices-list-container {
    display: flex;
    width: 90%;
  }

  .devices-list {
    width: 100%;
    display: flex;
  }

  .list-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase;
  }

  .list-1 span {
    color: #27476e;
    font-size: 16px;
  }

  .list-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase;
  }

  .list-2 span {
    color: #27476e;
    font-size: 16px;
  }

  .runt-platform {
    margin: auto auto auto auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .runt-title {
    margin: 10% auto auto auto;
    color: #27476e;
  }

  .runt-platform-img {
    margin: auto auto auto auto;
    width: 80%;
  }

  .runt-platform-text {
    margin: 10% auto auto auto;
    width: 90%;
    text-align: justify;
    font-size: 16px;
  }

  /* ---------------------------- Experience section   ---------------------------- */

  .experience-section .back-ground-img {
    height: 20vh;
  }

  .experience-section p {
    width: 80%;
    font-size: 16px;
    text-align: justify;
  }

  /* ---------------------------- Fields of action   ---------------------------- */

  .fields-of-action-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px;
  }

  .fields-of-action-title {
    margin: 10% auto auto auto;
    color: #27476e;
    font-size: 24px;
  }

  .flow-services-img {
    width: 90%;
    margin: 10% auto 10% auto;
    padding: 0px;
  }
  /* ---------------------------- Patents ---------------------------- */

  .patents-section img {
    width: 100%;
    height: 30vh;
    position: relative;
  }

  .main-text {
    font-size: 24px;
  }

  .secondary-text {
    font-size: 28px;
  }

  /* ---------------------------- Alies section  ---------------------------- */
  .allies-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .allies-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .allies-container h2 {
    color: #27476e;
    font-size: 24px;
  }

  .allies-carousel {
    display: flex;
    gap: 30px;
  }

  .allies-carousel img {
    height: 25px;
    width: auto;
  }

  .members-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .members-container h2 {
    color: #27476e;
    font-size: 24px;
  }

  .members-container img {
    height: 40px;
    width: auto;
  }
  /* ---------------------------- Certifications section  ---------------------------- */

  .certifications-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px auto 50px auto;
  }
  .certifications-container h2 {
    color: #27476e;
    font-size: 24px;
  }

  .certifications-container span {
    margin-top: 18px;
    color: #27476e;
    font-size: 20px;
  }

  .certifications-container img {
    margin-top: 50px;
    width: 90%;
  }

  /* ---------------------------- FOOTER  ---------------------------- */

  /* ---------------------------- footer related links section ---------------------------- */

  .related-links-section {
    padding: 50px 30px;
  }
  .related-links-section img {
    display: none;
  }

  .related-links-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .related-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
