.contact-contents-container {
  /* background-color: rgb(59, 59, 58); */
  /* background-color: chartreuse; */
  padding: 100px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  color: var(--secondary-black);
}

.contact-details-wrapper {
  width: 40%;
}

.contact-link-wrapper {
  /* background-color: wheat; */
  display: none;
  line-height: 30px;
}

.get-in-touch-head {
  color: #fff;
  color: var(--secondary-black);
  margin-bottom: 20px;
  font-family: var();
  /* background-color: aqua; */
}

.get-in-touch-head h2 {
  font-size: 2rem;
  font-family: var(--fire-font);
  margin-bottom: 10px;
}

.get-in-touch-head p {
  font-family: var(--popins-font);
}

.contact-link-wrapper li {
  display: flex;
  align-items: center;
  font-family: var(--popins-font);
  gap: 10px;
  cursor: pointer;
  color: var(--secondary-black);
}

.contact-link-wrapper li a {
  color: var(--secondary-black);
}

.con-span {
  /* color: #338833; */
}

/* Form */
.contact-form {
  /* max-width: 500px; */
  width: 50%;
  /* 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(--popins-font);
  font-size: 1rem;
  outline: none;
  border-bottom: 1px solid var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: var(--primary-color);
  color: white;
  padding: 14px;
  border: none;
  /* border-radius: 8px; */
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--popins-font);

  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: transparent;
  color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

@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;
  }
}
