/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  width: 100%;
  background: var(--gray-light);
  min-height: 200px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 30px;
  flex-wrap: wrap;
}
.page-hero img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
.section-label {
  text-align: center;
}
.about-section {
  padding: 80px 60px;
}
.about-content {
  display: block;
  align-items: center;
}
.about-text {
  font-size: 16px;
  color: #939393;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 80px;
}
.data_detail{
  margin: 0 60px;
  position: relative;
}
.graph_aria{
  display: flex;
  padding: 50px 0;
  border-bottom: solid 2px #222222;
  
}
.graph_aria_innder{

}
.graph_aria_innder h3{
  font-size: 28px;
  color: #FF6C00;
  margin-bottom: 35px;
}
.graph_l{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.graph_r{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.graph_aria img{
  width: 50%;
}
.graph_b{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 3);
}
.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.5s;
&.fadein-left{
    transform: translate(-30px,0);
}
&.fadein-right{
    transform: translate(30px,0);
}
&.fadein-up{
    transform: translate(0,-30px);
}
&.fadein-bottom{
    transform: translate(0,30px);
}
&.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
}
.people_img {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px auto 0;
}
.people_img img{
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .data_detail {
    margin: 0 20px;
  }
  .graph_aria {
    flex-direction: column;
    align-items: center;
}
  .graph_aria_innder h3 {
    text-align: center;
}
.graph_l {
  width: 100%;
  margin-bottom: 70px;
}
.graph_r {
  width: 100%;
}
.graph_b{
  margin-bottom: 70px;
}
.graph_aria img {
  width: 85%;
}
.data_detail {
  padding-bottom: 200px;
  margin-bottom: 100px;
}
.graph_b{
  width: 100%;
}
}