#about {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 5em;
}
#about .title {
  width: 10%;
  min-width: 50px;
  opacity: 0;
  transform: translateX(-20%);
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
#about .title.animate {
  opacity: 1;
  transform: none;
}
#about .title img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#about .self-intro {
  width: 90%;
  opacity: 0;
  transform: translateX(20%);
  transition: all 0.5s;
  transition-timing-function: ease-in-out;
}
#about .self-intro.animate {
  opacity: 1;
  transform: none;
}
#about .self-intro .icon {
  text-align: center;
  margin: 0 auto;
}
#about .self-intro .icon img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 60%;
  border-radius: 50%;
}
#about .self-intro .name {
  width: 85%;
  margin: 0 0 0 auto;
  font-size: 32px;
  color: #023692;
  font-weight: 600;
}
#about .self-intro .position {
  width: 85%;
  margin: 0 0 0 auto;
  font-size: 20px;
  color: #023692;
  font-weight: 600;
}
#about .self-intro .text {
  margin: 0 0 0 auto;
  width: 80%;
  padding: 1em;
  background-color: #F99B07;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

@media screen and (min-width: 1024px) {
  #about {
    width: 100%;
    margin: 15em auto 0 auto;
  }
  #about .self-intro {
    width: 90%;
    display: flex;
    align-items: center;
  }
  #about .self-intro .icon {
    width: 50%;
  }
  #about .self-intro .icon img {
    width: 80%;
  }
  #about .self-intro .intro-text {
    width: 50%;
  }
  #about .self-intro .intro-text .name {
    width: 100%;
    font-size: 42px;
    font-weight: 1000;
    margin: 0 0 0 auto;
  }
  #about .self-intro .intro-text .position {
    width: 100%;
    font-size: 28px;
    font-weight: 1000;
    margin: 0 0 0 auto;
  }
  #about .self-intro .intro-text .text {
    margin: 0 0 0 auto;
    width: 100%;
    padding: 1em;
    background-color: #F99B07;
    color: white;
    font-weight: 500;
    font-size: 24px;
  }
}/*# sourceMappingURL=about.css.map */