.wrap-aboutus {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 2rem;  
}
.wrap-aboutus ul, .wrap-aboutus ol {
  padding-left: 20px;
}
.wrap-aboutus a:hover {
  color: #c8cf72;
}

.about-zone .about-pic {
  filter: grayscale(70%);
  transition: all 0.3s;
}
.about-zone:hover .about-pic {
  filter: grayscale(0%);
}
.about-zone .about-text {
  margin-top: 30%;
}
@media (max-width: 768px) {
  .about-zone .about-text {
    margin-top: 10%;
  }
}
.about-zone .about-text .subheading {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.about-zone .about-text .heading {
  font-size: 3.5rem;
  margin-bottom: 21px;
  position: relative;
}
@media (max-width: 768px) {
  .about-zone .about-text .heading {
    font-size: 3rem;
  }
}
.about-zone .about-text .heading span {
  color: #fff;
  letter-spacing: 10px;
}
.about-zone .about-text .heading:before {
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -7px;
  content: "";
  display: block;
  width: 56px;
  height: 55px;
  border-radius: 3px;
  background-color: #c8cf72;
}
@media (max-width: 768px) {
  .about-zone .about-text .heading:before {
    top: 2px;
    width: 51px;
    height: 51px;
  }
}
.about-zone .about-text p {
  font-size: 0.9rem;
  line-height: 2rem;
}

.about-view {
  display: block;
  color: #c8cf72 !important;
  border: 1px solid #c8cf72;
  max-width: 135px;
  text-align: center;
  padding: 8px 20px;
  margin-left: 70%;
  margin-top: 15%;
  border-radius: 3px;
  font-size: 0.9rem;
  letter-spacing: 0.7px;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 768px) {
  .about-view {
    margin-left: 0%;
    margin-top: 0%;
  }
}
.about-view:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  right: -18px;
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background-color: #c8cf72;
}
.about-view:hover {
  color: #fff !important;
}

.about-hover {
  position: relative;
}

.about-hover:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#c8cf72, #c8cf72);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 0.3s;
}

.about-hover:hover:before {
  transform: scaleX(1);
}