#contact {
  position: relative;
  min-height: 100vh;
  height: 100%;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
}

#contact > * {
  flex: 1;
  min-width: 450px;
}

.contact-wrapper {
  position: relative;
  background-color: white;
  height: 100vh;
  color: var(--clr-ylw-1);
}

.contact-info {
  position: absolute;
  top: 0;
  z-index: 900;
  background-image: linear-gradient(var(--clr-blu-1), var(--clr-overlay-1));
  width: 100%;
  padding: 4rem 0 2%;
  box-sizing: content-box;
  text-align: center;
  color: yellow;
}
.contact-info h3 {
  font-size: 2.3em;
  margin: 0 2% 2%;
}
.contact-info span {
  font-size: 1.3em;
}

.contact-form {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 70%;
  width: 100%;
}

@media (max-width: 900px) {
  .contact-wrapper {
    height: 65vh;
  }
  .contact-form {
    box-sizing: border-box;
    bottom: 50%;
    transform: translateY(65%);
  }
}

.contact-form > * {
  width: 80%;
  background: transparent;
  position: relative;
}

.contact-form-component > *,
.contact-form button {
  color: #235789;
  background: transparent;
  resize: none;
  outline: none;
  font-size: 1.2rem;
  border: none;
}

.contact-form-component input {
  width: 100%;
  padding: 1rem 20px;
  box-sizing: border-box;
  background-color: #efefef;
}

.contact-form-component textarea {
  background-color: #efefef;
  padding: 20px;
  box-sizing: border-box;
  height: 200px;
  width: 100%;
}

.contact-form button {
  position: relative;
  border: 1px solid #235789;
  border-radius: 20px;
  cursor: pointer;
  width: 0;
  height: 0;
  padding: 1.5rem 4rem;
  margin-left: 10%;
  align-self: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #235789;
  color: white;
}

.contact-form-component input:focus ~ label,
.contact-form-component input:valid ~ label,
.contact-form-component textarea:focus ~ label,
.contact-form-component textarea:valid ~ label {
  transform: translate(-15%,-100%) scale(0.7);
}

.contact-form-component label {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

#map {
  position: relative;
  top: 0;
  height: 100vh;
/*   width: 100vw; */
}

