.bg-shape_ix {
    position: relative;
}

.bg-shape_ix:after {
    position: absolute;
    content: '';
    background-image: url(../img-3/bg-shape.png);
    background-position:  center;
    background-size:  cover;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    z-index: 8;
}

.bg-shape-two_ix {
    position: relative;
}

.bg-shape-two_ix:after {
    position: absolute;
    content: '';
    background-image: url(../img-3/bg-shape2.png);
    background-position:  center;
    background-size:  cover;
    left: 0;
    top: -1px;
    width: 100%;
    height: 90px;
    z-index: 8;
}


/*** 

====================================================================
    Section Title
====================================================================

***/

.sec-title_ix{
    position:relative;
    margin-bottom: 45px;
    padding-bottom: 25px;
    margin-top: -10px;
}

.sec-title_ix span {
    position: relative;
    color: #7432d9;
    font-size: 12px;
}

.sec-title_ix span:before {
    position: absolute;
    content: '';
    background: #ff00c6;
    height: 2px;
    width: 20px;
    top: 50%;
    margin-top: -1px;
    left: -30px;
}

.sec-title_ix span:after {
    position: absolute;
    content: '';
    background: #ff00c6;
    height: 2px;
    width: 20px;
    top: 50%;
    margin-top: -1px;
    right: -30px;
}

.sec-title_ix:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/decor.png);
    bottom: 0;
    height: 7px;
    width: 37px;
    left: 0;
}

.sec-title_ix.center:after {
    left: 50%;
    margin-left: -18.5px;
}

.sec-title_ix.small{
    margin-bottom: 40px;
}

.sec-title_ix h1{
    font-size:48px;
    color:#000;
    font-weight:900;
    padding-bottom: 8px;
    padding-top: 3px;
    letter-spacing: 2px;
    line-height:1.1em;
}

.sec-title_ix h5{
    font-size:14px;
    color:#e4007d;
    font-weight:500;
    text-transform: uppercase;
    padding-bottom:10px;
}

.sec-title_ix.light h2{
    color:#ffffff;
}

.sec-title_ix.center{
    text-align:center;
}

.sec-title_ix.small h2{
    font-size:24px;
}

.sec-title_ix .text {
    letter-spacing: 1px;
    color: #666666;
    font-size:  16px;
    font-weight:  700;
}

.sec-title_ix .icon-box {
    color: #7432d9;
    font-size: 40px;
    margin-bottom: 30px;
}

.grey-bg_ix {
    background-color:#f7f7f7 !important;
}

.grey-deep-bg_ix {
    background-color:#f4f6ff !important;
}

.black-bg_ix {
    background-color:#111 !important;
}

.theme-bg_ix {
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
}


/* section padding */

.sp-one_ix{
    padding: 100px 0;
}

.sp-two_ix {
    padding: 100px 0 70px;
}

.sp-three_ix {
    padding: 100px 0 50px;
}

.sp-four_ix {
    padding: 100px 0 0px;
}

.sp-five_ix {
    padding: 0px 0 100px;
}

.sp-six_ix {
    padding: 0px 0 50px;
}


/*Btn Style One*/

.btn-style-one_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#ffffff;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:#1e4398;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #1e4398;
}

.btn-style-one_ix.with-gradient {
    border: 0px;
    padding: 13px 42px;
    background-image: -moz-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    background-image: -webkit-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    background-image: -ms-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
}

.btn-style-one_ix:hover {
    color:#ffffff;
    background:#101010;
    border-color:#101010;
}

/*Btn Style One*/

.btn-style-two_ix {
    position:relative;
	overflow: hidden;
    padding: 11px 40px;
    border-radius: 25px;
    line-height:24px;
    color:#ffffff;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:#1e4398;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #1e4398;
	z-index: 1;
	transition: all 500ms ease;
}

.btn-style-two_ix.with-gradient {
    border: 0px;
    padding: 13px 42px;
    background-image: -moz-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    background-image: -webkit-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    background-image: -ms-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
}

.btn-style-two_ix:hover {
    color:rgb(211,22,40);
}

.btn-style-two_ix:before{
	position: absolute;
	content: '';
	background-color: #fff;
	border-radius: 25px;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: -1;
	transition: all 500ms ease;
}

.btn-style-two_ix:hover:before{
	width: 100%;
}



/*Btn Style three*/

.btn-style-three_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#1e4398;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #1e4398;
}

.btn-style-three_ix:hover {
    color:#ffffff;
    border-color:#1e4398;
    background-color:#1e4398;
}

/*Btn Style four*/

.btn-style-four_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    border-radius: 25px;
    color:#1e4398;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #1e4398;
}

.btn-style-four_ix:hover {
    color:#ffffff;
    border-color:#1e4398;
    background-color:#1e4398;
}


/*Btn Style five*/

.btn-style-five_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color: #1e4398;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background: #ffffff;
    letter-spacing:1px;
    text-transform:uppercase;
    border: 2px solid #ffffff;
}

