.about_story_section {
  width: 78%;
  margin: 100px auto 50px auto;
  display: flex;
  padding: 40px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* background-color: var(--color-blue); */
  background: var(--gradient-bg);
  border-radius: 40px;
}

.about_story_section .text_col h2 {
  color: var(--color-pink);
  letter-spacing: 2px;
  font-size: 48px;
  font-family: var(--Gabarito-font);
  font-weight: 400;
}

.about_story_section .text_col h3 {
  color: white;
  letter-spacing: 1px;
  font-size: 32px;
  font-weight: 800;
  width: 80%;
  margin: 12px 0;
  text-align: left;
  font-family: var(--Faustina-font);
}

.about_story_section .text_col p {
  font-size: 22px;
  color: white;
  font-weight: 300;
  margin: 20px 0;
  width: 80%;
  font-family: var(--Fredoka-font);
}

/* //////////////////////////////// */

.about_story_box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.story_icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border-radius: 5px;
  background-color: white;
}

.story_text {
  font-size: 22px;
  font-weight: 200;
  color: white;
  font-family: var(--Fredoka-font);
}

/* ////////////////////////// */

.story_img_col {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2px;
  position: relative;
  /* padding: 0; */
}

.about_story_img_1 {
  width: 320px;
  height: 450px;
}
.about_story_img_2 {
  width: 300px;
  height: 350px;
}
.story_arrow_icon_1 {
  width: 100px;
  height: 30px;
  position: absolute;
  bottom: 8%;
  right: 30%;
}
.story_arrow_icon_2 {
  width: 100px;
  height: 30px;
  position: absolute;
  bottom: 10%;
  right: 25%;
}
.about_story_img_2 img,
.about_story_img_1 img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* //////////////////////////// */
/*   for Table or Ipad */
@media screen and (min-width: 1024px) and (max-width: 1400px) {
  .about_story_section {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about_story_section {
    flex-direction: column;
    width: 70%;
  }
  .story_img_col {
    align-items: start;
    gap: 0;
    width: 90%;
  }
  .story_img_col h2 {
    font-size: 20px;
    text-align: start;
  }
  .story_img_col h3 {
    font-size: 38px;
    text-align: start;
  }

  .story_img_col p {
    font-size: 21px;
    text-align: start;
  }

  .story_icon {
    font-size: 16px;
  }
  .story_text {
    font-size: 18px;
  }

  .about_story_img_1 {
    width: 400px;
    height: 350px;
  }
  .about_story_img_2 {
    width: 400px;
    height: 300px;
  }

  /* .story_arrow_icon_1 {
    display: none;
  }
  .story_arrow_icon_2 {
    display: none;
  } */
}
/* //////////////////////// */
/* Responsive Design  */

@media (max-width: 768px) {
  .about_story_section {
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
  }
  .story_img_col {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .story_img_col h2 {
    font-size: 20px;
    text-align: start;
  }
  .story_img_col h3 {
    font-size: 28px;
    text-align: start;
  }

  .story_img_col p {
    font-size: 18px;
    text-align: start;
  }

  .story_icon {
    font-size: 16px;
  }
  .story_text {
    font-size: 18px;
  }

  .about_story_img_1 {
    width: 350px;
    height: 350px;
  }
  .about_story_img_2 {
    width: 350px;
    height: 300px;
  }

  .story_arrow_icon_1 {
    display: none;
  }
  .story_arrow_icon_2 {
    display: none;
  }
}
