
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #005388;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #005388;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.volver-principio {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.volver-principio i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #005388;
  color: #fff;
  transition: all 0.4s;
}

.volver-principio i:hover {
  background: #3284f1;
  color: #fff;
}



#topbar {
  background: #005388;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}


#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  top: 0;
  padding: 15px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #005388;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}


/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #222222;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #005388;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #005388;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #005388;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}



/* Hero Section */
#hero {
  width: 100%;
  height: 478px;
  background: url("../img/background/03.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero.info {
  background: url("../img/background/info.png") top left;
}

#hero:before {
  content: "";
//  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 132px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #005388;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-a-estampar {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #005388;
}

#hero .btn-a-estampar:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px 8px 40px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  position: relative;
  font-weight: 600;
}

#hero .btn-watch-video i {
  color: #005388;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover {
  color: #005388;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}


@media (max-width: 768px) {
  #hero {
    margin-top: 0px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-a-estampar {
    font-size: 13px;
  }
}
@media (max-width: 515px) {
  #hero {
    height: 436px;
    margin-top: 57px;
    padding-top: 0PX;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #005388;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #005388;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}


/* Contador */
.contador {
  padding: 70px 0 60px;
}

.contador .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.contador .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #005388;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}

.contador .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.contador .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/* Aportes */
.aportes {
  padding: 15px 0;
  text-align: center;
}

.aportes img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.aportes img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .aportes img {
    max-width: 40%;
  }
}

/* Footer */
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;

}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #005388;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #005388;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #005388;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #005388;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #005388;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
/************************************************************/

.fas.fa-file-download:before {
    padding: 0px 3px;
}


@media (max-width: 992px) {
    header >  div.container{
      position:relative;
    }

    .toggle-nvar{
      border:none;
      background:none;
      position:absolute;
      right: 15px;
      z-index: 99;
    }
    .toggle-nvar:focus{
      outline:none;
    }

    header > div.container{
      display:table !important;
    }
    header > div.container > h1{
      display:table-row;
      width:100%;
    }
    header > div.container > .nav-menu{
      display:table-row;
       width:100%;
    }

    header > div.container > .nav-menu > ul{
      display:inline-block !important;

       width:100%;
    }
    header > div.container > .nav-menu > ul > li{
     float:left;
     width:100%;
     padding: 10px 0 10px 0px !important;
    }
    header > div.container > .nav-menu.hidden{
      display:none;
    }

    header > div.container > .nav-menu.block{
      display:block;
    }
}

/* seccion de estampado */


.contenedorZonaArrastre,.contenedorZonaArrastreEstampado {
	cursor: pointer;
    position: relative;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
    height: 185px;
    padding-top: 100px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 3px dashed #95b5d9;
    background-color: #fff;
    color: #005388;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.contenedorZonaArrastre::before,.contenedorZonaArrastreEstampado::before{
  content: "\f15c";
  font-size: 50px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 30px;
  position: absolute;
  width: 100%;
  left: 0px;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.contenedorZonaArrastre:hover,.contenedorZonaArrastreEstampado:hover {
    border-color: #005388;
}

input{
   display:none;
}
.stamp-and-verify-block-title{
    text-transform: uppercase;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
body{
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans',sans-serif;
    -webkit-font-smoothing: antialiased;
}
.estado-estampando, .estados_hashing, .estados_success {
    border-color: #005388;
    background-color: #f2f6fb;
    color: #005388;
}
.estados {
    position: relative;
    margin-top: 20px;
    border-width: 1px;
    border-style: solid;
    padding: 15px 15px 15px 50px;
}
.estado-estampando:before, .estados_hashing:before {
    width: 18px;
    height: 24px;
    background-position: 0 -24px;
}
.estados_hashing:before {
    -webkit-animation: rotating 2s linear infinite;
}
.estados:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 17px;
    background-image: url(../images/estados.png);
}
.hash{
	margin-top: 0px;
  word-break: break-all
}
.estado-container > div {
    position: relative;
    margin-top: 20px;
    border-width: 1px;
    border-style: solid;
    padding: 15px 80px 15px 50px;
}

.estado-container > div[procesando]::before{
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 21px;
  width: 30px;
  height: 30px;
  content: "\f2f1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.estado-container > div[subiendo]::before{
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 21px;
  width: 30px;
  height: 30px;
  content: "\f382";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  animation: pulse 2s infinite;
}

.estado-container > div[descarga]::before{
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 21px;
  width: 30px;
  height: 30px;
  content: "\f381";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  animation: pulse 2s infinite;
}

.estado-container > div[exito]::before{
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 21px;
  width: 30px;
  height: 30px;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}

.estado-container > div[pendiente]::before{
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 21px;
  width: 30px;
  height: 30px;
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
.estado-container > div[valido]::before{
  position: absolute;
  left: 15px;
  top: 17px;
  font-size: 21px;
  width: 30px;
  height: 30px;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}

.estado-container > div[invalido]::before,.estado-container > div[error]::before {
    position: absolute;
    left: 15px;
    top: 17px;
    font-size: 21px;
    width: 30px;
    height: 30px;
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #d1071a;
}
.estado-estampando[invalido],.estado-estampando[error]{
  color:#d1071a;
  border-color: #d1071a;
  background-color: #f8f1f2;
  color: #d1071a;
}
.estado-titulo{
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  height: 30px;
  display: table-cell;
  vertical-align: middle;
}


#estamYVal .subtitulo{
  display: inline-block;
  padding-bottom: 20px;
}

#estamYVal .subtitulo > p{
  margin-bottom: 0px;
  float:left;
}

