.main-counter .col-md-3 {
  text-align: center;
  padding-bottom: 50px;
  border-left: 2px dashed #dddddd;
}

.main-counter .col-md-3:last-child {
  border-left: 0px dashed #dddddd;
}

.counter {
  animation-duration: 1s;
  animation-delay: 0s;
}
.counter-circle{
    display: inline-block;
    position: relative;
    height: 110px;
    width: 110px;
    border: 2px dashed #dddddd;
    font-size: 54px;
    line-height: 106px;
    color: #e13e20;
    border-radius: 50%;
    margin-bottom: 15px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.counter-circle::before{
    position: absolute;
    left: 0;
    top: 5px;
    height: 21px;
    width: 21px;
    border: 2px dashed #e13e20;
    border-radius: 50%;
    content: "";
    opacity: .5;
}
.counter-circle::after{
    position: absolute;
    right: 10px;
    bottom: 5px;
    height: 15px;
    width: 15px;
    border: 2px dashed #e13e20;
    content: "";
    border-radius: 50%;
    opacity: .5;
}
.fs16{
    color:#666666;
    font-size:16px;
}
.main-counter{
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 135px 0 !important;
    background-attachment: fixed;
}
.main-counter::before{
  content: "";
  top:0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background-attachment: fixed;
}
.counter-hover:hover .counter-circle{
    background-color: #e13e20;
    color: #ffffff;
    border: 2px dashed #e13e20;
    transition: all 1000ms ease-in-out;
}
.counter-hover:hover .counter-circle::before,.counter-hover:hover .counter-circle::after{
    transform: scale(3);
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 1000ms ease;}
@media (max-width: 991px) {
 .main-counter .col-md-3 {
    border-right: 0px dashed #dddddd;
    border-bottom: 2px dashed #dddddd;
    width: 50%;
    margin: auto auto;
  }
  
 .main-counter .col-md-4:last-child {
    border-bottom: 0px dashed #dddddd;
  }
}