.vertical{ 
 
  transform: rotate(-90deg);
  overflow: visible;
  
}

.vert{
writing-mode: vertical-rl;
  transform: rotate(180deg);


}

.plus .counter-number:after{  
  content:"+";  
  color: #f7971e;  
}

.front{z-index: 10;}

ul li{padding-bottom: 10px;}

@media  (min-width: 1025px){  
  .shift-left{transform: translateX(-3px);z-index: 1000;}
  .shift-right{transform: translateX(5px);z-index: 1000;}

}


@media  (max-width: 768px){  
  .testimonials-img{margin-top: 20px;}


/*underline left dark*/
.line1{padding-bottom: 20px;}
.line1:after {
    content: '';

    width: 85px;
    position: absolute;
    left: 0;   
    color: #000;
  padding-top: 5px;
    border-width: 0 0 2px;
    border-style: solid;
}

/*underline left light*/
.line2{padding-bottom: 20px;}
.line2:after {
    content: '';

    width: 165px;
    position: absolute;
    left: 0;
   
    line-height: : 10px;
    color: #fff;

    border-width: 0 0 5px;
    border-style: solid;
}

.arrow{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow span{
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}
.arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}