.btn-style-five_ix:hover {
    color:#ffffff;
    background: #1e4398;
    border-color: #1e4398;
}


/*Btn Style six*/

.btn-style-six_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#1e4398;
    text-align:center;
    border-radius: 25px;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:#fff;
    letter-spacing:1px;
    text-transform:uppercase;
    border: 2px solid #ffffff;
}

.btn-style-six_ix:hover {
    color:#ffffff;
    background: #1e4398;
    border-color: #1e4398;
}



/*Btn Style seven*/

.btn-style-seven_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#fff;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #fff;
}

.btn-style-seven_ix:hover {
    color:#ffffff;
    border-color:#1e4398;
    background-color:#1e4398;
}

/*Btn Style eight*/

.btn-style-eight_ix {
    position:relative;
	overflow: hidden;
    padding: 11px 40px;
    line-height:24px;
    border-radius: 25px;
    color:#fff;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #fff;
	z-index: 1;
	transition: all 900ms ease;
}

.btn-style-eight_ix:before{
	position: absolute;
	content: '';
	background-color: #fff;
	border-radius: 25px;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: -1;
	transition: all 500ms ease;
}

.btn-style-eight_ix:hover:before{
	width: 100%;
}

.btn-style-eight_ix:hover {
    color:rgb(255,28,50);
	background: #fff;

}

/*Btn Style nine*/

.btn-style-nine_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color: #1e4398;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background: #f7f7f7;
    letter-spacing:1px;
    text-transform:uppercase;
    border: 2px solid #f7f7f7;
}

.btn-style-nine_ix:hover {
    color:#ffffff;
    background: #1e4398;
    border-color: #1e4398;
}


/*Btn Style ten*/

.btn-style-ten_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#1e4398;
    text-align:center;
    border-radius: 25px;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:#f7f7f7;
    letter-spacing:1px;
    text-transform:uppercase;
    border: 2px solid #f7f7f7;
}

.btn-style-ten_ix:hover {
    color:#ffffff;
    background: #1e4398;
    border-color: #1e4398;
}



/*Btn Style eleven*/

.btn-style-eleven_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#fff;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid rgba(255, 255, 255, 0.5);
}

.btn-style-eleven_ix:hover {
    color:#ffffff;
    border-color:#1e4398;
    background-color:#1e4398;
}

/*Btn Style twelve*/

.btn-style-twelve_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    border-radius: 25px;
    color:#fff;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid rgba(255, 255, 255, 0.5);
}

.btn-style-twelve_ix:hover {
    color:#ffffff;
    border-color:#1e4398;
    background-color:#1e4398;
}



/*Btn Style thirteen*/

.btn-style-thirteen_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    color:#222;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:1px solid #e8e8e8;
}

.btn-style-thirteen_ix:hover {
    color:#ffffff;
    border-color:#e4007d;
    background-color:#e4007d;
}

/*Btn Style fourteen*/

.btn-style-fourteen_ix {
    position:relative;
    padding: 11px 40px;
    line-height:24px;
    border-radius: 25px;
    color:#222;
    text-align:center;
    display: inline-block;
    font-size:14px;
    font-weight:700;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
    border:1px solid #666;
}

.btn-style-fourteen_ix:hover {
    color:#ffffff;
    border-color:#7439c1;
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
}

/*Btn Style fifteen*/

.btn-style-fifteen_ix {
    position:relative;
    padding: 0px 12px;
    line-height:25px;
    color:#ffffff;
    text-align:center;
    display: inline-block;
    font-size:12px;
    font-weight:600;
    background:#e4007d;
    border-radius: 12px;
    letter-spacing:1px;
    text-transform:uppercase;
    border:2px solid #1e4398;
}

.btn-style-fifteen_ix:hover {
    color:#e4007d;
    background: transparent;
    border-color:#e4007d;
}

/* btn-style-sixteen */

.btn-style-sixteen_ix {
    position:relative;
    padding: 9px 38px 18px;
    padding-left: 82px;
    border-radius: 38px;
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    line-height:24px;
    color:#fff;
    display: inline-block;
    font-size: 22px;
    font-weight:700;
    letter-spacing:1px;
    text-transform: capitalize;
}

.btn-style-sixteen_ix:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/apple.png);
    background-repeat:  no-repeat;
    left: 37px;
    top: 20px;
    width: 31px;
    height: 36px;
}

.btn-style-sixteen_ix p {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    position:  relative;
    top: 4px;
}

.btn-style-sixteen_ix span {
    position: relative;
}

.btn-style-sixteen_ix:hover {
    color: #fff;
    background-image: -moz-linear-gradient( 0deg, rgb(175,72,209) 0%, rgb(80,48,183) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(175,72,209) 0%, rgb(80,48,183) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(175,72,209) 0%, rgb(80,48,183) 100%);
    transition: .5s ease;
}

/* btn-style-seventeen */

