#custom-text-one {
    float: left;
    width: 100%;
}
#services {
    float: left;
    width: 100%;
    text-align: center;
    padding: 55px 0;
    background: #FFFEF9;
    margin: 0 0 75px;
}
#services .service {
    display: flex;
    align-items: center;
}
#services .service  .service-content {
    text-align: left;
    margin: 0 15px 0 15px;
}
#services .service .service-icon {
    float: left;
    width: 75px;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
}
#services .service .service-icon img {
    max-width: 100%;
    height: 100%;
}
#services .service .service-title {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #1E1E1E;
    margin: 0 0 5px;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}
#services .service .service-desc {
    font-size: 12px;
	line-height: 140%;
    font-weight: 300;
    color: #595A5C;
}
#services .service:hover .service-icon {
    transform: rotateY(180deg);
}
#services .service:hover .service-title {
    color: #89C21E;
}
@media (max-width: 1199px) {
	#services  .product-main-dec {
        width: 70%;
    }
}
@media (max-width: 991px) {
    #services {
        padding: 50px 0 30px;
        margin: 0 0 50px;
    }
    #services .service {
        width: 50%;
        margin: 0 0 20px;
    }
    
}
@media (max-width: 575px) {
    #services {
        padding: 30px 0 0;
        margin: 0 0 30px;
    }
    #services .service {
        width: 100%;
    }
}