.contact-section {
  padding: 4rem 0;
  background: var(--secondary-color);
  font-family: var(--font-prompt);
}

.contact-form-wrapper {
  width: 100%;
  max-width: 650px;
  background: var(--fourth-color);
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}

.contact-form-wrapper {
  color: var(--font-color-1);
  font-family: var(--font-rubik);
  text-transform: uppercase;
  font-size: 1.2em;
}

.contact-description {
  color: var(--font-color-2);
  font-size: 0.8em;
}

.contact-form {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-field > label {
  color: var(--font-color-2);
  margin: 8px 0;
  display: block;
  font-weight: 400;
  font-size: 0.85em;
}

.input-field > input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid rgba(128, 128, 128, 0.134);
  padding: 10px 15px;
  font-size: 0.85em;
  color: var(--font-color-1);
}

input::placeholder,
textarea::placeholder {
  font-size: 0.9em;
  color: rgba(128, 128, 128, 0.494);
}

textarea {
  width: 100%;
  height: 120px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(128, 128, 128, 0.134);
  color: var(--font-color-1);
  font-size: 0.85em;
  resize: none;
}

.submit-form {
  width: 100%;
  background: var(--accent-color);
  color: white;
  height: 50px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.contact-detail-wrapper {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-detail-card {
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--font-color-1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.204);
}

.contact-detail-card > i {
  font-size: 2.5em;
  margin-block: 10px;
}

.detail-title {
  font-family: var(--font-rubik);
  font-size: 1.3em;
}

.contact-detail-card > p:nth-of-type(1) {
  color: var(--font-color-2);
}

.contact-detail-card > p:nth-of-type(2) {
  font-weight: 700;
  font-size: 1.1em;
  font-family: var(--font-rubik);
}

@media screen and (min-width: 1024px) {
  .contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
  }
  .contact-form-wrapper {
    height: max-content;
  }
  .contact-detail-wrapper {
    margin: 0;
  }
  .contact-detail-card {
    max-width: 100%;
    max-height: 230px;
    justify-content: center;
  }
}

@media screen and (min-width: 1024px) {
  .contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
  }
  .contact-form-wrapper {
    height: max-content;
  }
  .contact-detail-wrapper {
    margin: 0;
  }
  .contact-detail-card {
    max-width: 100%;
    max-height: 230px;
    justify-content: center;
  }
}