.btn-style-seventeen_ix {
    position:relative;
    padding: 9px 38px 18px;
    padding-left: 82px;
    border-radius: 38px;
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    line-height:24px;
    color:#000;
    display: inline-block;
    font-size: 22px;
    font-weight:700;
    letter-spacing:1px;
    text-transform: capitalize;
    transition: .5s ease;
}

.btn-style-seventeen_ix:before {
    position: absolute;
    content: '';
    background: #fff;
    left: 3px;
    top: 3px;
    bottom: 3px;
    right: 3px;
    border-radius: 36px;
    transition:  .5s ease;
}

.btn-style-seventeen_ix:hover:before {
    transition:  .5s ease;
    left:  100%;
    opacity:  0;
}

.btn-style-seventeen_ix:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/google-play.png);
    background-repeat:  no-repeat;
    left: 37px;
    top: 20px;
    width: 31px;
    height: 36px;
    transition:  .5s ease;
}

.btn-style-seventeen_ix:hover:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/google-play2.png);
    transition:  .5s ease;
}

.btn-style-seventeen_ix p {
    font-size: 14px;
    color: #666;
    text-transform: capitalize;
    margin: 0;
    position:  relative;
    top: 4px;
    transition:  .5s ease;
}

.btn-style-seventeen_ix:hover p {
    color: #fff;
    transition:  .5s ease;
}

.btn-style-seventeen_ix span {
    position: relative;
}

.btn-style-seventeen_ix:hover {
    color: #fff;
}

/* btn-style-eighteen */

.btn-style-eighteen_ix {
    position:relative;
    padding: 7px 36px 16px;
    padding-left: 82px;
    border-radius: 38px;
    border: 2px solid #fff;
    line-height:24px;
    color:#fff;
    display: inline-block;
    font-size: 22px;
    font-weight:700;
    letter-spacing:1px;
    text-transform: capitalize;
}

.btn-style-eighteen_ix:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/google-play2.png);
    background-repeat:  no-repeat;
    left: 37px;
    top: 20px;
    width: 31px;
    height: 36px;
}

.btn-style-eighteen_ix p {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    position:  relative;
    top: 4px;
}

.btn-style-eighteen_ix span {
    position: relative;
}

.btn-style-eighteen_ix:hover {
    color: #fff;
}

/* btn-style-ninteen */

.btn-style-ninteen_ix {
    position:relative;
    padding: 7px 36px 16px;
    padding-left: 82px;
    border-radius: 38px;
    border: 2px solid #fff;
    line-height:24px;
    color:#fff;
    display: inline-block;
    font-size: 22px;
    font-weight:700;
    letter-spacing:1px;
    text-transform: capitalize;
}

.btn-style-ninteen_ix:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/apple.png);
    background-repeat:  no-repeat;
    left: 37px;
    top: 20px;
    width: 31px;
    height: 36px;
}

.btn-style-ninteen_ix p {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    position:  relative;
    top: 4px;
}

.btn-style-ninteen_ix span {
    position: relative;
}

.btn-style-ninteen_ix:hover {
    color: #fff;
}


/*List Style One*/

.list-style-one_ix{
    position:relative;
}

.list-style-one_ix li{
    position:relative;
    color:#848484;
    font-size:16px;
    font-weight:300;
    padding-left:28px;
    margin-bottom:10px;
}

.list-style-one_ix li:before{
    position:absolute;
    content:'\f046';
    left:0px;
    top:0px;
    font-size:16px;
    color:#1e4398;
    font-family: 'FontAwesome';
}

/*List Style Two*/

.list-style-two_ix{
    position:relative;
    margin-bottom:30px;
}

.list-style-two_ix li{
    position:relative;
    color:#848484;
    font-size:16px;
    font-weight:300;
    padding-left:20px;
    margin-bottom:6px;
}

.list-style-two_ix li:before{
    position:absolute;
    content: '';
    left:0px;
    top: 10px;
    height: 5px;
    width: 5px;
    background: #1e4398;
    font-family: 'FontAwesome';
    transform: rotate(-45deg);
}

/*List Style Three*/

.list-style-three_ix{
    position:relative;
    margin-bottom:30px;
}

.list-style-three_ix li{
    position:relative;
    color:#848484;
    font-size:16px;
    font-weight:300;
    padding-left:20px;
    margin-bottom:6px;
}

.list-style-three_ix li:before{
    position:absolute;
    content:'';
    left:0px;
    top:10px;
    width:7px;
    height:7px;
    border-radius:50%;
    background-color:#1e4398;
    font-family: 'FontAwesome';
}

.list-style-three_ix li:nth-child(2):before{
    background-color:#fd5075;
}

.list-style-three_ix li:nth-child(3):before{
    background-color:#11e6a2;
}

/*List Style four*/

.list-style-four_ix{
    position:relative;
}

.list-style-four_ix li{
    position:relative;
    color: #222;
    font-size:16px;
    font-weight:300;
    padding-left:28px;
    margin-bottom: 5px;
}