#estamYVal .subtitulo .btn-group.validar-contra{
  float: left;
  margin-left: 14px;
}

#estamYVal .subtitulo .btn-group.validar-contra .btn{
  height: 23px;
  font-size: 12px;
  padding: 2px 10px;
}
#estamYVal .subtitulo .btn-group.validar-contra .btn[seleccionado]{
    box-shadow: none !important;
    background: #005388  !important;
    border-color: #005388  !important;
}

#estamYVal .subtitulo .btn-group.validar-contra .btn:focus{
    box-shadow: none !important;
}

.estado-estampando .info{
    position: absolute;
    right: 25px;
    top: 17px;
    width: 30px;
    height: 30px;
    cursor:pointer;
}
.estado-estampando .info:before {
    font-size: 21px;
    float: left;
    content: "\f06a";
    font-family: "Font Awesome 5 Free";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #005388;
    font-weight: 900;
    width: 100%;
    margin: 0px auto;
}

.estado-estampando .descarga-ots{
    position: absolute;
    right: 25px;
    top: 51px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
}

.estado-estampando .descarga-ots:before{
     font-size: 21px;
    float: left;
    content: "\f358";
    font-family: "Font Awesome 5 Free";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #005388;
    font-weight: 900;
    width: 100%;
    margin: 0px auto;
}
.toggle-nvar{
    height: 28px;
}

/* info */

#hero.info {
  text-align:center;
  color: #fff;
}
#hero.info .timestamp-of{
    margin: 35px 0;
    line-height: 50px;
    font-size: 28px;
}

#hero.info .timestamp-of span {

    border: 1px solid rgba(255,255,255,0.5);
    padding: 0 15px;
    background-color: rgba(255,255,255,0.2);
    font-weight: bold;
}

#hero.info .document-digest {
    margin-bottom: 15px;
    font-size: 14px;
}
#hero.info .sha {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: bold;
}
#hero.info .btn-download-ots{
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #005388;
    background: #fff;
    cursor:pointer;
}

#hero.info .btn-download-ots:hover{
   opacity: .9;
}

#hero.info .container {
  position: relative;
  padding-top: 55px;
}


table.info {
  display:block;
}
table.info > tbody{
  display:block;
  position: relative;
}
table.info > tbody > tr{
  display: inline-table;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e3e3e3;
}
table.info  > tbody > tr > td{
  display: inline-block;
  text-align: left;
}
table.info > tbody > tr > td:nth-child(1)  {
  width: 20%;
}
table.info > tbody > tr > td:nth-child(2) {
  width:80%;
  white-space: pre-wrap;
  text-overflow: initial;
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px){
#estamYVal .subtitulo .btn-group.validar-contra {
    margin-left: 0px;
    width: 100%;
    padding-top: 20px;
}

@media (max-width: 768px) {
  .aportes .container > div > div {
      padding: 15px 0px;
  }
}

@media (max-width: 547px){
  .toggle-nvar{
    top: 13px;
  }
}

@keyframes pulse {
  0% {
   color: #005388;
  }
  50% {
    color: #00538800;
  }
  100% {
    color: #005388;
  }
}
