.about_contact_section {
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-between;
  align-items: center;
  width: 78%;
  margin: 0 auto;
  gap: 50px;
}

/* ////////////////////////////// */
/* About Img section  */

.about_contact_img_section img {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

/* ////////////////////////////// */
/* About text section */
.about_contact_text_section {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 25px;
}

.about_contact_text_section h2 {
  font-size: 48px;
  color: var(--color-pink);
  letter-spacing: 2px;
  font-family: var(--Gabarito-font);
  font-weight: 400;
}

.about_contact_text_section h3 {
  font-size: 38px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--Faustina-font);
}

.about_contact_text_section p {
  font-size: 21px;
  color: black;
  font-weight: 400;
  font-family: var(--Fredoka-font);
}

.about_contact_btn {
  background-color: var(--color-blue);
  color: white;
  padding: 15px 30px;
  border: none;
  font-weight: 400;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 2px;
  font-family: var(--Fredoka-font);
}

/* //////////////////////////// */
/*   for Table or Ipad */
@media screen and (min-width: 1024px) and (max-width: 1400px) {
  .about_contact_section {
    grid-template-columns: 100%;
    padding: 0 10px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about_contact_section {
    /* flex-direction: column; */
    grid-template-columns: 100%;
    padding: 0 10px;
    width: 70%;
    justify-content: center;
  }
  .about_contact_img_section img {
    width: 100%;
    height: 400px;
    object-fit: contain;
  }

  .about_contact_text_section h2 {
    font-size: 20px;
  }

  .about_contact_text_section h2 {
    font-size: 28px;
  }

  .about_contact_text_section p {
    font-size: 18px;
  }
}

/* ///////////////////// */
/* Responsive Design  */

@media (max-width: 768px) {
  .about_contact_section {
    /* flex-direction: column; */
    grid-template-columns: 100%;
    padding: 0 10px;
    justify-content: center;
    width: 90%;
    gap: 0px;
    margin-top: 20px;
  }
  .about_contact_img_section img {
    width: 100%;
    height: 300px;
    object-fit: contain;
  }

  .about_contact_text_section h2 {
    font-size: 20px;
  }

  .about_contact_text_section h3 {
    font-size: 35px;
  }

  .about_contact_text_section p {
    font-size: 18px;
  }
}
