.contact_section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  width: 80%;
  margin: 0px auto 30px auto;
}

.contact_img {
  position: relative;
  width: 100%;
  height: 700px;
}

.contact_img_1 {
  z-index: 20;
  position: relative;
}

.contact_img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.contact_img .contact_pink_dots_1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 120px;
  height: 120px;
  z-index: 0;
}

.contact_img .contact_pink_dots_2 {
  position: absolute;
  bottom: 5%;
  right: 12%;
  width: 100px;
  height: 100px;
  z-index: 0;
}

/* ///////////////////////////// */
/* contact form  */

.contact_form_section h2 {
  font-size: 25px;
  color: var(--color-pink);
  font-weight: 600;
  margin: 10px 0;
  font-family: var(--Gabarito-font);
}

.contact_form_section h3 {
  font-size: 40px;
  color: var(--color-black);
  font-weight: 700;
  margin: 10px 0;
  text-align: left;
  font-family: var(--Gabarito-font);
}

.contact_form_section p {
  font-size: 22px;
  color: var(--color-black);
  margin: 20px 0;
  letter-spacing: 1px;
  font-family: var(--Gabarito-font);
  display: flex;
  flex-direction: column;
}
.contact_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.contact_input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-pink);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}
.contact_input_textarea {
  width: 100%;
  height: 150px;
  border: 1px solid var(--color-pink);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 19px;

  color: var(--color-black);
  transition: all 0.3s ease-in-out;
  font-family: var(--Gabarito-font);
}

.contact_input:focus {
  border: 1px solid var(--color-pink);
  outline: none;
}

.contact_input_textarea::placeholder {
  color: #b6b6b6;
  font-size: 22px;
  font-family: var(--Fredoka-font);
}
.contact_input::placeholder {
  color: #b6b6b6;
  font-size: 22px;
  font-family: var(--Fredoka-font);
}

.contact_btn {
  background-color: var(--color-blue);
  color: white;
  padding: 10px 20px;
  border: none;
  font: 400;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 4px;
}

/* //////////////////////// */
/* Tab Responsive  */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact_section {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    margin: 20px auto;
    width: 100%;
  }

  .contact_img {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .contact_img .contact_img_1 {
    width: 500px;
    height: 600px;
  }

  .contact_pink_dots_1,
  .contact_pink_dots_2 {
    width: 80px;
    height: 80px;
  }

  .contact_pink_dots_1 {
    top: 0%;
    left: 10%;
  }

  .contact_pink_dots_2 {
    bottom: 10%;
    right: 0%;
  }

  .contact_form_section h2,
  .contact_form_section h3,
  .contact_form_section p {
    text-align: center;
  }

  .contact_form {
    width: 100%;
  }
}
/* ///////////////////// */
/* responsive design  */

@media (max-width: 768px) {
  .contact_section {
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;
    margin: 10px auto;
    width: 100%;
  }

  .contact_img {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
  }

  .contact_img .contact_img_1 {
    width: 90%;
    margin: 0 auto;
    height: 400px;
  }

  .contact_pink_dots_1,
  .contact_pink_dots_2 {
    width: 80px;
    height: 80px;
  }

  .contact_pink_dots_1 {
    top: 0%;
    left: 8%;
  }

  .contact_img .contact_pink_dots_2 {
    bottom: 12%;
    right: 3%;
  }
  .contact_form_section h2,
  .contact_form_section h3,
  .contact_form_section p {
    text-align: center;
  }

  .contact_form {
    width: 100%;
  }
}
