#contact {
  display: flex;
  flex-direction: column;
  background-color: #007078;
}

#contact h2 {
  font-size: clamp(2.2rem, 9vw, 15rem);
  text-align: center;
  margin-bottom: 1rem;
  /* color: #30919a; */
  color: white;
}

#contact h3 {
  font-size: clamp(2.2rem, 4vw, 8rem);
}

#contact h5 {
  color: #fff;
}

#contact p{
  font-size: x-large;
}
.contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;

  margin-inline: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.location-map {
  width: 600px;
  height: 40vh;
  width: 100%;
  max-width: 800px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem;
}

/* Form Row of Contact section */

.form-row {
  display: flex;
  gap: 10px;

  flex-direction: row;

}

.form-row div {
  flex: 1;
}

.form-group {
  /* margin-bottom: 15px; */
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  color: white;
  text-align: left;
  font-weight: bold;
}

input[type=submit] {
  padding: 10px 20px;
  width: 100%;
  background-color: #30919a;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type=submit]:hover {
  background-color: rgb(172, 172, 172);
}

input,
textarea {
  width: 100%;
  /* padding: 10px; */
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  border-bottom: 2px solid white;
  border-radius: 0px;
  font-size: 16px;
  color: white;
  background: transparent;
}

::placeholder {
  color: #30919a;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #a0e7e5;
}

/* make message section have same font as rest for Peggy */
#message {
  font-family: Tahoma, Arial;
}

.job-section{
  /* background-color:#30919a; */
  margin: 1.5rem;
  width: 60vw;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.job-section h3 {
  color: white;
}

.job-section p {
  color: white;
  font-size: 1.2rem;
}

.career-email{
  align-self: center;
  display: flex;
  flex-direction: row;
  color: #e6e6e6;
}

@media only screen and (max-width: 1500px) {

  .contact-content {
    flex-direction: column-reverse;
  }

}

@media only screen and (max-width: 750px) {
  .form-row {
    flex-direction: column;
  }
}