<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}
body {
  background-color: #fdead3;
}
.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  margin-bottom: 5rem;
}
.contact h2 {
  color: #fd5200;
  text-align: center;
  font-family: Bardy;
  font-size: clamp(38px, 5.21vw, 5.21vw);
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 90px */
  text-transform: uppercase;
}
.contact p {
  color: #591b0b;
  text-align: center;
  font-family: Poppins;
  font-size: clamp(15px, 1.46vw, 25px);
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 37.8px */
}
.contact .form-container {
  border-radius: 40px;
  background: #fd5200;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 80vw;
  padding: 2.5vw;
  margin-top: 6rem;
}

.validation-message {
  grid-area: validation;
  color: white;
  font-family: Poppins;
  font-size: clamp(0.5rem, 0.1rem + 0.7813vw, 0.94rem);
  width: 100%;
  display: inline-block;
  text-align: center;
  height: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .contact {
    margin-top: 4rem;
  }

  .contact .form-container {
    margin-top: 24rem;
  }
}

.form-container .form-left {
  width: 52%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-container .form-right {
  width: 45%;
}
.form-container .form-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
/* Form */

.email-contact {
  display: flex;
  gap: 10px;
}
.email-contact input {
  border-radius: 10px;
  border: 3px solid #591b0b;
  background: #fdead3;
  padding: 15px 15px;
  width: 100%;
  font-family: Poppins;
  outline: none;
  font-size: clamp(15px, 0.9896vw, 1.15vw);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
textarea {
  border-radius: 10px;
  border: 3px solid #591b0b;
  background: #fdead3;
  padding: 15px 15px;
  box-sizing: border-box;
  width: 100%;
  font-family: Poppins;
  outline: none;
  resize: none;
  height: 40vh;
  font-size: clamp(15px, 0.9896vw, 1.15vw);
}
.form-container button {
  border-radius: 50px;
  border: 3px solid #591b0b;
  background: #fdead3;
  box-shadow: 4px 7px 0px 0px #5e0001;
  padding: 15px 45px 8px;
  align-self: flex-end;

  color: #591b0b;
  font-family: Bardy;
  font-size: clamp(20px, 1.82vw, 2.9vw);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-info {
  display: flex;
  margin-block: 5%;
  justify-content: end;
  width: 80vw;
  position: relative;
  margin-bottom: 10rem;
}
.contact-item {
  display: flex;
  gap: 1vw;
  position: absolute;
  left: 0%;
  transform: translateX(0%);
}
.contact-item .contact-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}
.contact-info h5 {
  color: #591b0b;
  font-family: Poppins;
  font-size: clamp(21px, 1.3vw, 1.3vw);
  font-style: normal;
  font-weight: 600;
  line-height: 31px; /* 124% */
}
.contact-info h6 {
  color: #591b0b;
  font-family: Poppins;
  font-size: clamp(15px, 1.15vw, 1.15vw);
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 140.909% */
}

.artu-container {
  position: relative;
  width: 30%;
}
.artu-container img {
  position: absolute;
  top: 0;
  width: 110%;
  right: -25%;
  transform: translateY(-50%);
}
.form-name,
.form-email,
.form-message {
  display: grid;
  grid-template-areas:
    "input"
    "validation";
    place-items: start start;
  width: 100%;
  position: relative;
}
.form-name label,
.form-email label {
  grid-area: input;
  position: relative;
  place-self: center start;
  bottom: 0;
  margin-left: 1.5rem;
  
  height: fit-content;

  color: rgba(89, 27, 11, 0.3);
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: clamp(15px, 0.9896vw, 1.15vw);
  pointer-events: none;
}

.form-name input,
.form-email input {
  grid-area: input;
}
.mark {
  color: #fd5200;
}
textarea::placeholder {
  color: rgba(89, 27, 11, 0.3);
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: clamp(15px, 0.9896vw, 1.15vw);
}
@media (width &lt;= 1024px) {
  .contact {
    padding: 20px;
    margin-bottom: -5rem;
  }
  .form-right {
    display: none;
  }
  .form-container .form-left {
    width: 100%;
  }
  .contact p {
    margin-top: 20px;
  }
  .contact .form-container {
    flex-direction: column;
    padding: 36px 30px;
    width: 100%;
    margin-top: 40px;
  }
  .email-contact {
    flex-direction: column;
    gap: 20px;
  }
  textarea {
    margin-top: 0;
    padding: 25px;
    border-radius: 20px;
  }
  .email-contact input {
    border-radius: 20px;
    padding: 25px;
  }
  .form-container button {
    align-self: auto;
  }
  .contact-info {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    margin-top: 50px;
  }
  .contact-item {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 30px;
    position: relative;
    transform: translateX(0);
    left: 0;
  }
  .contact-item .contact-data {
    align-items: center;
  }
  .artu-container {
    width: auto;
  }
  .artu-container img {
    position: static;
    transform: translateY(0);
  }
  .form-name label,
  .form-email label {
    /* left: 26px; */
  }
  .validation-message {
    font-size: clamp(0.81rem, 0.6319rem + 0.7704vw, 1.13rem);
  }
}

/*Internal Hero*/
.hero-home {
  align-items: flex-start;
  height: 50vh;
  margin-bottom: 8%;
}
.container-hero {
  height: 100%;
  margin-top: 1%;
}
.contenido-dinamico-hero {
  width: 100%;
  justify-content: center;
}
.contenido-dinamico-hero h1 {
  color: #fdead3;
  text-align: center;
  font-family: Bardy;
  font-size: clamp(55px, 8vw, 8.33vw);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 160px */
  text-transform: uppercase;
  margin-top: 8%;
  text-align: center;
}
@media (width &lt;= 1024px) {
  .hero-home {
    align-items: center;
    height: 45vh;
    top: 1rem;
  }
  .contenido-dinamico-hero h1 {
    margin-top: 15vh;
  }
  /* .form-container{
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .form-container .form-left{
    width: 100%;
  } */
}
</pre></body></html>