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

#about {
  padding-top: 150px;
 
}

#about h2 {
  font-size: 32px;
  border-bottom: 1px solid #dadada;
  display: inline-block;
  margin-bottom: 25px;
  font-family: var(--title-font-family); 
}

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

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

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

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

#about .about_boxs {
  margin-bottom: 100px;
  
}

#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: 60px;
  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;
}
#about .priorty .about-post a > img {
  display: inline-block;
  vertical-align: middle;
}
#about .priorty .about-post h4 {
  margin: -3px 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;
}


@media screen and (max-width:992px) {
 
  #about {
  padding-top: 50px;
 
}
  #about h2 {
    font-size: 26px;
  }
  #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 .about_boxs {
  margin-bottom: 0px;
  }
  
  #about > .container:first-child {
    max-width: 100%;
    padding: 0;
  }
  #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: 60px;
  }
}