
.feature-section{
  position: relative;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  max-width: 339px;
}

.feature-block-one .inner-box .icon-box{
  position: relative;
  display: block;
  font-size: 50px;
  color: var(--title-color);
  margin-bottom: 25px;
}

.feature-block-one .inner-box h3{
  display: block;
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}


/** feature-style-two **/

.feature-style-two .single-item-carousel{
  position: relative;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.feature-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.feature-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.feature-block-two .inner-box .image-box{
  position: relative;
  display: block;
  background: #000;
}

.feature-block-two .inner-box .image-box img{
  width: 100%;
  opacity: 0.3;
  transition: all 500ms ease;
}

.owl-item.active .feature-block-two .inner-box .image-box img{
  opacity: 0.8;
}

.feature-block-two .inner-box .content-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-block-two .inner-box .content-box h2{
  display: block;
  font-size: 36px;
  line-height: 46px;
  color: var(--white-color);
  font-weight: 900;
  margin-bottom: 10px;
}

.feature-block-two .inner-box .content-box h2 a{
  position: relative;
  display: inline-block;
  color: var(--white-color);
}

.feature-block-two .inner-box .content-box h2 a:hover{
  color: var(--secondary-color);
}

.feature-block-two .inner-box .content-box p{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 32px;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 60px;
}

.feature-block-two .inner-box .content-box .link a{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  color: var(--white-color);
  opacity: 0;
  top: 15px;
}

.feature-block-two .inner-box .content-box .link a:hover{
  color: var(--secondary-color);
}

.owl-item.active .feature-block-two .inner-box .content-box .link a{
  top: 0px;
  opacity: 1;
}


/** feature-style-three **/

.feature-style-three{
  position: relative;
}

.feature-block-three{
  max-width: 370px;
  margin: 0 auto;
}

.feature-block-three .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 185px 185px 0px 0px;
}

.feature-block-three .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.feature-block-three .inner-box .image-box:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.feature-block-three .inner-box:hover .image-box:before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.feature-block-three .inner-box .image-box img{
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.feature-block-three .inner-box:hover .image-box img{
  transform: scale(1.05);
}

@-webkit-keyframes circle {
    0% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    100% {
      width: 200%;
      height: 200%;
      opacity: 0;
    }
}
@keyframes circle {
    0% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    100% {
      width: 200%;
      height: 200%;
      opacity: 0;
    }
}


.feature-block-three .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 80px 30px 40px 30px;
}

.feature-block-three .inner-box .lower-content .icon-box{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  top: -49px;
  width: 98px;
  height: 98px;
  line-height: 98px;
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgba(47, 117, 255, 0.1);
  border-radius: 5px;
  font-size: 50px;
  text-align: center;
  color: var(--title-color);
  z-index: 1;
  transition: all 500ms ease;
}

.feature-block-three .inner-box:hover .lower-content .icon-box{
  color: #fff;
}

.feature-block-three .inner-box .lower-content .icon-box:before{
  position: absolute;
  content: '';
  background: var(--title-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 5px;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-three .inner-box:hover .lower-content .icon-box:before{
  transform: scale(1,1);
}

.feature-block-three .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-block-three .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.feature-block-three .inner-box .lower-content h3 a:hover{
  color: var(--main-color);
}

.feature-block-three .inner-box .lower-content p{
  font-size: 16px;
}

.feature-style-three .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 735px;
  height: 895px;
  background-repeat: no-repeat;
}




























