.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: #04caf7;
}

.about-box-1 {
  margin-bottom: 100px;
}
.about-box-1 .about-pic-1 {
  filter: grayscale(70%);
  transition: all 0.3s;
}
.about-box-1:hover .about-pic-1 {
  filter: grayscale(0%);
}
.about-box-1:hover .about-text-1 .subheading:before {
  width: 200px;
}
.about-box-1 .about-text-1 {
  margin-top: 200px;
}
.about-box-1 .about-text-1 .subheading {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.about-box-1 .about-text-1 .subheading:before {
  position: absolute;
  content: "";
  top: -60px;
  left: -90px;
  width: 150px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.about-box-1 .about-text-1 .heading {
  font-size: 3.5rem;
  margin-bottom: 21px;
}
.about-box-1 .about-text-1 p {
  font-size: 0.9rem;
  line-height: 2rem;
}

.about-box-2 {
  margin-bottom: 100px;
}
.about-box-2 > div:nth-child(1) {
  position: relative;
  z-index: 1;
}
.about-box-2 .about-pic-2 {
  filter: grayscale(70%);
  transition: all 0.3s;
}
.about-box-2:hover .about-pic-2 {
  filter: grayscale(0%);
}
.about-box-2:hover .about-text-2 .subheading:before {
  width: 200px;
}
.about-box-2 .about-text-2 {
  margin-top: 200px;
  text-align: right;
}
.about-box-2 .about-text-2 .subheading {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.about-box-2 .about-text-2 .subheading:before {
  position: absolute;
  content: "";
  top: -60px;
  right: -70px;
  width: 150px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.about-box-2 .about-text-2 .heading {
  font-size: 3.5rem;
  margin-bottom: 21px;
}
.about-box-2 .about-text-2 p {
  font-size: 0.9rem;
  line-height: 2rem;
}

.about-view {
  color: #8BC34A !important;
  border: 1px solid #8BC34A;
  max-width: 150px;
  text-align: center;
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 0.9rem;
  letter-spacing: 0.7px;
  transition: all 0.5s;
}
.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(#aee46e, #93ca54);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 0.3s;
}

.about-hover:hover:before {
  transform: scaleX(1);
}

.about-text::before{
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vw;
    background: linear-gradient(-45deg, #FFF 50%, #E8F4FB);
    top: -5vw;
    left: -30vw;
    z-index: -1;
}
.about-pic{
    position: relative;
    padding: 8% 0 ;
}
.about-pic > div:nth-child(1){
    position: absolute;
    top: 10%;
    left: 7%;    
}
.about-pic > div:nth-child(2){
    width: 90%;
    margin-left: 10%;
    padding: 0 0px 5% 10%;
    border-bottom: 3px solid #2681d0;
    border-left: 3px solid #2681d0;
}
.about-title {
    writing-mode: vertical-lr;
    font-size: 36px;
    font-weight: 600;
    background: #2681d0;
    color: #FFF;
    padding: 20px;
    border-radius: 10px;
}
.about-history > div{
    display: flex;
    padding-bottom: 10%;
    position: relative;
}
.about-history > div::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ededed;
    top: 90px;
    left: 0;
    z-index: -1;
}
.history-item{
    width: 20%;
    padding: 30px 15px ;
}
.history-item div{
    text-align: center;
}
.history-item .year{
    padding-bottom: 80px;
    position: relative;
    font-size: 18px;
    font-weight: 600;
}
.history-item .year::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2681d0;
    bottom: 45px;
    left: calc(50% - 5px);
    border-radius: 50%;
    z-index: -1;
}


/* Responsive =================================================================== */
@media only screen and (max-width: 768px) {
  .about-box-1 {
    text-align: center;
  }

  .about-box-2 > div:nth-child(1) {
    order: 2;
  }
  .about-box-2 .about-text-2 {
    text-align: center;
  }
    
    
}
@media (max-width: 576px) {
  .about-pic{
    margin-top: 30px;
}    
  .about-pic > div:nth-child(1){
    top: 0;
    left: 0;    
  }
  .about-pic > div:nth-child(2){
    padding: 5% 0px 5% 10%;
  }    
  .about-title {
    writing-mode: horizontal-tb;
    font-size: 30px;
    padding: 15px;
  }
  .about-history > div{
    flex-direction: column;
  }    
  .history-item{
    width: 100%;
    display: flex;
  }
  .history-item .year{
    padding: 0 10px 50px;
    width: 30%;
  }
  .about-history > div::before{
    width: 5px;
    height: 90%;
    top: 0;
    left: 30%;
  }    
  .history-item > div:nth-child(2){
        width: 70%;
        padding: 0 10px;
  }  
  .history-item .year::after{
    bottom: 60px;
    right: 0;
    left: auto;
  }
}

@media only screen and (max-width: 480px) {
  .about-box-1 .about-text-1 {
    margin-top: 30px;
  }
  .about-box-1 .about-text-1 .heading {
    font-size: 2rem;
  }
  .about-box-1 .about-text-1 .subheading:before {
    display: none;
  }

  .about-box-2 .about-text-2 {
    margin-top: 30px;
  }
  .about-box-2 .about-text-2 .heading {
    font-size: 2rem;
  }
  .about-box-2 .about-text-2 .subheading:before {
    display: none;
  }
}