.about_section {
  display: grid;
  grid-template-columns: 60% 40%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  width: 75%;
  margin: 0 auto;
}

/* ////////////////////////////// */
/* About Img section  */

.about_img_section {
  position: relative;
}

.about_img_1 {
  width: 500px;
  height: 620px;
  object-fit: contain;
}

.about_img_2 {
  position: absolute;
  bottom: -12%;
  right: -5%;
  z-index: 5;
  width: 300px;
  height: 300px;
}

.about_img_2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about_projects {
  position: absolute;
  top: 8%;
  z-index: 5;
  left: -18%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: white;
  padding: 20px 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  height: 160px;
}

.about_projects_text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.project_No {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 4px;
}
.project {
  font-size: 15px;
  font-weight: 200;
}

/* ////////////////////////////// */
/* About text section */
.about_text_section {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 25px;
}

.about_text_section h2 {
  font-size: 24px;
  color: var(--color-pink);
  letter-spacing: 2px;
  font-family: var(--Gabarito-font);
  font-weight: 500;
}

.about_text_section h3 {
  font-size: 40px;
  color: var(--color-black);
  font-weight: 700;
  width: 80%;
  font-family: var(--Faustina-font);
}

.about_text_section p {
  font-size: 20px;
  color: var(--color-black);
  font-weight: 400;
  width: 80%;
  font-family: var(--Fredoka-font);
}

.about_text_section p strong {
  font-size: 20px;
  color: var(--color-black);
  font-weight: 700;
  font-family: var(--Fredoka-font);
  letter-spacing: 1px;
}

.about_btn {
  background-color: var(--color-blue);
  color: white;
  padding: 12px 25px;
  border: none;
  font-weight: 400;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 2px;
}
/* //////////////////////////// */
/*   for Table or Ipad */

@media screen and (min-width: 1024px) and (max-width: 1400px) {
  .about_section {
    gap: 0px;
  }
  .about_img_1 {
    width: 450px;
    height: 620px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about_section {
    grid-template-columns: 100%;
    padding: 30px 10px;
    align-items: start;
    width: 70%;
    gap: 30px;
  }

  .about_text_section {
    text-align: left;
    padding: 20px 0;
  }

  .about_text_section h3,
  .about_text_section p {
    text-align: left;
    width: 100%;
  }

  .about_img_1 {
    width: 500px;
    height: 600px;
    object-fit: contain;
  }

  .about_img_2 {
    width: 300px;
    height: 300px;
    right: 5%;
  }

  .about_projects {
    left: 50%;
    width: 250px;
  }

  .project_No {
    font-size: 40px;
  }
  .Awards {
    font-size: 20px;
  }
}
/* /////////////////////////////// */
/* responsive design  */

@media (max-width: 768px) {
  .about_section {
    grid-template-columns: 100%;
    padding: 30px 10px;
    align-items: start;
    width: 90%;
  }

  .about_text_section {
    text-align: left;
    padding: 20px 0;
  }

  .about_text_section h3,
  .about_text_section p {
    text-align: left;
    width: 100%;
  }

  .about_img_1 {
    /* width: 350px; */
    width: 95%;
    height: 600px;
    object-fit: contain;
  }

  .about_img_2 {
    width: 250px;
    height: 250px;
    right: 5%;
  }

  .about_projects {
    left: 20%;
    /* width: 200px; */
  }

  .project_No {
    font-size: 30px;
  }
  .Awards {
    font-size: 15px;
  }
}
