/*
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;
}

/* ---------------------------- 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;
  font-weight: bolder;
  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;
  font-weight: bolder;
}

.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: 240px;
  background-color: #27476e;
  z-index: 1;
  transition: all ease 0.5s;
}
.side-menu-button {
  position: fixed;
  display: flex;
  top: 0px;
  left: 220px;
  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);
}

.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;
}

.nb_support_button {
  margin-left: 0px;
}

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

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

.side-bar.close .side-menu-button {
  top: 0px;
  left: -10px;
  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;
}
/* ---------------------------- Index Bar section ---------------------------- */
.index-bar-section {
  display: inline-block;
  margin-left: 80px;
  padding-top: 130px;
  padding-bottom: 30px;
  color: #27476e;
}

.index-bar-section span {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
}

.index-bar-section a {
  color: #27476e;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  cursor: default;
}

/* ---------------------------- Biometric Devices Section ---------------------------- */
.biometric-devices-section {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: center;
  justify-content: center;
}

.text-container {
  width: 90%;
}

.text-container h1 {
  color: #27476e;
  font-size: 36px;
}

.text-container p {
  font-size: 20px;
  padding-top: 30px;
}

.devices-container {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  gap: 64px;
}

.device-row {
  display: flex;
  gap: 64px;
}

.device-card-wrapper {
  height: auto;
  max-width: 50vh;
  height: auto;
  border: 0.1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;

  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.device-card-wrapper:hover {
  box-shadow: 2px 2px 10px 4px rgba(35, 36, 61, 1);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.card h2 {
  color: #27476e;
}

.card img {
  width: 20vh;
}

.card h3 {
  color: #27476e;
  font-size: 24px;
}

.card p {
  width: 100%;
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}

.card a {
  text-decoration: none;
  color: inherit;
}

.information-button {
  /* margin-left: 30px; */
  display: flex;
  background-color: #fccb33;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 20px;
  width: 200px;
  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;
  font-weight: bold;
}

.download-icon {
  width: 24px;
  height: 24px;
  stroke: #27476e;
}

.information-button:hover {
  transition: all ease 0.3s;
  background-color: #fff;
  border: solid #0c1823 3px;
  cursor: pointer;
}
/* ---------------------------- 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: 450px) {
  .nav-bar {
    display: none;
  }

  .side-bar {
    display: block;
  }

  /* -------- Boton de soporte en side bar ------- */

  .nav_link {
    color: #e5e5e5;
  }
  .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;
    font-weight: bolder;
  }
  /* ---------------------------- Index Bar section ---------------------------- */
  .index-bar-section {
    display: inline-block;
    margin-left: 50px;
    margin-right: 40px;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .index-bar-section span {
    font-size: 12px;
  }

  .index-bar-section a {
    font-size: 12px;
  }

  /* ---------------------------- Biometric Devices Section ---------------------------- */

  .biometric-devices-section {
    padding-top: 30px;
  }

  .text-container h1 {
    font-size: 24px;
    text-align: center;
  }

  .text-container p {
    text-align: justify;
  }

  .device-row {
    display: flex;
    flex-direction: column;
  }

  .device-card-wrapper {
    width: 40vh;
  }

  .card img {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 14vh;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 16px;
  }

  .information-button {
    margin-left: 0px;
    display: flex;
    background-color: #fccb33;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    border-radius: 20px;
    width: 200px;
    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;
    font-weight: bold;
  }

  .download-icon {
    width: 24px;
    height: 24px;
    stroke: #27476e;
  }

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

  /* ---------------------------- 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;
  }
}

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

/* ---------------------------- / Responsive ---------------------------- */

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

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