.list-style-four_ix li:before{
    position:absolute;
    content:'\f178';
    left:0px;
    top:0px;
    font-size:16px;
    color:#7432d9;
    font-family: 'FontAwesome';
}




/*

====================================================================
    Banner Section One
====================================================================

***/

.banner-section-one_ix{
    padding: 100px 0 200px;
    position:relative;
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
}

.banner-section-one_ix:after {
    position: absolute;
    content: '';
    background-image: url(../img-3/bg-shape.png);
    background-position: center;
    background-size: cover;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    z-index: 8;
}

.banner-section-one_ix .content-column .inner-column{
    position: relative;
}

.banner-section-one_ix .content-box{
    position:relative;
    max-width: 600px;
    width: 100%;
    padding: 190px 0 100px;
}

.banner-section-one_ix .content-box .title{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-section-one_ix .content-box h1{
    position:relative;
    color: #fff;
    font-size: 48px;
    line-height:58px;
    font-weight: 600;
    margin-bottom:28px;
}

.banner-section-one_ix .content-box .text{
    position:relative;
    display: block;
    font-size: 18px;
    line-height:30px;
    margin-bottom: 50px;
    color: #fff;
}

.banner-section-one_ix .content-box .btn-box{
    position: relative;
    margin: 0 -17px;
}

.banner-section-one_ix .content-box .btn-box a{
    margin: 0 17px;
    box-shadow: none;
}

.banner-section-one_ix .image-column .image {

    position: relative;
    margin-top: 100px;
}



/*** 

====================================================================
    Services Style
====================================================================

***/



/*Services Block one*/

.services-block-one_ix{
    position:relative;
    z-index:99;
}

.services-block-one_ix .inner-box{
    position:relative;
    margin: 20px 0 0;
    padding-bottom: 30px;
}

.services-block-one_ix .inner-box .icon-box img{
	transition: all 500ms ease;
}

.services-block-one_ix .inner-box:hover .icon-box img{
	transform: scale(1.2);
}

.services-block-one_ix .inner-box .image-box{
    position:relative;
    margin-bottom:20px;
}

.services-block-one_ix .inner-box h3{
    position:relative;
    font-size: 18px;
    color: #000;
    font-weight:700;
    margin-bottom: 15px;
    margin-top: 25px;
}

.services-block-one_ix .inner-box .text{
    position:relative;
    color: #222;
    font-size: 16px;
    font-weight:300;
    line-height:1.6em;
}


/* services block two */

.services-block-two_ix {
    position: relative;
    padding-bottom: 33px;
    border-bottom: 1px solid #ddd;
    margin-top: 35px;
}

.services-block-two_ix:last-child {
    border-bottom: 0px;
}

.services-block-two_ix h4 {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

.services-block-two_ix .link a {
    color: #666;
    font-size: 16px;
}

@media (min-width: 992px) {
    .services-block-two_ix:nth-child(2) {
        margin-left: 80px;
    }

    .services-block-two_ix:nth-child(3) {
        margin-left: 150px;
    }

    .services-block-two_ix:nth-child(4) {
        margin-left: 220px;
    }
}

/*Services Block three*/

.services-block-three_ix{
    position:relative;
    
}

.services-block-three_ix .inner{
    position:relative;
    padding-left: 95px;
    padding-bottom:40px;
}

.services-block-three_ix .inner .icon-box{
    position:absolute;
    left:0px;
    top:0px;
    width: 75px;
    height: 75px;
    background: #f4f6ff;
    color: #000;
    font-size: 30px;
    text-align:center;
    line-height: 75px;
    border-radius:50%;
    transition: .5s ease;
}

.services-block-three_ix .inner .icon-box span {
    position: relative;
}

.services-block-three_ix:hover .inner .icon-box {
    color: #fff;
    transition: .5s ease;
}

.services-block-three_ix .inner .icon-box:before {
    position: absolute;
    content: '';
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0,0);
    transition: .5s ease;
    border-radius: 50%;
}

.services-block-three_ix:hover .inner .icon-box:before {
    transform: scale(1,1);
    transition: .5s ease;
}

.services-block-three_ix .inner:after {
    position: absolute;
    content: '';
    background: #ff00c6;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    transition: .5s ease;
    border-radius: 50%;
}

.services-block-three_ix:hover .inner:after {
    width: 100%;
    transition: .5s ease;
}

.services-block-three_ix .inner .text{
    position:relative;
    font-weight: 400;
    padding-top: 10px;
}

/* services block four */

.services-block-four_ix{
    position:relative;
    z-index:99;
    
}

.services-block-four_ix .inner-box{
    position:relative;
    margin: 20px 0 0;
    padding-bottom: 30px;
    padding-left: 65px;
}

.services-block-four_ix .inner-box .icon-box{
    position:absolute;
    left: 0;
    top: 5px;
}

.services-block-four_ix .inner-box h3{
    position:relative;
    font-size: 18px;
    color: #000;
    font-weight:700;
    margin-bottom: 15px;
    margin-top: 25px;
}

.services-block-four_ix .inner-box .text{
    position:relative;
    color: #222;
    font-size: 16px;
    font-weight:300;
    line-height:1.6em;
}

/* services block five */

.services-block-five_ix{
    position:relative;
    z-index:99;
    
}

.services-block-five_ix .inner-box{
    position:relative;
    margin: 20px 0 0;
    padding-bottom: 30px;
    padding-right: 65px;
    text-align: right;
}

.services-block-five_ix .inner-box .icon-box{
    position:absolute;
    right: 0;
    top: 5px;
}

.services-block-five_ix .inner-box h3{
    position:relative;
    font-size: 18px;
    color: #000;
    font-weight:700;
    margin-bottom: 15px;
    margin-top: 25px;
}

.services-block-five_ix .inner-box .text{
    position:relative;
    color: #222;
    font-size: 16px;
    font-weight:300;
    line-height:1.6em;
}





/* about us */

.mockup-one_ix {
    display:  block;
    position:  relative;
    min-height: 465px;
}

.mockup-one_ix .image-box {
    position: relative;
    left: -190px;
    margin-top: -100px;
    margin-bottom: -261px;
    z-index: 9;
}

.mockup-one_ix .image-box img {
    width: auto;
    display:  block;
    max-width: inherit;
}

.about-us_ix .link-btn {
    margin-top: 60px;
}

.about-us_ix .link-btn .btn-style-seventeen {
    margin-right: 15px;
}


.mockup-two_ix {
    display:  block;
    position:  relative;
    min-height: 465px;
}

.mockup-two_ix .image-box {
    position: relative;
    left: 0;
    z-index: 9;
}

.mockup-two_ix .image-box img {
    width: auto;
    display:  block;
    max-width: inherit;
}

/* video section */


.video-image-box_ix .image {
  position: relative;
  margin: 30px 0 25px;
}

.video-image-box_ix img {
  display: block;
  width: 100%;
}

.video-image-box_ix .image .overlay-link {
    position: relative;
    font-size: 40px;
    align-items: center;
    color: #ffffff;
    text-align: center;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.video-image-box_ix .image .overlay-link:hover {
}

.video-image-box_ix .image .overlay-link .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  background: #fff;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  font-size: 29px;
  color: #1e4398;
  padding-left: 5px;
}

.video-column_ix {
    position: relative;
    text-align: center;
    padding-bottom: 40px;
}

.video-column_ix h1 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
    font-weight: 900;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.video-column_ix h1:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/decor.png);
    bottom: 0;
    height: 7px;
    width: 37px;
    left: 50%;
    margin-left: -18.5px;
}

