.contact_page_form_section {
  width: 80%;
  margin: 0 auto;
  background-color: var(--color-blue);
  border-radius: 20px;
  padding: 20px 0;
}

.contact_form_text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  padding: 0px 30px;
  margin: 35px auto;
  position: relative;
}
.contact_form_vector {
  width: 280px;
  height: 280px;
  object-fit: contain;
  position: absolute;
  left: 5%;
}

.contact_form_text div h2 {
  font-size: 45px;
  color: white;
  font-family: var(--Inknut-font);
  font-weight: 900;
  text-align: center;
}
.contact_form_linebar {
  width: 20%;
  height: 0.5px;
  background-color: white;
  margin: 20px auto;
}

.contact_form_text div p {
  font-size: 22px;
  color: white;
  font-family: var(--Fredoka-font);
  font-weight: 400;
  text-align: center;
  width: 70%;
  margin: 10px auto;
}

/* ///////////////// */
/* contact form  */
.contact_page_form {
  background-color: white;
  width: 90%;
  margin: 0px auto;
  border-radius: 20px;
  padding: 50px 20px;
}

.contact_page_input_con {
  width: 90%;
  margin: 0 auto;
}

.contact_page_input_con div p {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;

  margin: 0 auto;
}

.contact_page_input_con div p br {
  display: none;
}

.contact_page_input_con textarea {
  width: 100%;
  margin: 30px 0;
  height: 200px;
  font-size: 22px;
  font-family: var(--Inter-font);
}

.contact_page_input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-black);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 22px;
  font-family: var(--Inter-font);
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}

.contact_page_input:focus {
  border: 1px solid var(--color-black);
  outline: none;
}
.contact_page_btn_con {
  text-align: center;
}

.contact_page_btn {
  background-color: var(--color-pink);
  color: var(--color-black);
  padding: 15px 30px;
  border: none;
  font: 400;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 4px;
  margin: 10px 0;
}

/* /////////////////// */
/* Responsive Desgin  */

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .contact_form_text {
    flex-direction: column;
  }
  .contact_form_vector {
    position: relative;
  }
}

@media (max-width: 786px) {
  .contact_page_form_section {
    width: 100%;
  }

  .contact_form_text {
    flex-direction: column;
  }

  .contact_page_form {
    background-color: white;
    width: 90%;
    margin: 0px auto;
    border-radius: 20px;
    padding: 30px 0px;
  }

  .contact_page_form .contact_page_input_con div {
    grid-template-columns: 100%;
  }

  .contact_form_vector {
    position: relative;
  }

  .contact_form_text div h3 {
    font-size: 32px;
  }

  .contact_form_text div p {
    font-size: 20px;
    width: 85%;
  }
}
