/*
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 {
  transition: all ease 2s;
  display: none;
}

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

/* ---------------------------- FLOW section ---------------------------- */

.flow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  gap: 32px;
  margin-bottom: 96px;
}

.flow-content h2 {
  color: #27476e;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.flow-content p {
  text-align: justify;
  font-size: 20px;
  line-height: 1.5;
}

/* ---------------------------- Main Features section ---------------------------- */

.main-features {
  background-color: #fccb33;
}
.main-features-title {
  width: 100%;
  display: flex;
  padding-top: 80px;
  justify-content: center;
  align-items: center;
}

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

.card-section {
  width: 100%;
  margin-top: 50px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
}

.group-1 {
  display: flex;
}

.group-2 {
  display: flex;
}

.services-card {
  display: flex;
  background-color: #20283a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25vh;
  height: 30vh;
  margin: 16px;
  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: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;
}

/* ---------------------------- Flow Image Section ---------------------------- */

.flow-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  background-color: #e5e5e5;
}

.flow-img {
  width: 550px;
  height: 350px;
}

/* ---------------------------- Patents ---------------------------- */

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

.text-container {
  position: absolute;
  text-align: center;
  width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.download-button {
  display: flex;
  background-color: #fccb33;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 20px;
  width: 260px;
  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);
  display: none;
}

.download-button-text {
  font-size: 16px;
  font-weight: bolder;
}

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

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

/* ---------------------------- Where To Use Section ---------------------------- */
.where-to-use-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.where-to-use-text {
  margin-top: 80px;
  width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
}
.where-to-use-text h2 {
  color: #27476e;
  font-size: 32px;
}

.where-to-use-text p {
  font-size: 20px;
  text-align: justify;
}

.where-to-use-images-container {
  /*Wrapper*/
  margin-top: 80px;
  margin-bottom: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.component-image {
  /*image*/
  width: 50vh;
  position: relative;
}

.component-image img {
  width: 100%;
  display: block;
  margin: auto;
}

.component-text {
  /*content*/
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.6s;
}

.component-text:hover {
  opacity: 1;
}

.component-text h3 {
  color: #27476e;
  font-size: 32px;
}

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

  /* ---------------------------- FLOW section ---------------------------- */

  .flow-section img {
    width: 80%;
  }
  .flow-content {
    width: 70%;
  }

  .flow-content h2 {
    margin-bottom: 10px;
  }

  .flow-content p {
    text-align: justify;
    font-size: 16px;
  }

  .flow-img {
    width: 250px;
    height: auto;
  }

  /* ---------------------------- Main Features section ---------------------------- */

  .servicess-title h2 {
    font-size: 24px;
  }

  .card-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .group-1 {
    display: flex;
  }

  .group-2 {
    display: flex;
  }

  .services-card {
    width: 25vh;
    height: 10vh;
    margin: 5px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
  }

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

  .services-card h3 {
    font-size: 14px;
  }

  /* ---------------------------- Patents ---------------------------- */
  .patents-section img {
    height: 35vh;
  }

  .text-container {
    width: 70%;
  }

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

  .secondary-text {
    margin-top: 30px;
    font-size: 16px;
    text-align: justify;
  }

  /* ---------------------------- Where To Use Section ---------------------------- */

  .where-to-use-text {
    margin-top: 80px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
  .where-to-use-text h2 {
    color: #27476e;
    font-size: 24px;
  }

  .where-to-use-text p {
    font-size: 16px;
    text-align: justify;
  }

  .where-to-use-images-container {
    /*Wrapper*/
    margin-top: 80px;
    margin-bottom: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .component-image {
    /*image*/
    width: 12vh;
    position: relative;
  }

  .component-image img {
    width: 100%;
    display: block;
    margin: auto;
  }

  .component-text {
    /*content*/
    display: none;
  }

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