/* -----------Common Style----------- */

#about {
  padding: 80px 0;
}

#about h2 {
  font-size: clamp(24px, 2.1vw, 40px);
  display: inline-block;
  margin-bottom: 25px;
  font-family: var(--title-font-family); 
  position: relative;
  z-index: 20;
}

#about h2::before {
  display: block;
    content: attr(data-txt);
    white-space: nowrap;
    color: #fff;
    position: absolute;
    left: 0;
    top: -30px;
    font-size: clamp(50px, 5.1vw, 98px);
    line-height: 1;
    z-index: -1;
    text-shadow: rgba(210, 217, 221, .75) 1px 0 0, rgba(210, 217, 221, .75) 0 1px 0, rgba(210, 217, 221, .75) -1px 0 0, rgba(210, 217, 221, .75) 0 -1px 0;
}

#about h3 {
  font-size: 24px;
  color: inherit;
}

#about h4 {
  font-size: 18px;
  color: inherit;
}

#about p {
  font-size: 17px;
  margin: 0;
  color: inherit;
}

#about .rich-text {
  margin-bottom: 25px;
}

#about .heading .divider-left {
  height: 2px;
  width: 80px;
  background: var(--color-primary);
  display: block;
  margin: 5px 0 0px;
}

#about .about_boxs {
  margin: 0;
}

#about .more1 {
  padding: 0 40px;
    height: 64px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dbe0e3;
    font-size: 15px;
    color: var(--title-text-color);
    font-weight: 700;
    margin-top: 45px;
}

#about .more1:hover {
  background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

#about .more1:hover span {
  background-color: #fff;
}

#about .more1 span {
  width: 13px;
    height: 12px;
    background: #fb7306;
    margin-right: 10px;
}

#about .more1 span:last-child {
    margin-right: 27px;
}

#about .about_box {
  color: #fff;
  overflow: hidden;
  position: relative;
  top: -100px;
  z-index: 100;
  padding: 0;
  cursor: pointer;
  border-radius: 5px;
}
#about .about_box:before {
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 101;
  background: rgba(255, 255, 255, 0.2);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -200%, 0px);
  -moz-transition: transform 0.7s ease 0.1s;
  -ms-transition: transform 0.7s ease 0.1s;
  -o-transition: transform 0.7s ease 0.1s;
  -webkit-transition: transform 0.7s ease 0.1s;
  transition: transform 0.7s ease 0.1s;
}
#about .about_box:hover::before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px);
}
#about .about_box.active {
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

#about .about_box:hover img {
  transform: scale(1.1);
}
#about .about_box img.detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#about .about_box .effect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px 20px;
}
#about .about_box .effect > img {
  max-width: 100px;
  margin-bottom: 15px;
}

#about .priorty p + p {
  margin-top: 25px;
}
#about .priorty .about-post {
  margin-top: 15px;
  overflow: hidden;
}
#about .priorty .about-post a {
  background: #eaeaea;
  display: inline-block;
  float: left;
  height: 60px;
  width: 64px;
  text-align: center;
  font-size: 35px;
  border-radius: 5px;
  padding: 5px;
}
#about .priorty .about-post a > img {
  display: inline-block;
  vertical-align: middle;
}
#about .priorty .about-post h4 {
  margin: 10px 0 0 80px;
  font-family: var(--title-font-family);
}
#about .priorty .about-post p {
  display: block;
  margin: 0 0 0 80px;
}

#about .img-responsive {
  width: 100%;
  border-radius: 5px;
}

#about .pic a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

#about .pic a i {
  font-size: 80px;
  color: #fb7306;
}

@media(max-width:1440px){
#about p {font-size: 15px;}

}

@media screen and (max-width:992px) {

  #about h3 {
    font-size: 20px;
  }
  #about h4 {
    font-size: 16px;
  }
  #about p {
    font-size: 14px;
  }
  #about .about_box .effect > img {
    margin-bottom: 10px;
    max-width: 60px;
  }
}
@media screen and (max-width:767px) {
  #about > .container:first-child {
    max-width: 100%;
  }
  #about .about_box {
    top: 0;
  }
  #about .about_box:nth-child(3) {
    margin-bottom: 50px;
  }
  #about .about_box.active {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #about .priorty {
    margin-bottom: 20px;
  }
}