.contact-contents-container {
  /* background-color: rgb(59, 59, 58); */
  /* background-color: chartreuse; */
  padding: 100px;
  margin-bottom: 50px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  color: #000;
}

.contact-details-wrapper {
  width: 50%;
}

.contact-link-wrapper {
  /* background-color: wheat; */
  /* display: none; */
  line-height: 30px;
}

.get-in-touch-head {
  color: #fff;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-family: var(--secondary-font);

  /* background-color: aqua; */
}

.get-in-touch-head h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.get-in-touch-head p {
  font-family: var(--secondary-font);
}

/* Form */
.contact-form {
  /* max-width: 500px; */
  width: 100%;
  /* background-color: violet; */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.con-input-wrapper {
  width: 100%;
}

.con-input-wrapper input,
.con-input-wrapper textarea {
  width: 100%;
  padding: 10px;
  font-family: var(--secondary-font);

  font-size: 1rem;
  outline: none;
  border: none;
  background-color: #e7eefd;
  /* border: 2px solid var(--primary-blue); */
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: var(--primary-blue);
  color: white;
  padding: 14px;
  border: none;
  /* border-radius: 8px; */
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--secondary-font);
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: transparent;
  background-color: #1689d1;
  /* outline: 1px solid var(--primary-color); */
}

.google-map {
  width: 50%;
}

/* Email and Phone number */

/* .email-list-wrapper {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: yellow;
  width: 300px;
  font-family: var(--secondary-font);
} */

.email-contact-wrapper {
  padding: 0px 100px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 2rem;
  font-family: var(--secondary-font);
  /* color: var(--primary-blue); */
  font-weight: 600;
  display: none;
}

@media only screen and (max-width: 897px) {
  .contact-contents-container {
    flex-direction: column;
    gap: 20px;
    padding: 70px 20px;
  }

  .contact-details-wrapper {
    width: 100%;
  }

  .contact-form {
    width: 100%;
    margin-top: 20px;
  }

  .google-map {
    width: 100%;
    height: 400px;
  }
}