.video-column_ix .text {
    color: #fff;
}

.mockup-three_ix {
    position: absolute;
    right: -90px;
    bottom: -140px;
    z-index: 9;
}

/* factcounter */

.counter-column_ix .inner {
    text-align: center;
    margin-bottom: 50px;
}

.counter-column_ix .count-box {
    position: relative;
    font-size: 90px;
    font-weight: 700;
    color: #000;
    line-height: 124px;
}

.counter-column_ix .count-box:before {
    position: absolute;
    content: '';
    width: 1px;
    top: 150px;
    bottom: -30px;
    right: 0;
    background: #ddd;
}

.counter-column_ix:last-child .count-box:before {
    display: none;
}

.counter-column_ix .counter-title {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.counter-column_ix .count-box .image {
    margin-bottom: 20px;
}

/* screenshot-section */

.screenshot-section_ix {
    position: relative;
}

.screenshot-section_ix .auto-container {
    max-width: 1230px;
}

.screenshot-section_ix .screenshot-column {
    margin: 0 15px;
}

.screenshot-section_ix .mb-50 {
    margin-bottom: 50px;
}

.screenshot-column .image img {
    box-shadow: 0 0 19px 3px #0000002b;
    margin: 20px 0;
}

.screenshot-section_ix .owl-nav-style-one .owl-nav {
    margin-top: 50px;
}

.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-next, 
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-prev {
    border: 0px;
    width: 30px;
    color: #ccc;
}

.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-next:hover, 
.screenshot-section_ix .owl-nav-style-one .owl-nav .owl-prev:hover {
    color: #7432d9;
}


/* call to action */

.call-to-action_ix {
    position: relative;
}

.call-to-action_ix .action-text {
    margin-bottom: 90px;
}

.call-to-action_ix .text {
    color: #fff;
    font-weight: 400;
    margin-left: 60px;
}

.call-to-action_ix .text:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/decor.png);
    top: 12px;
    height: 7px;
    width: 37px;
    left: 16px;
}

.call-to-action_ix h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    line-height: 50px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.mockup-four_ix {
    position: absolute;
    right: -30px;
    top: -152px;
    z-index: 9;
}


/* testimonials */

