input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
	appearance: textfield;
}
/*======== CONTACTANOS 1 ========*/
.contactanos1-slider {
  background-image: url("../img/contacto/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  display: flex;
  align-items: center;
}
.contactanos1-slider-div {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3px);
  padding: 2rem 1rem;
}
.contactanos1-slider-int {
  max-width: 900px;
  text-align: center;
  color: white;
}

/*======== CONTACTANOS 2 ========*/
.contactanos2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.contactanos2-div {
  padding: 2rem;
  gap: 2rem;
  display: flex;
  background-color: #febd19;
  box-shadow: 0 0 8px 0 black;
  border-radius: 0.5rem;
}
.contactanos2-div-textos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
.contactanos2-div-textos-titulo {
  color: black;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
}
.contactanos2-div-mapa {
  width: 50%;
  border: 1px solid black !important;
  border-radius: 0.5rem !important;
}
/*-----*/
.form-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-control {
  border-radius: 0.25rem;
  padding: 0.75rem;
}
.form-control {
  border-radius: 0.25rem;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.5);
  transition: all 0.15s ease-in-out;
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.15s ease-in-out;
}
.form-control:focus {
  box-shadow: 0 0 6px 0px #31ffa6;
  outline: none;
  border-color: transparent;
}
.form-control:focus::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.btnenviar {
  background-color: #31ffa6;
  border: none;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  font-weight: bold;
  transition: all 0.15s ease-in-out;
}
.btnenviar:hover {
  transform: scale(1.05);
}

/*======== RESPONSIVE ========*/
@media (max-width: 992px) {
  .contactanos1-slider {
    height: unset;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  /*---*/
  .contactanos2-div {
    flex-direction: column;
  }
  .contactanos2-div-textos {
    width: 100%;
  }
  .contactanos2-div-mapa {
    width: 100%;
    height: 100vw;
    max-height: 450px;
  }
  .contactanos2-div {
    padding: 1rem;
  }
}
