@import url("https://fonts.googleapis.com/css?family=Poppins:400,900i");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  color: black;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 120;
  font-family: "Poppins";
}

@media (max-width: 600px) {
  .navbar {
    text-align: left;
  }
}

.navbar .navContainer {
  border-bottom: 2px solid #0055a5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar .main {
  background: -webkit-gradient(linear, left top, left bottom, from(#055e99), to(#00538a));
  background: linear-gradient(to bottom, #055e99 0%, #00538a 100%);
}

.navbar .main .links {
  float: right;
  position: relative;
  margin-right: 5px;
}

@media (max-width: 600px) {
  .navbar .main .links {
    display: none;
  }
}

.navbar .main .links .link {
  display: inline-block;
  padding: 0.8em 0.5em;
  cursor: pointer;
  position: relative;
  color: white;
  text-decoration: none;
}

.navbar .main .links .link .title {
  opacity: 0.9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.navbar .main .links .link:hover .title {
  opacity: 1;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.795);
          text-decoration-color: rgba(255, 255, 255, 0.795);
}

.navbar .main .links .link:hover .sublinks {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar .main .links .link .sublinks {
  visibility: hidden;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  position: absolute;
  right: 0.8em;
  top: 100%;
  opacity: 0;
  min-width: 220px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.377);
          box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.377);
}

.navbar .main .links .link .sublinks a {
  display: block;
  color: white;
  text-decoration: none;
  background: #014592;
  padding: 0.7em 1em;
  position: relative;
}

.navbar .main .links .link .sublinks a:hover {
  background: #012d5f;
}

.navbar .logo {
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-style: italic;
  display: inline-block;
  text-align: left;
  font-size: 1.35em;
  color: white;
  padding: 0.2em 0.5em;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}

.navbar .logo .spy {
  color: white;
  text-shadow: 1px 1px 1px #000, 1px 1px 1px rgba(0, 0, 0, 0.051);
}

.navbar .logo img {
  position: absolute;
  right: -25px;
  top: 1px;
  z-index: -2;
  width: 60px;
}

.navbar .logo .sub {
  font-size: 0.5em;
  font-style: normal;
  margin-top: -7px;
  font-weight: lighter;
  letter-spacing: 0;
}

.navbar .toggle {
  position: fixed;
  right: 0;
  color: white;
  padding: 0.1em 0.35em;
  font-size: 1.4em;
  margin: 0.2em;
  margin-top: 0.28em;
  cursor: pointer;
  z-index: 10000;
  text-shadow: 0px 1px 0px black;
}

@media (min-width: 601px) {
  .navbar .toggle {
    display: none;
  }
}

.navbar .linkContainer {
  display: block;
  text-align: right;
  height: 0;
  background: #00265f;
  background: radial-gradient(ellipse at 20% -50%, #0042a5 0%, #00183d 100%);
  overflow-y: hidden;
  color: white;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 110%;
}

@media (min-width: 880px) {
  .navbar .linkContainer {
    display: none;
  }
}

.navbar .linkContainer .dropdown {
  cursor: pointer;
  font-size: 110%;
}

.navbar .linkContainer .dropdown .title {
  padding: 0.8em 0.5em;
  font-size: 0.95em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.navbar .linkContainer .dropdown .title a {
  color: white;
  text-decoration: none;
  display: block;
}

.navbar .linkContainer .dropdown .title:hover {
  background: rgba(0, 101, 196, 0.221);
  border-bottom: 2px solid rgba(255, 255, 255, 0.129);
}

.navbar .linkContainer .dropdown .title i {
  opacity: 0.6;
  margin-left: 0.5em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar .linkContainer .dropdown .content {
  margin-top: 0;
  font-size: 0.9em;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navbar .linkContainer .dropdown .content a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  padding-right: 1em;
  font-size: 0.95em;
}

.navbar .linkContainer .dropdown .content a:hover {
  background: rgba(11, 96, 175, 0.258);
}

footer {
  margin-top: 3em;
  color: white;
  background: #1b1b1b;
  background: -webkit-gradient(linear, left top, left bottom, from(#003c64), to(#002e4c));
  background: linear-gradient(to bottom, #003c64 0%, #002e4c 100%);
  padding: 0.4em 1em;
  border-top: 2px solid rgba(255, 255, 255, 0.178);
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer p {
    margin-bottom: 0.3em;
  }
  footer .logo {
    margin-bottom: 0.8em;
  }
}

footer .logo {
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-style: italic;
  display: inline-block;
  font-size: 1.3em;
  color: white;
  padding: 0.2em 0.5em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

footer .logo:hover {
  opacity: 1;
}

footer .logo .spy {
  color: white;
  text-shadow: 1px 1px 1px #000, 1px 1px 1px rgba(0, 0, 0, 0.178);
}

footer .logo img {
  position: absolute;
  right: -25px;
  top: 1px;
  z-index: -2;
  width: 60px;
}

footer .logo .sub {
  font-size: 0.5em;
  font-style: normal;
  margin-top: -6px;
  letter-spacing: 0;
}

footer h4 {
  font-weight: lighter;
  display: inline-block;
}

footer p {
  font-size: 0.9em;
  display: inline-block;
}

@media (max-width: 576px) {
  footer p {
    margin-bottom: 1em;
  }
}

footer p small {
  display: block;
  margin-top: 0.5em;
}

footer .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ayuda {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1554447;
}

.ayuda .overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.842);
  z-index: 8;
}

.ayuda .contenedor {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: white;
  z-index: 10;
  width: 90%;
  max-height: 90vh;
  padding: 0.8em;
  border-radius: 4px;
  text-align: center;
  max-width: 1000px;
}

.ayuda .contenedor .separador {
  width: 90%;
  margin: 1em auto;
  height: 1px;
  background: grey;
}

@media (max-width: 600px) {
  .ayuda .contenedor {
    padding: 0.5em;
  }
}

.ayuda .contenedor img {
  display: block;
  max-width: 100%;
  margin: 2em auto;
}

.ayuda .contenedor h2 {
  font-size: 1.8em;
}
/*# sourceMappingURL=navbar.css.map */