.testimonial-block-one_ix {
    position: relative;
    text-align: center;
}

.testimonial-block-one_ix .text {
    position: relative;
    max-width: 930px;
    margin:  0 auto;
}

.testimonial-block-one_ix .quote {
    color: #7432d9;
    font-size: 200px;
    margin-top: 100px;
    position:  relative;
    bottom: -10px;
}

.testimonial-block-one_ix .author {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-block-one_ix .designation {
    font-size: 16px;
    color: #999;
}

/* pricing table */

.pricingTable{
    text-align: center;
    background: #fff;
    padding-bottom: 30px;
}

.pricingTable:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(.9) translateY(20px);
  -ms-transform: scale(.9) translateY(20px);
  transform: scale(.9) translateY(20px);
  background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
  transition: all 500ms ease;
}

.pricingTable:hover:before{
  opacity: 1;
  -webkit-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.pricingTable.active {
    position: relative;
    z-index: 5;
    top: -30px;
    margin-bottom: -30px;
    padding-bottom: 50px;
    background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
    /* box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.35); */
}

.pricingTable.active:before{
	display: none;
}

.pricing-section_ix sp-four_ix grey-deep-bg_ix bg-shape_ix.o-hidden .sec-title_ix{
	margin-top: 50px;
}
.pricingTable:hover .btn-block,
.pricingTable:hover .price-value{
}

.pricingTable > .pricingTable-header{
    color:#333333;
    padding-top: 30px;
}
.pricingTable-header > .price-value{
	position: relative;
    display: block;
    padding: 25px 0 0;
    border-radius: 50%;
    font-size: 50px;
    color: #000;
    transition: all 0.5s ease 0s;
    font-weight: 700;
}
.price-value > .mo{
	position: relative;
    display: block;
    font-size: 12px;
    margin-top: 15px;
    font-weight:  300;
    color:  #666;
    text-transform:  uppercase;
	transition: all 0.5s ease 0s;
}
.pricingTable-header > .heading{
    display: block;
    padding-top: 20px;
}
.heading > h3{
	position: relative;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color:  #ff1c32;
    font-weight:  300;
	transition: all 0.5s ease 0s;
}
.pricingTable > .pricingContent{
    margin-top: 25px;
}
.pricingTable > .pricingContent > ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.pricingTable > .pricingContent > ul > li{
	position: relative;
    padding: 6px 0;
	transition: all 0.5s ease 0s;
}
.pricingTable-sign-up{
    padding: 40px 0 60px;
}
.pricingTable-sign-up > .btn-block{
    width: 50%;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 0px;
    background: #ff5722;
    color:#fff;
    text-transform: uppercase;
    font-size: 17px;
    border: 0px none;
    transition: all 0.4s ease 0s;
}
.mid .price-value,
.mid .btn-block{
    background: #ffa000;
}
@media screen and (max-width: 990px){
    .pricingTable{
        margin-bottom: 20px;
    }
}

.pricingTable.active .heading > h3,
.pricingTable:hover .heading > h3{
    color: #fff;
}

.pricingTable.active .price-value > .mo,
.pricingTable:hover .price-value > .mo{
    color: #fff;
}

.pricingTable.active .pricingTable-header > .price-value,
.pricingTable:hover .pricingTable-header > .price-value{
    color: #fff;
}

.pricingTable.active .pricingContent > ul > li,
.pricingTable:hover .pricingContent > ul > li{
    color: #fff;
}
.pricingTable.active .pricingTable-header {
    padding-top: 50px;
}

/*pricing table style two*/

.pricingTable-two{
    text-align: center;
    background: #fff;
    padding-bottom: 30px;
    margin-top: 60px;
}
.pricingTable-two.active {
    position: relative;
    z-index: 5;
    top: -30px;
    margin-bottom: -30px;
    padding-bottom: 50px;
    box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.35);
}
.pricingTable-two.active:before {
    position: absolute;
    content: '';
    background: #7432d9;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
}
.pricingTable-two.active .pricingTable-header{
    position: relative;
    overflow: hidden;
}
.pricingTable-two.active .pricingTable-header:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    border: 24px solid transparent;
    border-right-color: #7432d9;
    border-top-color: #7432d9;
}
.pricingTable-two.active .pricingTable-header:after {
    position: absolute;
    content: "\f107";
    font-size: 16px;
    font-family: flaticon;
    color: #efce4a;
    right: 6px;
    top: 2px;
    cursor: pointer;
}
.pricingTable-two:hover .btn-block,
.pricingTable-two:hover .price-value{
}
.pricingTable-two > .pricingTable-two-header{
    color:#333333;
    padding-top: 30px;
}
.pricingTable-two-header > .price-value{
    display: block;
    padding: 25px 0 0;
    border-radius: 50%;
    font-size: 50px;
    color: #000;
    transition: all 0.4s ease 0s;
    font-weight: 700;
}
.price-value > .mo{
	position: relative;
    display: block;
    font-size: 12px;
    margin-top: 15px;
    font-weight:  300;
    color:  #666;
    text-transform:  uppercase;
}
.pricingTable-two-header > .heading{
    display: block;
    padding-top: 20px;
}
.heading > h3{
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color:  #ff1c32;
    font-weight:  300;
}
.pricingTable-two > .pricingContent{
    margin-top: 25px;
}
.pricingTable-two > .pricingContent > ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.pricingTable-two > .pricingContent > ul > li{
    padding: 6px 0;
}
.pricingTable-two-sign-up{
    padding: 40px 0;
}
.pricingTable-two-sign-up > .btn-block{
    width: 50%;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 0px;
    background: #ff5722;
    color:#fff;
    text-transform: uppercase;
    font-size: 17px;
    border: 0px none;
    transition: all 0.4s ease 0s;
}
.mid .price-value,
.mid .btn-block{
    background: #ffa000;
}
@media screen and (max-width: 990px){
    .pricingTable-two{
        margin-bottom: 20px;
    }
}


