/* search Filter css styles starts here */
#search-container {
    position: relative; 
}
#search-container #searchInput{
    box-sizing: border-box;
    color: #fff;
    padding-left: 33px!important;
    border: 0;
    border-bottom: 1px solid #ccc;
}
#search-container #testimonial-list {
    position: absolute;
    top: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 5px;
    max-height: 250px;
    overflow: auto;
    width: 100%;
    display: none;
    z-index: 1;
    background: #45005d;
}

#search-container #testimonial-list>li {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #7c4d8d;
}

#search-container #testimonial-list>li>a {
    color: #fff;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background: #45005d;
    font-size: 13px;
    line-height: 1.5;
}
#search-container #testimonial-list>li>a:hover {
    background: #44005c;
}
#search-container .icon-search{
    position: absolute;
    left: 10px;
    top: 7px;
    font-size: 22px;
    color: #5a5a5a;
}
#search-container ::-webkit-scrollbar{
    width: 10px;
    border-radius: 3px;
}
#search-container ::-webkit-scrollbar-thumb{
    background:   #9508c1;
    border-radius: 10px;
}
#search-container ::-webkit-scrollbar-track {
    height: 100%;
}

.highlight {
  -webkit-box-shadow: inset 0 0px 10px 2px rgba(187, 15, 240, 0.85);
  -moz-box-shadow: inset 0 0px 10px 2px rgba(187, 15, 240, 0.85);
  box-shadow: inset 0 0px 10px 2px rgba(187, 15, 240, 0.85);
}

/* search Filter css styles ends here */


/* 'Numbers speak louder than words' section css styles starts here */
.polygon-y{
    padding-top: 140px;
}
.brand-polygon-container{
    position: relative;
    margin: auto;
    height: 400px;
    width: 400px;
}

.brand-polygon{
    position: absolute;
}
.brand-polygon.size-1{
    width: 200px;
    height: 230px;
    left: 0;
    top: 0;
}
.brand-polygon.size-2{
    width: 170px;
    height: 190px;
    left: 230px;
    top: 20px;
}
.brand-polygon.size-3{
    width: 150px;
    height: 170px;
    top: 195px;
    left: 155px;
}
.brand-polygon.size-4{
    width: 120px;
    height: 140px;
    top: -103px;
    left: 152px;
}
.brand-polygon-inner{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 1.5;
    height: 100%;
    font-size: 20px;
    width: 100%;
    text-align: center;
    -moz-clip-path: polygon(0 25%,0 75%,50% 100%,100% 75%,100% 25%,50% 0);
    -webkit-clip-path: polygon(0 25%,0 75%,50% 100%,100% 75%,100% 25%,50% 0);
    clip-path: polygon(0 25%,0 75%,50% 100%,100% 75%,100% 25%,50% 0);
    background-color: #55219b;
 
background: -moz-linear-gradient(-45deg,  rgba(181,32,228,1) 0%, rgba(69,37,141,1) 43%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(181,32,228,1) 0%,rgba(69,37,141,1) 43%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(181,32,228,1) 0%,rgba(69,37,141,1) 43%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b520e4', endColorstr='#45258d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}
.brand-polygon-inner span{
    font-size: 26px;
    font-weight: 700;
}
.brand-polygon-heading{
    position: absolute;
    top: 15%;
    left: -3px;
    font-size: 12px!important;
    padding: 0!important;
    margin: 0!important;
    font-weight: normal!important;
    z-index: 1;
    transform: rotate(-30deg);
    word-spacing: normal!important;
    line-height: 1!important;
    transform-origin: left;
    color: #888 !important;;
}

@media only screen and (max-width:768px){
    .brand-polygon-container {
        position: relative;
        margin: auto;
        height: 330px;
        width: 310px;
    }
    .brand-polygon.size-1 {
        width: 150px;
        height: 175px;
        left: 0;
        top: 0;
    }
    .brand-polygon.size-2 {
        width: 140px;
        height: 156px;
        left: 172px;
        top: 20px;
    }
    .brand-polygon.size-3 {
        width: 120px;
        height: 140px;
        top: 163px;
        left: 111px;
    }
    .brand-polygon.size-4 {
        width: 100px; 
        height: 111px;
        top: -81px;
        left: 122px;
    }
}



.brand-polygon {
    animation: grow-and-shrink 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
 }
 @-webkit-keyframes grow-and-shrink {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
}
  @keyframes grow-and-shrink {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  .counting::after {
    content: counter(count);
    animation: counter 3s linear 1 forwards;
    counter-reset: count 0;
  }
  
  @keyframes counter {
    0% {
      counter-increment: count 2997;
    }
    10% {
      counter-increment: count 5735;
    }
    20% {
      counter-increment: count 6012;
    }
    30% {
      counter-increment: count 7533;
    }
    40% {
      counter-increment: count 7769;
    }
    50% {
      counter-increment: count 8646;
    }
    60% {
      counter-increment: count 8954;
    }
    70% {
      counter-increment: count 9234;
    }
    80% {
      counter-increment: count 9487;
    }
    90% {
      counter-increment: count 9890;
    }
    100% {
      counter-increment: count 10000;
    }
  }
  
/* 'Numbers speak louder than words' section css styles ends here */