*{
  font-family: "open sans";
}

.header-contacto {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background: #0000;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, hsla(0, 100%, 0%, 0.6), hsla(0, 45%, 0%, 0.6)), url(../img2/fondo-contacto.jpg);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, hsla(0, 100%, 0%, 0.7), hsla(0, 45%, 0%, 0.6)), url(../img2/fondo-contacto.jpg);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.subtitulo{
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/*-------------------------------------------------------------------------------------------------*/
.card-contact-fondo {
  width: 100%;
  padding: 30px;
  align-content: center;
  max-width: 1200px;
  background-color: #ff670168;
  backdrop-filter: blur(5px);
  border-radius: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;

}

.card-form-contact {
  width: 60%;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  padding: 20px;
  margin-right: 20px;
  border-radius: 20px;
  margin: auto;
}

.seccion-main-contact {
  display: flex;
  height: 710px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.card-form-contact h1 {
  font-size: 60px;
  font-weight: 700;
  color: #ff6801;
  text-align: center;
}

.card-form-contact label {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 400;
  margin-left: 15px;
  margin-top: 10px;
}

.card-form-contact input {
  margin-top: 0px;
}

.cont-input {
  margin-top: 10px;
}

.input {
  width: 100%;
  height: 35px;
  margin-top: 15px;
  padding: 10px 20px 10px 20px;
  border: none;
  background: #e8e8e8;
  font-size: 12px;
  outline: none;
  border-radius: 25px;

}

input:focus {
  outline: 2px solid #ff6801;
}

input::placeholder {
  color: rgb(100, 100, 100);
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px 20px 10px 20px;
  border: none;
  background: #e8e8e8;
  font-size: 12px;
  outline: none;
  border-radius: 25px;
  min-width: 100%;
  max-width: 100%;
  max-height: 150px;
  min-height: 80px;
}

textarea:focus {
  outline: 2px solid #ff6801;
}

.btn {
  width: 100px;
  background: #ff6801;
  text-align: center;
  padding: 4px;
  margin-top: 20px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.btn:hover {
  background: #ce5707;
  cursor: pointer;
}
.centrar{
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  font-family: inherit;
  font-size: 20px;
  background: #ff6801;
  color: white;
  padding: 0.5em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 20px;
}

button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
  transform: translateX(5em);
}

button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
