html {
  scroll-behavior: smooth;
  font-size: 85%;
}
html body {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: #11131c;
  background-color: #fefeff;
  letter-spacing: 0.2px;
}

p, h1, h2, h3, h4, h5, h6 {
  color: #11131c;
}

p {
  font-size: 1rem;
}

table {
  width: 100%;
}
table td, table th {
  vertical-align: middle;
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
}
a.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 20px;
}

img {
  object-fit: cover;
}

label {
  display: block;
  line-height: 1.2rem;
  font-size: 0.9rem;
}

input, select {
  width: 100%;
  outline: none;
  border: solid rgba(105, 111, 122, 0.2117647059) 1px;
  border-radius: 2px;
  padding: 5px 10px;
  margin-bottom: 15px;
}

.form-floating > label {
  font-size: 78%;
}

.loader-container {
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fefeff;
  transition: all 0.3s ease;
}
.loader-container.hide {
  transform: translateY(-100%);
}
.loader-container .loader {
  width: 40px;
  height: 40px;
  --c:no-repeat linear-gradient(#596373 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 21px 21px;
  animation: l5 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l5 {
  0% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  }
  33% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    width: 60px;
    height: 60px;
  }
  66% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
    width: 60px;
    height: 60px;
  }
  100% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
  }
}
menu {
  position: fixed;
  padding: 5px 15px;
  margin: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #11131c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  animation: move ease 1.5s 1s forwards;
  z-index: 3000;
}
menu .links {
  display: flex;
  gap: 15px;
  align-items: center;
}
menu .links .btn_contacto {
  font-weight: bold;
  padding: 1px 8px;
}
menu .links a {
  color: #eaeaea;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
}

footer {
  background-color: #11131c;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
footer .social {
  display: flex;
  gap: 10px;
}
footer p {
  color: #fefeff;
  font-size: 1rem;
}

@media (max-width: 700px) {
  menu .links .onSmNone {
    display: none;
  }
}
@keyframes move {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
main {
  background-color: #009dc4;
}
main .head_img {
  object-fit: cover;
}
main .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
main .container .fila {
  margin-bottom: 30px;
}
main .container h1, main .container h3, main .container p {
  color: white;
}
main .container h1 {
  font-size: 3.5rem;
}
main .container a {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: #4c596d;
  display: block;
  border-radius: 2px;
}

form label {
  display: block;
  color: white;
}
form input, form textarea {
  width: 100%;
  outline: none;
  border: none;
  padding: 5px 8px;
  border-radius: 2px;
}
form input[type=submit] {
  font-weight: bold;
  letter-spacing: 2px;
  color: #5e5d65;
}
form .validacion_inputs {
  color: white !important;
}

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