/** working-section **/

.working-section{
    position: relative;
    padding-top: 115px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
  }
  
  .working-section:before{
    position: absolute;
    content: '';
    background: #1e1e2a;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.85;
  }
  
  .working-section .inner-content{
    position: relative;
    margin: 0px -10px -170px -10px;
    z-index: 1;
  }
  .working-section.sec-pad .inner-content {
    margin: 0;
  }
  .working-section .sec-title{
    margin-bottom: 60px;
  }
  .working-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 43px 40px 23px;
    min-height: 298px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
  }
  
  .working-block-one .inner-box:hover{
    transform: translateY(-15px);
  }
  
  .working-block-one{
    position: relative;
  }
  
  .working-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    border: 1px dashed #b1b1bc;
    padding: 5px;
    margin-bottom: 19px;
  }
  
  .working-block-one .inner-box .icon-box .count-box {
    position: absolute;
    top: 4px;
    right: -17px;
    width: 50px;
    height: 50px;
    line-height: 46px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 2;
  }
  
  .working-block-one .inner-box .icon-box .icon {
    position: absolute;
    display: inline-block;
    left: 4px;
    top: 4px;
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 60px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }
  
  .working-block-one .inner-box .icon-box .icon:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    z-index: -1;
    transition: all 500ms ease;
  }
  
  .working-block-one .inner-box:hover .icon-box .icon:before{
    opacity: 0.8;
  }
  
  .working-block-one .inner-box .lower-content h3{
    margin-bottom: 12px;
  }
  .working-block-one .inner-box .lower-content p {
    margin-bottom: 20px;
  }
  .working-block-one .inner-box .lower-content .pattern-layer{
    position: relative;
    display: block;
    max-width: 62px;
    width: 100%;
    height: 9px;
    margin: 0 auto;
    margin-bottom: 23px;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .working-block-one .inner-box:hover .lower-content .pattern-layer{
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
  }
  