/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@200;300;400;700&display=swap");
/* ^^^ about ^^^ */
#about {
  display: grid;
  padding-top: 256px;
}

.white-text {
  color: #E0E0E0;
}

/* All componets */
.my-past {
  display: flex;
  position: relative;
  margin: 128px 32px;
  min-height: 50vh;
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 0.5s ease-in-out;
  align-items: center;
  background: var(--picture);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.my-past[right] {
  justify-content: right;
}
.my-past[right] .wrapper {
  align-items: flex-end;
}
.my-past[right] .wrapper h3, .my-past[right] .wrapper h6 {
  justify-content: right;
  text-align: right;
}
.my-past[right] img {
  left: 0px;
}
.my-past[left] .wrapper {
  align-items: flex-start;
}
.my-past[left] img {
  right: 0px;
}
.my-past .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.my-past .wrapper h3, .my-past .wrapper h6 {
  margin: 0;
  padding: 0px 12px;
}
.my-past .wrapper h3 {
  font-size: 3em;
}
.my-past .wrapper h6 {
  width: 80%;
}
.my-past .wrapper p {
  margin: 32px 0px;
  padding: 0px 12px;
  background-color: #161616AA;
  color: #FFFFFF;
  font-size: 2em;
  width: 80%;
  text-align: justify;
}
.my-past img {
  position: absolute;
  z-index: -1;
  max-height: 100%;
  max-width: 100%;
  border-radius: 8px;
}
.my-past.content-appear {
  opacity: 1;
  transform: translate(0px, 0px);
}

@media only screen and (max-width: 700px) {
  .my-past {
    margin: 64px 32px;
    min-height: 25vh;
  }
  .my-past .wrapper h3 {
    font-size: 2em;
  }
  .my-past .wrapper p {
    font-size: 20px;
  }
}
.pins {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}
.pins .pin {
  display: flex;
  margin: 20px;
  min-width: 120px;
  width: auto;
  height: 100px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 16px;
  background: linear-gradient(0deg, var(--c1), var(--c2));
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px black;
  transform: rotateZ(-35deg);
}

@media only screen and (max-width: 530px) {
  .my-past .wrapper {
    width: 100%;
  }
  .pins .pin {
    min-width: 80px;
    height: 50px;
  }
}/*# sourceMappingURL=aboutstyle.css.map */