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

#about {
  padding: 90px 0;
}
#about .container:nth-child(2) {
  margin-top: 80px;
}
#about .videopalay {
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-radius: 10px;
}

#about .videopalay .videobtn {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
  width: 108px;
  height: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

#about .videopalay .videobtn .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 108px;
  height: 108px;
  animation: identifier 6s infinite linear
}

#about .videopalay .videobtn i {
  position: relative;
  z-index: 5;
  font-size: 45px;
  color: #fff;
}

#about h2 {
  font-size: clamp(24px, 2.1vw, 40px);
  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: 0;
}

#about .row {
  justify-content: space-between;
}

#about .about_box {
  color: #fff;
  overflow: hidden;
  position: relative;
  /* top: -100px; */
  z-index: 100;
  padding: 0;
  cursor: pointer;
  border-radius: 5px;
  width: 32.33%;
}
#about .about_box~.about_box {
  /* margin-left: 30px; */
}
#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;
}
#about .priorty .about-post a > img {
  display: inline-block;
  vertical-align: middle;
  max-width: 40px;
}
#about .priorty .about-post h4 {
  margin: 0px 0 0 80px;
  font-family: var(--title-font-family);
  color: #333;
}
#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:1500px) {
#about p {font-size: 14px;}
}

@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:991px) {
  #about > .container:first-child {
    max-width: 100%;
    padding: 0;
  }
  #about .container:nth-child(2) {
    margin-top: 20px;
  }
  #about .about_box {
    top: 0;
    width: 100%;
  }
  #about {
    padding: 30px 0;
  }
  #about .about_box:nth-child(3) {
    margin-bottom: 0;
  }
  #about .about_box.active {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #about .priorty {
    margin-bottom: 20px;
  }
  #about .videopalay .videobtn .bg {
    width: 85px;
    height: 85px;
  }
  #about .videopalay .videobtn {
    width: 85px;
    height: 85px;
  }
  #about .videopalay .videobtn i {
    font-size: 26px;
  }
}