/** feature-section **/

.feature-section{
    position: relative;
    display: block;
    background: #f0eee7;
    padding: 144px 0px;
  }
  
  .feature-section .image-column{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .feature-section .sec-title{
    margin-bottom: 41px;
  }
  
  .feature-section .inner-box .single-item{
    position: relative;
    display: block;
    padding: 0px 0px 0px 105px;
    margin-bottom: 50px;
  }
  
  .feature-section .inner-box .single-item:last-child{
    margin-bottom: 0px;
  }
  
  .feature-section .inner-box .single-item .icon-box{
    position: absolute;
    left: 0px;
    top: -1px;
    font-size: 40px;
    width: 85px;
    height: 85px;
    line-height: 85px;
    color: #fff;
    background: #fbb419;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
  }
  
  .feature-section .inner-box .single-item .icon-box:before{
    position: absolute;
    content: '';
    background: #2b3c6b;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    transform: scale(0,0);
    z-index: -1;
    transition: all 500ms ease;
  }
  
  .feature-section .inner-box .single-item:hover .icon-box:before{
    transform: scale(1,1);
  }
  
  .feature-section .inner-box .single-item:nth-child(2) .icon-box{
    background: #43b3d9;
  }
  
  .feature-section .inner-box .single-item:last-child .icon-box{
    background: var(--main-color);
  }

/** cta-section **/
.cta-section{
    position: relative;
    display: block;
    width: 100%;
    background: #9321eb;
    padding: 95px 0px 100px 0px;
  }
  
  .cta-section .content-box h3{
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    font-weight: 900;
    margin-bottom: 11px;
  }
  
  .cta-section .content-box h1{
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 70px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
  }
  
  .cta-section .content-box .text{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #dfbdf9;
    font-weight: 600;
    margin-bottom: 36px;
  }
  .parallax-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
  