/* contact us styling */

.contact_container {
  padding-top: 7rem;
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  text-align: center;
}

/* section one styling */
.contact_container_section_one_h2_tag {
  font-weight: 700;
  font-size: x-large;
  color: #31ac54;
}

.contact_container_section_one_p_tag {
  font-weight: 400;
  font-size: 1.25rem;
  color: #122742;
}

/* end of section one styling */

/* section two aka form styling */
.contact_container_form {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem 3rem 1rem;
}

.contact_container_form_fieldset {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact_container_form_fieldset_names_wrapper_div {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  gap: 0.5rem;
}

.contact_container_form_fieldset_names_wrapper_div_first_name,
.contact_container_form_fieldset_names_wrapper_div_last_name {
  flex: 0.5;
  border-radius: 4px;
  border: none;
  padding: 6px 52px 6px 16px;
  outline: none;
}

.contact_container_form_fieldset_names_wrapper_div_last_name::placeholder,
.contact_container_form_fieldset_names_wrapper_div_first_name::placeholder,
.contact_container_form_fieldset_email_address::placeholder,
.contact_container_form_fieldset_textarea_tag::placeholder {
  color: #111;
  opacity: 0.9;
}

.contact_container_form_fieldset_email_address,
.contact_container_form_fieldset_textarea_tag {
  width: 90%;
  margin: auto;
  border-radius: 4px;
  border: none;
  padding: 6px 52px 6px 16px;
  outline: none;
}

.contact_container_form_fieldset_submit_button {
  width: 55%;
  margin: 0 1rem 0 auto;
  background: #31ac54;
  border-radius: 50px;
  border: none;
  color: #fff;
  padding: 5px 10px 5px 10px;
  transition: width 1s ease 0s, background 0.8s ease 0s;
}

.contact_container_form_fieldset_submit_button:hover {
  width: 56%;
  background: #288b44;
}

/* end of section two styling */

/* section three styling */
.contact_container_section_three {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.contact_container_section_three_span_email_holder {
  font-weight: 400;
  font-size: small;
  display: flex;
  flex-direction: column;
  color: #122742;
}

.contact_container_section_three_span_email_holder_a_tag {
  color: #288b44;
}

.contact_container_section_three_h5_tag {
  font-style: normal;
  font-weight: 400;
  font-size: smaller;
  color: #122742;
  padding-top: 1rem;
}

.contact_container_section_three_nav_tag {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0 0 1rem 0;
}

/* end of section three styling */

/* styling of responsiveness min-width: 768px */
@media only screen and (min-width: 768px) {
  .contact_container_form_fieldset_names_wrapper_div {
    flex-direction: row;
    justify-content: center;
  }

  .contact_container_form_fieldset_submit_button {
    width: 30%;
  }

  .contact_container_form_fieldset_email_address,
  .contact_container_form_fieldset_textarea_tag {
    width: 100%;
  }

  .contact_container_section_one_h2_tag {
    font-size: xx-large;
  }

  .contact_container_section_three_span_email_holder {
    flex-direction: row;
    justify-content: center;
  }

  .contact_container_section_three_nav_tag {
    gap: 3rem;
  }

  .atag {
    height: 50%;
  }
}

/* styling of responsiveness min-width: 1330px */
@media only screen and (min-width: 1330px) {
  .contact_container_form_fieldset_names_wrapper_div {
    flex-direction: row;
    justify-content: center;
  }

  .contact_container_form_fieldset_submit_button {
    width: 35%;
  }
}

.social-links {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: 0.5s ease 0s;
}
