:root{
    --primary-color : #FF9300;
    --primary-color-2: #FF0056;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.header-box{
    text-align: center;
    position: relative;
}

.header-box:after{
  content: '';
  display: block;
  background-color: #e62e00;
  width: 100px;
  height: 5px;
  margin: 10px auto;
  position: relative;

}

.header-box:before{
  content: '';
  display: block;
  background-color: #cccccc;
  width: 350px;
  height: 3px;
  position: absolute; 
  top: 97%;
    left: 50%;
  transform: translateX(-50%);
}


.features-section{
  padding: 30px 0;
}

/******************
  section-info-2
********************/

.features-section {
    background: #E3E8ED;
}

 .info-item {
    display: flex;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 20%);
    background: #fff;
    position: relative;
    padding: 30px 30px 30px 50px;
    margin-left: 25px;
    z-index: 1;
    background-size: 100% 100%;
    transition: 0.5s ease;
}

 .info-item:before{
    transition: .3s cubic-bezier(.24,.74,.58,1);
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    /*background-color: #082680;*/
    /*background-image: url("../images/info-2/bg-line.png");*/
    background: var(--data-gr);
/*    background: linear-gradient(to right,#FF9300,#FF0056);*/
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
    z-index: -2;
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transition-delay: .05s;
    transition: 0.5s ease;
}
 .info-item-bg{
    transition: .3s cubic-bezier(.24,.74,.58,1);
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #00000080;   
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
    z-index: -2;
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transition-delay: .05s;
    transition: 0.5s ease;
}



 .info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #121314;
    color: #fff;
    position: absolute;
    left: -10%;
    top: 38%;
    transform: translateY(-50%);
    font-size: 25px;
    text-align: center;
    line-height: 64px;
}

 .info-icon>i{
    margin: 13px 0 0 7px;
    display: block;
 }

 .info-icon:after{
    transition: .3s cubic-bezier(.24,.74,.58,1);
    content: '';
    position: absolute;
    bottom: 5px;
    right: -4px;
    background: linear-gradient(to right,#FF9300,#FF0056);
    z-index: -1;
    opacity: 1;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -webkit-transition-delay: .05s;
    transition: 0.5s ease;
}

 .info-content {
    position: relative;
}

.info-title a{
  font-weight: 900;
  color:  #121314;
}

/******************
  HOVER-EFFECT
********************/
.info-item:hover{
   transition: 0.5s ease;
/*    background-color: #121314;*/
    background: linear-gradient(to right ,var(--primary-color),var(--primary-color-2));
    margin-top: -10px;
    color: #fff;
    border-radius: 5px;
}

.info-item:hover:before,.info-item:hover > .info-item-bg{
    opacity: 1;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
}


.info-item:hover:after{
    background-blend-mode: overlay;
}

.info-item:hover .info-title a, .info-item:hover .info-content p{
  color: #fff;
}


/******************
  section-info-2 end
********************/
