/** service-section **/

.service-section{
    position: relative;
    padding: 115px 0px 120px 0px;
  }
  
  .bg-color-1{
    background: #e4dcc7;
  }
  
  
  .service-section .icon-layer{
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center;
    left: 0px;
    top: 0px;
    animation: slide 100s linear infinite;
    -webkit-animation: slide 100s linear infinite;
  }
  
  @keyframes slide{
    from { background-position: 0 0; }
      to { background-position: 1920px 0; }
  }
  
  @-webkit-keyframes slide{
    from { background-position: 0 0; }
      to { background-position: 1920px 0; }
  }
  
  .service-block-one .inner-box{
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    background: #353535;
    padding: 50px 80px 36px 80px;
  }
  
  .service-block-one .inner-box:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    right: 0px;
    transition: all 500ms ease;
  }
  
  .service-block-one .inner-box:hover:before{
    height: 100%;
    top: 0px;
  }
  
  .service-block-one .inner-box .icon-box{
    position: relative;
    display: inline-block;
    font-size: 100px;
    line-height: 100px;
    margin-bottom: 8px;
    z-index: 1;
    transition: all 500ms ease;
  }
  
  .service-block-one .inner-box .icon-box:before{
    position: absolute;
    content: '';
    background: #303030;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    left: -9px;
    top: -13px;
    z-index: -1;
    transition: all 500ms ease;
  }
  
  .service-block-one .inner-box:hover .icon-box:before{
    background: #c42526;
  }
  
  .service-block-one .inner-box:hover .icon-box{
    transform: rotateY(360deg);
    color: #fff;
  }
  
  .service-block-one .inner-box h3{
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 9px;
  }
  
  .service-block-one .inner-box h3 a{
    display: inline-block;
    color: #fff;
  }
  
  .service-block-one .inner-box p{
    color: #fff;
    margin-bottom: 33px;
  }
  
  .service-block-one .inner-box .theme-btn{
    padding: 12px 45px;
  }
  
  .service-block-one .inner-box:hover .theme-btn{
    background: #de3f40;
  }
  
  .service-section .sec-title{
    margin-bottom: 70px;
  }
  
  .service-section .sec-title span{
    margin-bottom: 21px;
  }
  

/** service-style-two **/

.service-style-two{
  position: relative;
  padding: 120px 0px;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  padding: 0px 20px;
}

.service-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 100px;
  color: #e4dcc7;
  width: 180px;
  height: 180px;
  line-height: 180px;
  background: #282829;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 40px;
  z-index: 1;
}

.service-block-two .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.service-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 35px;
  color: #e4dcc7;
  font-weight: 700;
  margin-bottom: 26px;
}

.service-block-two .inner-box h3 a{
  display: inline-block;
  color: #e4dcc7;
}

.service-block-two .inner-box p{
  color: #bbbbbc;
  margin-bottom: 38px;
}

.service-block-two .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #282829;
  text-align: center;
  border-radius: 50%;
}

.service-block-two .inner-box .link a:hover{
  color: #fff;
}