@font-face {
  font-family: "Gafata";
  src: url("../fonts/Gafata-Regular.ttf");
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Gafata", sans-serif;
}

header {
  z-index: 10;
  width: 100%;
  background: #001a57;
  border-bottom: 3px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 30px;
  position: fixed;
  top: 0%;
}

header a img {
  width: 230px;
}

header h2 a {
  color: #fff;
  text-decoration: none;
}

section {
  width: 100%;
  background: url(../img/fondo-marcona.jpg);
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: 150px;
}

section .contenedor {
  width: 80%;
  background: rgba(250, 250, 250, 0.8);
  margin: 30px auto;
  border-radius: 20px;
  font-size: 20px;
}

section .contenedor .titulo-contenedor {
  width: 100%;
  background: #001a57;
  border-radius: 20px 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  align-item: center;
  color: #fff;
}

section .contenedor .titulo-contenedor a {
  color: #ffffff;
  text-decoration: none;
  margin: 15px 20px;
  font-size: 30px;
}

section .contenedor .titulo-contenedor h3 {
  margin: 15px auto;
  font-size: 25px;
}

.seccion {
  display: inline-block;
  background: url("../img/fondo-marcona.jpg");
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding-top: 150px;
}

.seccion .contenedor {
  width: 85%;
  margin: 0 auto 50px auto;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  border-radius: 15px;
}

.seccion .contenedor .aviso {
  width: 80%;
  margin: 30px auto;
  text-align: center;
}

.seccion .contenedor .aviso h3 {
  color: #001a57;
}

.seccion .contenedor .opciones {
  width: 80%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.seccion .contenedor .opciones a {
  border: none;
  border: 1px solid #001a57;
  border-radius: 15px;
  text-decoration: none;
  color: #001a57;
  font-size: 100px;
  width: 35%;
  padding: 50px 30px;
  text-align: center;
  -webkit-transition: 1s;
  transition: 1s;
  margin-bottom: 50px;
}

.seccion .contenedor .opciones a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 2;
  background: #001a57;
  color: #fff;
}

.seccion .contenedor .opciones a i {
  border: none;
}

.seccion .contenedor .opciones a h5 {
  font-size: 20px;
  margin-top: 10px;
}

footer {
  background: #001a57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-top: 3px solid #fff;
}

footer .info {
  width: 50%;
  text-align: left;
  font-size: 20px;
  color: #fff;
  overflow: hidden;
  padding-left: 15%;
}

footer .info img {
  padding-top: 30px;
}

footer .info h5 {
  margin: 0;
  padding: 0;
  margin: 30px 30px 30px 10px;
}

footer .info h5 i {
  margin-right: 10px;
}

footer .info h5 a {
  color: #fff;
  text-decoration: none;
}

footer .mapa {
  width: 50%;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 450px) {
  header {
    position: static;
    text-align: center;
  }
  header img {
    display: inline-block;
    margin: auto;
  }
  header h2 {
    padding-top: 15px;
  }
  .seccion {
    padding-top: 30px;
  }
  .seccion .contenedor .opciones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  .seccion .contenedor .opciones a {
    width: 100%;
  }
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  footer .info {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  footer .mapa {
    width: 80%;
  }
}
/*# sourceMappingURL=estilos.css.map */