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

#about {
  padding-bottom: clamp(30px, 4.6875vw, 90px);
}

#about h2 {
font-size: clamp(24px, 1.88vw, 36px);
    color:#000000;
    line-height: 1.2;
    font-weight: 700;
    text-transform: capitalize;
  border-bottom: 1px solid #dadada;
  display: inline-block;
  margin-bottom: 25px;
  font-family: var(--title-font-family); 
}

#about h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  color: inherit;
}

#about h4 {
  font-size: clamp(12px, 0.94vw, 18px);
  color: inherit;
}

#about p {
  font-size: clamp(14px, 0.83vw, 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: 0;
}

#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:50px;
  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: 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;
}

@media(max-width:1440px){
  #about .about_box {
    top: -45px;
  }
}


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


  #about .about_box .effect > img {
    margin-bottom: 10px;
    max-width: 60px;
  }
}
@media screen and (max-width:991px) {
  #about > .container:first-child {
    max-width: 100%;
    padding: 0;
  }
  #about .about_box {
    top: 0;
  }

  #about .about_box.active {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #about .priorty {
    margin-bottom: 20px;
  }
  #about .about_boxs{padding:0 0 30px 0;}

  #about .priorty .about-post {margin-top: 25px;}
  #about .priorty .about-post a {height: 40px;width: 40px;font-size: 27px;}
  #about .priorty .about-post a > img {height: 30px;}
  #about .priorty .about-post h4 {margin: 0 0 0 50px;}
}