

/** working-section **/

.working-section{
  position: relative;
  background: #CDF1DD;
  padding: 142px 0px;
}

.working-block-one .inner-box{
  position: relative;
  max-width: 210px;
  margin: 0 auto;
}

.working-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 180px;
  height: 180px;
  line-height: 180px;
  font-size: 80px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--theme-color);
  margin-bottom: 22px;
  z-index: 1;
  transition: all 500ms ease;
}

.working-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: #101A30;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.working-block-one .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.working-block-one .inner-box .icon-box .count-text{
  position: absolute;
  top: -10px;
  right: -5px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: #101A30;
  font-weight: 600;
  transition: all 500ms ease;
}

.working-block-one .inner-box:hover .icon-box .count-text{
  color: #fff;
}

.working-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.working-section .content-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.working-block-one .inner-box .arrow-shape{
  position: absolute;
  top: 74px;
  right: -108px;
  width: 73px;
  height: 32px;
  background-repeat: no-repeat;
}

.working-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}










































