main .banner {
  height: 700px;
  background: rgb(0, 0, 0);
  background: linear-gradient(267deg, rgba(0, 0, 0, 0) 43%, rgb(255, 255, 255) 100%), url(/assets/images/contacto/banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
main .banner h2 {
  position: absolute;
  top: 60%;
  left: 5%;
  font-family: "Futura-Bold";
  font-weight: bolder;
  color: var(--secondary-bg-color);
  font-size: var(--font-heading);
}
main .agents_contact {
  background-color: var(--primary-bg-color);
  padding: 100px 0px;
}
main .agents_contact h2 {
  color: white;
  font-size: var(--font-xlarge);
  text-align: center;
}
main .agents_contact .agents {
  width: 60%;
  display: flex;
  margin: 75px auto;
  justify-content: space-between;
}
main .agents_contact .agents .agents1 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 40%;
}
main .agents_contact .agents .agents1 .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 50px;
  gap: 30px;
  border-radius: 20px;
  background-color: white;
}
main .agents_contact .agents .agents1 .card .title {
  padding: 10px 20px;
  color: white;
  background-color: var(--tertiary-bg-color);
  width: 100%;
  border-radius: 20px;
  text-align: left;
  font-family: "Futura-Bold";
  font-size: var(--font-large);
}
main .agents_contact .agents .agents1 .card .item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
main .agents_contact .agents .agents1 .card .item p {
  font-weight: bold;
}
main .agents_contact .agents .agents2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
}
main .agents_contact .agents .agents2 .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 50px;
  gap: 30px;
  border-radius: 20px;
  background-color: white;
}
main .agents_contact .agents .agents2 .card .title {
  padding: 10px 20px;
  color: white;
  background-color: var(--tertiary-bg-color);
  width: 100%;
  border-radius: 20px;
  text-align: left;
  font-family: "Futura-Bold";
  font-size: var(--font-large);
}
main .agents_contact .agents .agents2 .card .item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
main .agents_contact .agents .agents2 .card .item p {
  font-weight: bold;
}
main .contact {
  margin: 100px 0px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
main .contact .contact_item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border: 1px solid var(--primary-bg-color);
  border-radius: 20px;
}
main .contact .contact_item p {
  font-weight: bold;
}
main .contact_us {
  margin-top: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: white;
}
main .contact_us .map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
main .contact_us .map iframe {
  border-radius: 50%;
}
main .contact_us .map a {
  padding: 10px 40px;
  color: white;
  background-color: var(--primary-bg-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
main .contact_us .map a:hover {
  background-color: var(--tertiary-bg-color);
}
main .contact_us form {
  display: flex;
  flex-direction: column;
  padding: 50px 30px 60px 30px;
  width: 25%;
  gap: 30px;
  background-color: var(--fourth-bg-color);
  border-radius: 20px;
  font-size: var(--font-large);
}
main .contact_us form h2 {
  font-family: "Futura-Bold";
  color: var(--primary-bg-color);
}
main .contact_us form input[type=text], main .contact_us form input[type=email] {
  padding: 10px;
  border: none;
}
main .contact_us form textarea {
  border: none;
  padding: 10px;
}
main .contact_us form input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  padding: 10px 30px;
  border: none;
  color: white;
  background-color: var(--primary-bg-color);
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
main .contact_us form input[type=submit]:hover {
  background-color: var(--tertiary-bg-color);
}
main .join_us {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 100px auto;
  gap: 30px;
  border-radius: 10px;
  background-color: var(--fourth-bg-color);
  padding: 50px 100px;
  font-size: var(--font-large);
}
main .join_us h2 {
  font-family: "Futura-Bold";
  color: var(--primary-bg-color);
}
main .join_us input[type=text], main .join_us input[type=email] {
  border: none;
  padding: 15px;
}
main .join_us input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  padding: 10px 30px;
  border: none;
  color: white;
  background-color: var(--primary-bg-color);
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
main .join_us input[type=submit]:hover {
  background-color: var(--tertiary-bg-color);
}
main .join_us .input-file {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  cursor: pointer;
}
main .join_us .input-file #uploadbtn {
  cursor: pointer;
}
main .join_us .input-file input[type=file] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
main .cotiza {
  padding: 50px 0px;
  background-color: var(--tertiary-bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  color: white;
}
main .cotiza h2 {
  font-size: var(--font-xxlarge);
}
main .cotiza a {
  text-decoration: none;
  color: white;
  padding: 15px 30px;
  border: 1px solid white;
  font-size: var(--font-medium);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
main .cotiza a:hover {
  background-color: var(--primary-bg-color);
  color: white;
  border-color: var(--primary-bg-color);
}

.map_outside {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  display: none;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
.map_outside iframe {
  width: 100%;
  height: 93%;
}
.map_outside div {
  height: 7%;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary-bg-color);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s ease;
}
.map_outside div:hover {
  background-color: var(--secondary-bg-color);
}
.map_outside.show {
  display: flex;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  main .banner {
    background: rgb(0, 0, 0);
    background: linear-gradient(267deg, rgba(0, 0, 0, 0) 15%, rgb(255, 255, 255) 100%), url(/assets/images/contacto/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  main .agents_contact h2 {
    width: 90%;
    margin: auto;
  }
  main .agents_contact .agents {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
  main .agents_contact .agents .agents1, main .agents_contact .agents .agents2 {
    margin-top: 50px;
    width: 100%;
    align-items: center;
  }
  main .agents_contact .agents .agents1 .card, main .agents_contact .agents .agents2 .card {
    align-items: center;
    padding: 30px 20px;
    width: 100%;
  }
  main .agents_contact .agents .agents1 .card .title, main .agents_contact .agents .agents2 .card .title {
    text-align: center;
  }
  main .contact {
    flex-direction: column;
    width: 90%;
    margin: 100px auto;
  }
  main .contact .contact_item {
    justify-content: center;
  }
  main .contact_us {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
  main .contact_us iframe {
    height: 300px;
    width: 300px;
  }
  main .contact_us form {
    width: 90%;
  }
  main .cotiza {
    flex-direction: column;
  }
  main .join_us {
    width: 90%;
    padding: 50px 20px;
  }
  main .join_us .input-file {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}/*# sourceMappingURL=styles.css.map */