@charset "utf-8";
/*
@font-face {
  font-family: "Roboto";
  src: url(../fns/);
}

@font-face {
  font-display: swap;
  font-family: "Roboto Flex", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 100 900;
  src: url("../fns/roboto-flex-v27-latin-regular.woff2") format("woff2");
}
*/

:root {
  /*main colors*/
  --blue-primary-color: #002877;
  --org-primary-color: #f44b00;

  /*Hover colors*/
  --blue-hover-color: rgba(0, 49, 119, 0.302);

  /*Background colors*/
  --blue-bg-color: rgba(0, 40, 119, 0.9);
  --dark-bg-color: #131a22;

  /*borders*/
  --thin-blue-line: solid 0.5px rgba(0, 40, 119, 0.7);
  --thin-white-line: solid 0.3px rgba(255, 255, 255, 0.15);
  --thin-black-line: solid 0.3px rgba(0, 0, 0, 0.3);
  --radial-white-blue: radial-gradient(white, rgba(255, 255, 255, 0));

  --bdr-r: 5px;

  /*Text colors*/
  --white-text-color: #ffffff;
  --liteGrey-text-color: #cdcdcd;
  --darkgray-fg-color: #333;
  --lbt-color: #c1eaffe8; /*lbt: lite blue text color used over background #092546*/

  /**/
  --blue-button: #0080c0;

  --lta-icon-size: 24px;
  /* Font-weght*/

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  /*reset the default margin for all browsers*/
  padding: 0;
  /*reset the padding for all browsers*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*Begin - Global styles*/
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-style: normal;
  font-synthesis: none;
  direction: ltr;
  letter-spacing: normal;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background-color: #000000;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: auto 0;
  overflow: hidden;
}

li {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a {
  -ms-flex-line-pack: center;
      align-content: center;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

dt {
  font-size: 1.008em;
  margin-top: 1.6em;
  font-weight: 600;
}

dd {
  margin-top: 0.6em;
}

.parrafo {
  font-family: serif;
  font-size: 1.1234em;
  font-style: normal;
  font-weight: 500;
  font-variant: normal;
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-word;
  display: block;
  clear: both;
  margin: 10px;
}

.full-container {
  width: 100%;
  height: 100%;
}

.flex-container {
  display: flex;
}

.f-cr{
  display: flex;
}

.f-ais {
  align-items: stretch;
}

.f-aic {
  align-items: center;
}

.f-jcc {
  justify-content: center;
}

.f-jcsb {
  justify-content: space-between;
}

.f-end {
  justify-content: flex-end;
}

.f-jcs {
  justify-content: flex-start;
}

.f-dc {
  flex-direction: column;
}

.f-dr {
  flex-direction: row;
}

.f-btom {
  align-items: baseline;
}

.grid-container {
  display: -ms-grid;
  display: grid;
}

.svg-wht-fill {
  fill: #ffffff;
}

.svg-org-fill {
  fill: #f44b00;
}

.ec-svg-20x20 {
  width: 20px;
  height: 20px;
  margin-right: 0.3rem;
}

.ec-svg-22x22 {
  width: 22px;
  height: 22px;
  margin-right: 0.3rem;
}

.ec-svg-24x24 {
  width: 24px;
  height: 24px;
  margin-right: 0.3rem;
}





















.link-button {
  color: #f5f5f7;
  opacity: .8;
  background-color: #0080c0;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  padding: 10px 15px;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  outline-offset: -7px;
}

.link-button:hover {
  background-color: #0a7baf;
}

/*End - Global styles*/
/*HOME - TOP - Contact information bar*/
.top-infobar {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 40, 119, 0.5)));
  background-image: linear-gradient(#000000, rgba(0, 40, 119, 0.9));
}

.top-infobar-li{
  margin-right: 0.7rem;
}

/*HOME - TOP - Header nav bar*/
#home-navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  cursor: default;
  color: #f5f5f7;
  background: rgba(0, 40, 119, 0.9);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 3px solid #F44B00;
  z-index: 100;
}

#home-navbar ul {
  padding-left: 30px;
  padding-right: 30px;
}

