.form-control:focus,
.form-control:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: none;
}

.transition-colors {
  transition-duration: .15s;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}

.whitespace-nowrap {
  white-space: nowrap;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.h-11 {
  height: 2.75rem;
}

.hover\:bg-primary\/70:hover {
  background-color: hsl(var(--primary) / .7);
}

[role=button],
button {
  cursor: pointer;
}

input[type=checkbox] {
  /* Double-sized Checkboxes */
  -ms-transform: scale(1);
  /* IE */
  -moz-transform: scale(1);
  /* FF */
  -webkit-transform: scale(1);
  /* Safari and Chrome */
  -o-transform: scale(1);
  /* Opera */
  transform: scale(1);
  padding: 10px;
  margin-left: 10px;
}

/* Might want to wrap a span around your checkbox text */
.checkboxtext {
  /* Checkbox text */
  font-size: 110%;
  display: inline;
}

@media (min-width: 768px) {
  .md\:w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

h3 {
  font-family: Viga;
  font-size: 1.875rem !important;
  font-weight: 400;

}

@media (min-width: 1024px) {
  h3 {
    font-size: 2.5rem !important;
    line-height: 1 !important;
  }
}

.text-primary {
  color: hsl(var(--primary));
}

.bg-primary {
  background-color: hsl(var(--primary));
  border: none;
}

.head-logo {
  display: flex;
  padding-top: 2rem;
}

div a img.logo {
  max-width: 250px;
}

.container-fluid.footer {
  display: flex;
  justify-content: center;
  text-align: center;
  background: #f1f1f1;
  padding: 2rem 0;
  font-size: 1.2rem;
  color: var(--main-grey);
}

/* contact form validation */

/* **********     ContactForm Validations     ********** */

/* **********     ContactForm Validations     ********** */
.contact-form {
  --form-ok-color: #70ff75;
  /* --form-error-color: #f44336; */
  margin-left: auto;
  margin-right: auto;
  outline: none;
}

/* .contact-form>* {
  padding: 0.5rem;
  margin: 1rem auto;
  display: block;
 width: 100%; 
} */

.contact-form textarea {
  resize: none;
}

/* .contact-form legend,
.contact-form-response {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
} */

/* .contact-form input,
.contact-form textarea {
  font-size: 1rem;
  font-family: sans-serif;
} */

/* .contact-form input[type="submit"] {
  width: 50%;
  font-weight: bold;
  cursor: pointer;
} */

/* .contact-form *::placeholder {
  color: #000;
} */

.contact-form [required]:valid {
  border: 3px solid var(--form-ok-color) !important;
  background: #e3ffe3;
}

/*.contact-form [required]:invalid {
  border: 3px solid var(--form-error-color); 
}
*/
.contact-form-error {
  margin-top: 1px;
  font-size: 100%;
  color: #6c0000;
  transition: all 800ms ease;
}

.contact-form-error.is-active {
  display: block;
  animation: show-message 1s 1 normal 0s ease-out both;
}

.none {
  display: none;
}

[button]:disabled {
  opacity: 0.5;
  /* Reduce la opacidad del botón cuando está deshabilitado */
  cursor: not-allowed;
  /* Cambia el cursor a 'no permitido' */
  /* Puedes añadir estilos adicionales según tus necesidades */
}

@keyframes show-message {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}