.contact {
  width: auto;
  background-color: rgba(255, 255, 255, 0);
  min-height: 70vh;
  display: flex;

  justify-content: center;
  align-items: center;
}

.contact img {
  height: 70vh;
  width: 50%;
  object-fit: cover;
}

.details {
  height: 70vh;
  max-width: 50%;
  background-color: white;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-direction: column;
  padding: 0px 80px;
}

.a {
  display: flex;
  gap: 20px;
  font-size: 28px;
  justify-content: start;
  align-items: center;
}

.whatsapp {
  text-decoration: none;
  color: white;
  background-color: green;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 10px;
  border: 1px solid white;
  transition: all 0.3s;
}

.whatsapp:hover {
  border: 1px solid green;
  background-color: white;
  color: green;
}

.a p {
  font-size: 20px;
}

@media (max-width: 1000px) {
  .contact img {
    width: 100%;
    height: 50vh;
  }
  .contact {
    flex-direction: column;
  }
  .details {
    max-width: 100%;
    height: 100%;
    padding: 80px 30px;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
  }
  .a {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