/* news block one */

.news-block-one_ix {
  position: relative;
  transition: .5s ease-in-out;
  margin-bottom: 50px;
}

.news-block-one_ix .image {
    display: block;
    position: relative;
    margin: 0;
}

.news-block-one_ix .image picture{
	position: relative;
	display: block;
	overflow: hidden;
}

.news-block-one_ix .image picture img{
	width: 100%;
	transition: all 1500ms ease;
}

.news-block-one_ix:hover .image picture img{
	transform: scale(1.2);
}

.news-block-one_ix .lower-content{
  position:relative;
  padding-top: 35px;
}

.news-block-one_ix .date {
  position: absolute;
  right: 30px;
  bottom: -10px;
  height: 70px;
  width: 70px;
  background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
  line-height: 20px;
  padding-top: 13px;
  z-index: 9;
  color: #fff;
  text-align: center;
}

.news-block-one_ix .lower-content .text p{
  margin-bottom: 10px;
}

.news-block-one_ix .lower-content h4 {
  color:#222;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}

.news-block-one_ix .lower-content h4 a{
  color:#222;
  transition: all 300ms ease;
  font-size: 22px;
}

.news-block-one_ix .lower-content h4 a:hover{
  color:#ff00c6;
  transition: all 300ms ease;
}

.news-block-one_ix .lower-content .link {
    margin-top: 30px;
}

.news-block-one_ix .lower-content .link a {
    color: #666;
    font-weight: 700;
    font-size: 16px;
}

/* download app */

.download-app_ix {
    position: relative;
}

.download-app_ix .action-text {
    margin-bottom: 5px;
}

.download-app_ix .text span {
    position: relative;
    color: #ffffff;
    font-size: 12px;
    margin-left: 30px;
}

.download-app_ix .text span:before {
    position: absolute;
    content: '';
    background: #ff00c6;
    height: 2px;
    width: 20px;
    top: 50%;
    margin-top: -1px;
    left: -30px;
}

.download-app_ix .text span:after {
    position: absolute;
    content: '';
    background: #ff00c6;
    height: 2px;
    width: 20px;
    top: 50%;
    margin-top: -1px;
    right: -30px;
}


.download-app_ix h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    line-height: 50px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.download-app_ix .text {
    color: #fff;
}

.download-app_ix .link-btn {
    margin-top: 50px;
}

.download-app_ix .btn-style-eighteen {
    margin-right: 15px;
}

.mockup-five_ix {
    position: absolute;
    left: -350px;
    top: -190px;
    z-index: 9;
}

.mockup-five_ix img {
    max-width: none;
}


/* map style */

.map-section_ix .google-map {
    height: 680px;
}

/*Contact Form*/

.contact-form_ix h2{
    position:relative;
}

.contact-form_ix .form-group:last-child{
    margin-bottom:0px;
}

.contact-form_ix input[type="text"],
.contact-form_ix input[type="email"],
.contact-form_ix input[type="password"],
.contact-form_ix select,
.contact-form_ix textarea{
    display:block;
    width:100%;
    height:55px;
    font-size:16px;
    color:#848484;
    line-height:30px;
    padding:12px 25px;
    font-weight:300;
    background-color:#ffffff;
    border:1px solid #ececec;
    transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;   
}

.contact-form_ix input:focus,
.contact-form_ix select:focus,
.contact-form_ix textarea:focus{
    border-color: #1e4398;
}

.contact-form_ix textarea{
    height:150px;
    resize:none;
    padding:12px 25px;  
}

.contact-form_ix button{
    font-size:14px;
    padding:10px 41px 10px;
    cursor: pointer;
}

.contact-form_ix input.error,
.contact-form_ix select.error,
.contact-form_ix textarea.error{
    border-color:#ff0000 !important;    
}

.contact-form_ix label.error{
    display:block;
    line-height:24px;
    padding:5px 0px 0px;
    margin:0px;
    text-transform:uppercase;
    font-size:11px;
    color:#ff0000;
    font-weight:500;    
}


/* contact-form sytle four */

.contact_form_area_ix {
    position: relative;
}

.contact-form_ix.style-four h4 {
    color: #000;
    margin-bottom: 10px;
}

.contact-form_ix.style-four {
    position: absolute;
    max-width: 450px;
    right:  0;
    bottom: -40px;
    background:  #fff;
    padding: 40px 50px 50px;
    box-shadow:  0px 15px 45px 0px rgba(0, 0, 0, 0.25);
    z-index: 9;
}

.contact-form_ix.style-four .form-group {
    margin-bottom: 20px;
}

.contact-form_ix.style-four .form-group .btn-style-two {
    margin-top: 20px;
}

.contact-form_ix.style-four input[type="text"], 
.contact-form_ix.style-four input[type="email"], 
.contact-form_ix.style-four input[type="password"], 
.contact-form_ix.style-four select, 
.contact-form_ix.style-four textarea {
    padding: 0px;
    border: none;
    border-bottom: 1px solid #ddd;
    height: 45px;
}

.contact-form_ix.style-four textarea {
    height: 190px;   
}



/* info-box one */

.info-box-one_ix{
    position:relative;
    min-height:56px;
    font-size:13px;
    color:#777777;
    border: 1px solid #ddd;
    text-transform:uppercase;
    padding: 30px 0px 30px 95px;
}

.info-box-one_ix .icon-box{
    position:absolute;
    left: 40px;
    top: 36px;
    color: #7432d9;
    font-size: 40px;
    text-align:left;
    line-height:1.2em;
    -moz-transition:all 300ms ease;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    transition:all 300ms ease;
}

.info-box-one_ix li{
    position:relative;
    line-height:28px;
    color:#000;
    font-size:22px;
    margin-bottom:3px;
    font-weight:400;
    text-transform:capitalize;
}

.info-box-one_ix p {
    font-weight:400;
    color:#222222;
    font-size:14px;
    margin:  0;
}




/*** 

====================================================================
    Main Footer Style
====================================================================

***/



.footer-top_ix .flex-box {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

@media (min-width: 1500px) {
    .footer-top_ix .flex-box li {
        width: 16.6666666%;
    }
}

.footer-top_ix .flex-box li {
    text-align: center;
    background: #2a2a2a;
    color: #fff;
    padding: 17px 40px;
}

.footer-top_ix .flex-box li a {
    color: #fff;
}

.footer-top_ix .flex-box li span {
    color: #ff1c32;
    font-size: 16px;
    margin-right: 5px;
}

.footer-top_ix .flex-box li.bg-two {
    background: #333;
}


/*footer bottom*/

.footer-bottom_ix {
    position: relative;
    padding: 36px 0;
    color: #999;
}

.footer-bottom_ix .footer-copyright a {
    color: #fff;
}

.footer-bottom_ix .footer-menu li {
    display: inline-block;
}

.footer-bottom_ix .footer-menu li a {
    color: #848484;
}









.grey-bg {
	background-color:#f7f7f7 !important;
}

.grey-deep-bg {
	background-color:#f4f6ff !important;
}

.black-bg {
	background-color:#111 !important;
}

.theme-bg {
	background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
}


/* parallax-one */

.parallax-bg {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.parallax-bg:before {
	position: absolute;
	content: '';
	background-image: -moz-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(80,48,183) 0%, rgb(175,72,209) 100%);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: .9;
}
.mockup-four {
    position: absolute;
    right: -30px;
    top: -152px;
    z-index: 9;
}
.theme-btn.btn-style-two.with-gradient {
	overflow: hidden;
    border: 0px;
    padding: 13px 42px;
    background-image: -moz-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    background-image: -webkit-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    background-image: -ms-linear-gradient( -55deg, rgb(211,22,40) 0%, rgb(255,28,50) 100%);
    border-radius: 25px;
	box-shadow:none!important;
}
.btn-style-eighteen {
    position: relative;
    padding: 7px 36px 16px;
    padding-left: 82px;
    border-radius: 38px;
    border: 2px solid #fff;
    line-height: 24px; 
    color: #fff;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.btn-style-ninteen {
    position: relative;
    padding: 7px 36px 16px;
    padding-left: 82px;
    border-radius: 38px;
    border: 2px solid #fff;
    line-height: 24px;
    color: #fff;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.btn-style-eighteen p {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    top: 4px;
}

.btn-style-ninteen p {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    top: 4px;
}
.btn-style-eighteen:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/google-play2.png);
    background-repeat: no-repeat;
    left: 37px;
    top: 20px;
    width: 31px;
    height: 36px;
}
.btn-style-ninteen:after {
    position: absolute;
    content: '';
    background: url(../img-3/icons/apple.png);
    background-repeat: no-repeat;
    left: 37px;
    top: 20px;
    width: 31px;
    height: 36px;
}
.separator {
    border-bottom: 1px solid #ddd;
}