
/** feature-section **/

.feature-section{
  position: relative;
}

.feature-section .inner-container{
  position: relative;
  display: block;
  width: 100%;
  margin-top: -127px;
  background: #fff;
  max-width: 1610px;
  box-shadow: 0px 4px 20px rgba(191, 191, 191, 0.1);
  border-radius: 0px 20px 20px 0px;
  padding: 60px 80px;
  z-index: 2;
}

.feature-section .inner-container .feature-block-one{
  position: relative;
  float: left;
  width: 33.333%;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 30px 0px 120px;
}

.feature-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(189, 189, 189, 0.4);
  width: 1px;
  height: calc(100% + 120px);
  top: -60px;
  right: 30px;
}

.feature-block-one:last-child .inner-box:before{
  display: none;
}

.feature-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  line-height: 96px;
  text-align: center;
  font-size: 50px;
  color: var(--theme-color);
  background: #F0F0F0;
  border: 5px solid #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box{
  color: #fff !important;
}

.feature-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-block-one .inner-box h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.feature-block-one .inner-box h3 a:hover{
  color: var(--theme-color);
}


/** feature-style-two **/

.feature-style-two{
  position: relative;
  background: #F6F9FF;
}

.feature-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 3px rgba(133, 133, 133, 0.05);
  border-radius: 10px;
  padding: 45px 30px 45px 155px;
  z-index: 1;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover:before{
  height: 100%;
  top: 0px;
}

.feature-block-two .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 34px;
  top: 45px;
  width: 100px;
  height: 100px;
  line-height: 104px;
  font-size: 50px;
  color: var(--theme-color);
  background: rgba(217, 217, 217, 0.2);
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover .icon-box{
  color: #fff !important;
}

.feature-block-two .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-block-two .inner-box h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-block-two .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.feature-block-two .inner-box:hover h3 a{
  color: #fff;
}

.feature-block-two .inner-box h3 a:hover{
  text-decoration: underline;
}

.feature-block-two .inner-box p{
  font-size: 14px;
  line-height: 26px;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover p{
  color: #fff;
}














