.lnbm-item {
  float: left;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.rnbm-item {
  float: right;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.full-page-section {
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#home-tit {
  background-image: url(../img/bg-portada.jpg);
}

.home-tit-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-tit-glass {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 40px;
  height: auto;
  width: 700px;
}

.home-section-title {
  margin-bottom: 40px;
  font-size: 3em;
  font-style: normal;
  font-synthesis: none;
  font-weight: 900;
  direction: ltr;
  letter-spacing: -1px;
  line-height: 0.99;
}

.home-tit-title {
  color: white;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: solid 4px #F44B00;
  border-bottom: solid 4px #F44B00;
}

.home-tit-parrafo {
  color: #d0deee;
  text-shadow: 1px 1px 1px black;
}

.home-tit-item {
  margin-top: 25px;
  margin-left: 15px;
  Padding-top: 10px;
  border-top: solid 5px white;
  font-weight: 600;
}

#hssystem {
  background-image: url(../img/banner-sistema.png);
}

.home-system-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.602);
  backdrop-filter: brightness(90%);
  -webkit-backdrop-filter: brightness(90%);
}

.hs-content-wrapper {
  width: 650px;
  padding: 40px;
  border: solid 5px springgreen;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
.home-system-title{

	margin-top: 120px;
}
*/
.home-parrafo {
  width: 900px;
  max-width: 1000px;
}

.home-system-list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.home-system-item {
  padding-right: 30px;
  font-weight: 500;
}

.home-system-item li {
  padding-top: 5px;
}

.home-system-item li ul {
  padding-left: 12px;
}

#hsred {
  background-image: url(../img/banner-red.png);
}

.home-red-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.643);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.section-content {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.002em;
  font-weight: normal;
  letter-spacing: normal;
  text-align: justify;
  word-spacing: normal;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  clear: both;
  white-space: normal;
  color: #146AC0;
  background-color: #002877;
  /*background-image: radial-gradient(circle, #B9C8DD, #002877);*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section-title {
  font-weight: 900;
  font-size: 3em;
  color: #FFFFFF;
  margin-top: 15px;
  margin-bottom: 30px;
}

.section-tit-img {
  width: 100%;
  height: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../img/banner-tit.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-main-content {
  width: 100%;
  height: auto;
  background-color: white;
}

.section-parrafo {
  font-size: 1.1234em;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  word-spacing: normal;
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-word;
  color: #146AC0;
  background-color: white;
  margin-bottom: 30px;
  max-width: 1024px;
}

.section-parrafo-sub {
  /*font-size: 2.5em;*/
  font-size: 2rem;
  font-weight: 600;
  font-style: normal;
  font-variant: normal;
  font-family: Metropolis,Inter,X-LocaleSpecific,sans-serif;
  word-spacing: normal;
  letter-spacing: 1px;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1;
  color: #146AC0;
  background-color: white;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 1024px;
}

.section-tit-dd {
  font-size: 1.1234em;
  max-width: 850px;
}

/* .pcont-wrapper {
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #146AC0;
  background-color: white;
  width: 90%;
  max-width: 1000px;
  margin: 1.6em auto;
  gap: 1.6em;
} */

.col4 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
  text-align: justify;
}

.col1-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-title {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 2em;
  font-weight: 600;
}

/* .col3-people {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
} */

.nos-section {
  background-color: #002877;
  color: #002877;
  width: 100%;
}

.nos-marco-gch {
  -ms-grid-columns: 500px 500px;
      grid-template-columns: 500px 500px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.993);
  row-gap: 30px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: justify;
}

.nos-marco-gc1-3 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}

.nos-gh-card {
  -ms-grid-columns: 370px 370px 370px;
      grid-template-columns: 370px 370px 370px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.nos-gcol1-3 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
}

.nos-gcol1-3-center {
  text-align: center;
}

#nos-bgcard-wrapper {
  height: 550px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #FFFFFF;
  background-image: url(../img/nos-bg-gente.png);
  background-position: center;
  background-size: auto;
}

.nos-card-wrapper {
  background-color: rgba(0, 40, 119, 0.5);
  -webkit-backdrop-filter: brightness(60%);
          backdrop-filter: brightness(60%);
  padding: 30px;
  min-height: 300px;
}

.nos-card-wg-peaple {
  padding-bottom: 15px;
}

