@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-shadow: border-box;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

body, html {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  overflow-x: hidden;
}

.separator1 {
  display: inline-block;
  height: 1px;
  background: #09347a;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 200px;
}

.separator2 {
  display: inline-block;
  height: 2px;
  background: #333;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 50px;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.row .col-3 {
  width: 33.33333%;
}
.row .col-6 {
  width: 50%;
}
.row .col-12 {
  width: 100%;
}

header .header-top {
  top: 0;
  position: fixed;
  background: #09347a;
  width: 100%;
  z-index: 100;
  transition: all 300ms ease;
}
header .header-top .bars {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
header .header-top .bars p.chat {
  margin-right: 20px;
  color: #fff;
}
header .header-top .bars div {
  margin: 0 10px;
  border-radius: 10px;
  box-shadow: 1px 1px 4px 0px rgba(255, 255, 255, 0.5);
}
header .header-top .bars div a {
  display: block;
  padding: 5px;
}
header .header-top .bars div:nth-child(2) {
  background: green;
  border: 1px solid green;
}
header .header-top .bars div:nth-child(2) a {
  color: #fff;
}
header .header-top .bars div:nth-child(3) {
  background: #0091f5;
  border: 1px solid #0091f5;
}
header .header-top .bars div:nth-child(3) a {
  color: #fff;
}
header .header-top .bars div:nth-child(3) a i:before {
  color: #fff;
}
header .header-bottom nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 20px 0;
}
header .header-bottom nav .logo {
  width: 130px;
}
header .header-bottom nav .title {
  margin-left: 20px;
  font-size: 2rem;
}

section.description {
  position: relative;
  display: block;
  text-align: center;
  padding: 10px 10px;
  margin: 30px 0;
  z-index: 2;
}
section.description h2 {
  margin-bottom: 10px;
  color: #09347a;
}
section.description p {
  font-size: 1.2rem;
  color: #09347a;
}
section.description::after {
  position: absolute;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  content: "“";
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  top: 10px;
  left: 40px;
}

section.datos {
  position: relative;
  margin: 50px 0;
}
section.datos .direccion,
section.datos .telefono,
section.datos .correo {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #09347a;
  margin: 0 10px;
  padding: 20px 10px;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 0 20px 20px 20px;
}
section.datos .direccion i,
section.datos .telefono i,
section.datos .correo i {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
}
section.datos .direccion p,
section.datos .telefono p,
section.datos .correo p {
  margin-top: 20px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 25px;
}
section.datos .direccion p a,
section.datos .telefono p a,
section.datos .correo p a {
  color: #fff;
}
section.datos .telefono a {
  display: block;
}

section.contact {
  margin: 50px 0;
}
section.contact h3 {
  text-align: center;
  font-size: 2rem;
}
section.contact .form {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
section.contact .form form .group-form {
  width: 100%;
}
section.contact .form form .group-form input,
section.contact .form form .group-form textarea {
  width: 100%;
  border: none;
  padding: 5px 0 5px 5px;
  margin: 10px 0;
  height: 20px;
  outline: none;
  font-family: "Roboto", sans-serif;
  box-shadow: 1px 1px 10px 0px rgba(9, 52, 122, 0.4);
  border-radius: 10px;
}
section.contact .form form .group-form textarea {
  resize: none;
  height: 100px;
  max-height: 200px;
}
section.contact .form form .btnSend {
  text-align: center;
}
section.contact .form form .btnSend input[type=submit] {
  background: #09347a;
  border: 1px solid #09347a;
  color: #fff;
  padding: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  outline: none;
  transition: all 300ms ease;
}
section.contact .form form .btnSend input[type=submit]:hover {
  background: #fff;
  color: #09347a;
  border: 1px solid #09347a;
}
section.contact .form form .row .col-6:first-child .group-form input {
  width: 95%;
}

.scrollup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #09347a;
  border: 1px solid #fff;
  font-size: 1.5rem;
  color: #fff;
  width: 10px;
  height: 10px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}
.scrollup i {
  position: absolute;
  top: 30%;
  display: block;
  font-family: arial;
}
.scrollup:hover {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

footer {
  background: #09347a;
}
footer .content {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
footer .content p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
footer .content p a {
  color: #fff;
}

@media (max-width: 768px) {
  section.datos .row .col-3 {
    width: 50%;
  }
  section.datos .row .col-3 div {
    margin-bottom: 20px;
  }
}
@media (max-width: 578px) {
  header .header-top .bars p.chat {
    display: none;
  }
  header .header-bottom nav {
    flex-direction: column;
  }
  header .header-bottom nav .title {
    text-align: center;
  }

  section.datos .row .col-3 {
    width: 100%;
  }
  section.datos .row .col-3 div {
    margin-bottom: 20px;
  }

  section.contact .form form .row {
    flex-direction: column;
  }
  section.contact .form form .row .col-6 {
    width: 100%;
  }
  section.contact .form form .row .col-6:first-child .group-form input {
    width: 100%;
  }

  footer .content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  footer .content .left {
    margin-bottom: 10px;
  }
}

/*# sourceMappingURL=estilos.css.map */
