.index-card-section .heading-content{
  margin-bottom : 20px;
}
.index-card-section .index-item{
 -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}
.index-card-section .index-item .item-title{
  padding-bottom : 23.6px;
}
.tab-main {
  border-top: 1px solid #d4d7df;
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
  margin-top: 25px;
}
.tab-head-line{
  position: relative;
  transform: skew(-15deg);
  background: #171f31;
  content: "";
  top: -18px;
  left: -7px;
  padding: 3px 0;
  z-index: 99;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  width: 35px;
  height: 35px;
  text-align: center;
  display: inline-block;
}
.tab-head-line:hover {
  background: var(--primary_color);
}
.tab-head-line small {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 28px;
  letter-spacing: .2px;
  margin: 0;
  transform: skew(0);
}
.tab-head-line small:after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: -50px;
  width: 120px;
  height: 2px;
  z-index: -1;
  background: var(--primary_color);
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.tab-head-line:hover small:after {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}

@media(max-width : 1024px){
  .index-card-section .index-item{
   -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
@media(max-width : 767px){
  .index-card-section .index-item{
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}