.nos-card-wgh {
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.nos-card-wg-img {
  width: 100px;
  background-color: rgba(0, 39, 117, 0.5);
}

.nos-card-wg1-3 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
  padding-top: 12px;
  text-align: justify;
}

.nos-marco-title {
  margin-bottom: 8px;
}

.nos-val-dl {
  margin-top: 0;
  margin-bottom: 0;
}

.nos-val-dt {
  margin-top: 0;
  margin-bottom: 0;
}

.nos-val-dd {
  margin-top: 5px;
  margin-bottom: 10px;
}

.tit-wrapper {
  margin: 0 auto;
  width: 1024px;
}

.dark-glass {
  background-color: rgba(0, 0, 255, 0.424);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tit-grid-set {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-column-gap: 64px;
  width: 1024px;
  margin: 0 auto;
}

.tit-grid-item {
  padding: 20px;
  text-align: left;
}

.tit-grid-item-title {
  padding-bottom: 20px;
  font-size: 1.5em;
}

.tit-grid-item-parrafo {
  padding-bottom: 40px;
}

.grid-item-2col {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}

.tit-grid-ilustracion {
  padding-bottom: 32px;
}

.tit-parrafo-center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.p-sub {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rows-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  row-gap: 60px;
}

.row-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.row-item-wrapper {
  text-align: center;
}

.sys-sm-p {
  width: 450px;
  text-align: center;
}

.net-gch {
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}

.net-girm {
  -ms-grid-row: 1;
      grid-row-start: 1;
  grid-row-end: 5;
}

.net-sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  bottom: 700;
  z-index: 1;
}

.net-sticky-sidebar-blocks {
  margin-bottom: 20px;
}

.net-sticky-sidebar-lista {
  text-align: right;
}

.net-sticky-sidebar-items {
  font-size: 1rem;
  font-style: normal;
  font-variant: normal;
  font-family: Metropolis,Inter,X-LocaleSpecific,sans-serif;
  word-spacing: normal;
  letter-spacing: 1px;
  text-justify: inter-word;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 1024px;
  color: #146AC0;
}

.net-sticky-sidebar-items:hover {
  text-shadow: 1px 0px 0px #146AC0;
  border-bottom: solid 2px #f44B00;
}

.net-art-title {
  color: #146AC0;
  margin-bottom: 15px;
}

.net-col-p {
  width: 700px;
  padding: 0;
}

.flex-container-1col {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-container-2col {
  height: auto;
  width: 360px;
  margin: 15px 0;
}

#footer-wrapper {
  width: auto;
  height: auto;
  padding-top: 40px;
  color: #cecece;
  background-color: #012233ff;
  clear: both;
}

.col-h {
  height: auto;
  width: 270px;
  padding: 15px;
  color: #cecece;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.8em;
  font-weight: 500;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-align: left;
}

.col-h li {
  padding-bottom: 5px;
  font-size: 0.95em;
  font-weight: bold;
  color: #cecece;
}

.col-h li a {
  color: #cecece;
}

.col-h li a:hover {
  color: #0080c0;
  font-size: 1em;
  border-bottom: solid 2px #f44b00;
  padding-left: 2px;
}

.col-h h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.245em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.col-h a h4:hover {
  opacity: 0.7;
}

.col-h p {
  color: #cecece;
  margin-bottom: 15px;
}

.col-h span img {
  margin-top: 3px;
  margin-right: 5px;
  border-radius: 5%;
}

#col-link {
  width: 100px;
}

.footer-content-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#fc-logo {
  padding: 0 20px;
}

#chat-color {
  color: #6aff59;
}

#fmas {
  margin-top: 25px;
}

.footer-bottombar-wrapper {
  width: auto;
  height: auto;
  margin-top: 40px;
  background-color: #111111;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer-copyrightbar {
  width: auto;
  height: auto;
  padding: 45px 0;
}

@media (preferes-reduced-motion: reduce) {
  .ath {
    transition: none;
  }
}

/*0 - 480*/
@media (min-width: 481px) {
/*   .ilogo {
    display: none;
  }

  .logot {
    display: flex;
  } */
}

@media (min-width: 769px){
  .top-infobar{
    display: flex;
  }
}
