@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);

html > body * {
	outline: none !important;
}
body {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', arial, sans-serif;	
	background: #fff;
	word-wrap: break-word;
}
*, html, body {
	margin: 0;
	padding: 0;
	text-decoration: none;
}
img {border: none;}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 500;
}
p, label, li, input, select, textarea, button {
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 400;
	color: #555;
}
.grnbtn{
	display:inline-block;
	min-width:200px;
	min-height:50px;
	background:#7bb530;
	color:#fff;	
	font-weight: 500;
	font-size: 18px;	
	line-height:50px;
	border-radius:8px;
	text-align:center;
	text-decoration:none;	
	transition: 0.3s ease;
	}
.grnbtn:hover{background:#32a0da; color:#fff;}

@media  (max-width: 768px) {
.grnbtn{min-width:150px; min-height:40px; font-size: 16px; line-height:40px;}	
}

/****************** Header *****************/

header{
	float:left;
	width:100%;	
	background:#fff;
	box-shadow:0px 0px 20px rgba(0,0,0,0.30);
}

.logo{float:left; padding:15px 0px;}
.logo img{max-height:44px;}

.topbtn{float:right; margin-top:18px;}
.topbtn a{
	float:right;
	color:#fff;
	text-decoration:none;	
	background:#71ae32;
	font-weight: 500;
	font-size: 16px;
	height:40px;
	line-height:38px;
	border-radius:20px;
	padding:0px 20px;
	min-width:110px;
	text-align:center;
	transition: 0.3s ease;
	}	
.topbtn a:hover{background:#32a0da;}

/****************** Navigation *****************/	

.menubar{float:right; position:relative;}
.menu{float:right;}
.menu ul{
	float:right;	
	margin:0px;
	padding:0px;
	list-style: none;
	}
.menu ul li{
	float:left;
	font-weight: 500;
	font-size: 16px;
	margin-left:40px;
	line-height:70px;
	}	
.menu ul li a{
	float:left;
	color:#333;
	text-decoration: none;
	height:74px;
	border-bottom:solid 5px #fff;
	}
.menu ul li a.active{color:#df4e27; border-bottom:solid 5px #8cc443;}
.menu ul li a.show{color:#487f00; border-bottom:solid 5px #32a0da;}	
.menu ul li a:hover{color:#487f00;}	

.menu ul li ul.dropdown-menu{min-width:200px; background:#fff;}
.menu ul li ul.dropdown-menu li{
	width:100%;
	font-size: 14px;
	line-height:20px;
	margin-left:0px;
	border-bottom:solid 1px #ddd;
	}
.menu ul li ul.dropdown-menu li a{
	padding:12px 15px;
	width:100%;
	height:auto;
	border-bottom:none;
	}

.menu ul li ul li.active a{color:#df4e27; border-left:solid 4px #8cc443;}	
.menu ul li ul li a:hover{color:#487f00;}
.menu .dropdown-toggle::after{color:#487f00;}	
.navbar-toggler {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0px;
	top: 0px;	
	transition: .5s ease-in-out;
	transform: rotate(0deg);
}
.navbar-toggler span{
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.navbar-toggler span:nth-child(1) {top: 0px;}
.navbar-toggler span:nth-child(2) {top: 10px;}
.navbar-toggler span:nth-child(3) {top: 20px;}

.navbar-toggler.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navbar-toggler.open span:nth-child(2) {opacity: 0; left: -60px;}
.navbar-toggler.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.navbar-toggler.open span{background: #333;}	
.navbar-toggler:focus{box-shadow:none;}

@media  (max-width: 991px) {
.menubar{margin-top:25px;}
.menu{width:200px; position:absolute; top:50px; right:0px; background:#fff; box-shadow:0px 2px 2px #666;}
.menu ul{width: 100%;}
.menu ul li{width: 100%; font-size:14px; margin-left:0px; border-bottom: solid 1px #ddd; line-height:24px;}	
.menu ul li a{width: 100%; padding: 12px 15px 10px 15px; height:auto; border-bottom:solid 2px #fff;}
.menu ul li a.active{border-bottom:solid 2px #8cc443;}
.menu ul li a.show{border-bottom:solid 2px #32a0da;}
.menu ul li ul.dropdown-menu{background:#ebf0ff;}
.menu ul li ul.dropdown-menu li{border-bottom:solid 1px #bbb;}
}

@media  (max-width: 768px) {
.logo{padding:10px 0px;}
.logo img{max-height:30px;}
.topbtn{margin-top:10px;}
.topbtn a{font-size: 13px; height:32px; line-height:30px; border-radius:16px; padding:0px 15px; min-width:80px;}
.menubar{margin-top:13px;}
.menu{top:38px;}
}

/****************** footer *****************/	

footer{
	float:left;
	width:100%;
	background:#0d162d;
}
.footer-link{
	float:left;
	width:100%;
	}
.footer-link h5{
	font-weight: 300;
	font-size: 18px;
	line-height:20px;
	color:#dce3e8;
	position:relative;
	margin: 40px 0px 20px 0px;
	padding-left:10px;
	border-left:solid 2px #28a9e0;
	}
.footer-link h5::after{
	content: ' ';
	height: 10px;
	background: url("../../images/line.png") no-repeat;
	width:35px;
	display: inline-block;
	margin-left:15px;
	}
.footer-link p{
	font-weight: 300;
	font-size: 16px;
	line-height:36px;
	margin:0px;
	}
.footer-link p a{
	color:#7f99aa;	
	text-decoration:none;
	transition: 0.3s ease;
	}
.footer-link p a:hover{color:#8cc443;}

.app-link{
	float:left;
	width:100%;
	margin:50px 0px 30px 0px;
	}
.app-link p{float:left; width:110px; margin:0px 15px 10px 0px;}
.app-link p i{width:100%; height: 34px; display: inline-block; text-indent:-9999px;}	
.app-link p i.googlestore{background: url("../../images/icons/google-play.svg") no-repeat; background-size: 110px;}
.app-link p i.appstore{background: url("../../images/icons/app-store.svg") no-repeat; background-size: 110px;}	

.social-link{
	float:left;
	width:100%;	
	}
.social-link p{
	color:#929da5;
	font-weight: 300;
	font-size: 14px;
	line-height:34px;
	margin:0px 10px 0px 0px;
	float:left;
	}
.social-link ul{
	float:left;
	width:100%;
	margin:0px;
	padding:0px;
	list-style: none;	
	}	
.social-link ul li{float:left; margin:0px 20px 10px 0px;}
.social-link ul li a{
	float:left;
	width:40px;
	height:40px;
	text-indent:-9999px;	
	border-radius: 50%;
	transition: 0.3s ease;
	}
.social-link ul li:hover a{margin-top:-5px;}

.social-link ul li.fb a{background: url("../../images/icons/facebook.svg") no-repeat center center; background-size: 40px;}
.social-link ul li.twr a{background: url("../../images/icons/twitter.svg") no-repeat center center; background-size: 40px;}
.social-link ul li.ln a{background: url("../../images/icons/linkedin.svg") no-repeat center center; background-size: 40px;}
.social-link ul li.ing a{background: url("../../images/icons/instagram.svg") no-repeat center center; background-size: 40px;}

.footer-txt{
	float:left;
	width:100%;
	background:#05151f;	
	padding: 15px 0px;
	margin-top: 30px;
}
.footer-txt p{
	float:left;
	font-weight: 300;
	font-size: 14px;
	color:#999;
	margin-bottom:0px;
}
.footer-txt p.right{float:right;}

@media  (max-width: 575px) {	
.footer-link h5{margin: 20px 0px 10px 0px;}
.footer-txt p{width:100%; text-align: center;}	
}

.back-to-top {
	cursor: pointer;
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 199;
	display: none;
	transition: 0.5s ease;
	background: url(../../images/back-to-top.png) no-repeat center center;
	opacity: 0.5;
	border-radius: 20px;
	text-indent: -9999px;
}
.back-to-top:hover {opacity: 0.99;}

/****************** Home Banner  *****************/

.banner-container{
	float:left;	
	width:100%;	
	background:#f3f6ff;
	padding: 110px 0px 0px 0px;
	border-bottom:solid 1px #e6e8ee;
}
.bannertxt{
	float:left;
	width:100%;	
	}
.bannertxt h2{	
	font-size: 40px;
	font-weight: 700;
	color:#113a60;		
	margin: 30px 0px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.bannertxt p{
	font-size: 17px;	
	margin-bottom: 20px;
	}
.bannertxt p span{
	font-weight: 500;	
	color:#df4e27;
	}
.bannertxt a.grnbtn{margin:10px 0px;}
	
.bannerimg{
	float:left;
	width:100%;
	text-align:right;
	}
.carousel-indicators{bottom:30px;}
.carousel-indicators a{
	display:inline-block;
	width:16px;
	height: 16px;
	background:#f3f6ff;
	margin:0px 4px;
	border: solid 1px #71ae32;
	border-radius:16px;
	cursor:pointer;
}
.carousel-indicators a:hover{background:#71ae32;}
.carousel-indicators a.active{background:#f05125; border: solid 1px #f05125;}

@media  (max-width: 991px) {	
.bannertxt h2{font-size: 30px; margin: 10px 0px;}
.bannertxt p{font-size: 16px; margin-bottom: 10px;}	
}

@media  (max-width: 768px) {
.banner-container{padding:75px 0px 0px 0px;}	
.bannertxt{text-align:center;}	
.bannertxt h2{font-size: 24px;}
.bannerimg{padding-top: 15px; text-align:center;}
.carousel-indicators{bottom:20px;}
.carousel-indicators a{width:14px; height: 14px; border-radius:14px;}	
}

/****************** Home Services  *****************/

.services-container{
	float:left;	
	width:100%;
	padding: 80px 0px;
	}
.servicestab{
	float:left;	
	width:100%;
	}
.servicestab ul{
	float:left;	
	width:100%;
	margin:0px;
	padding:0px;
	list-style:none;
	}
.servicestab ul li{
	float:left;	
	width:100%;
	margin-bottom:18px;	
	}
.servicestab ul li a{
	float:left;	
	width:100%;
	color:#333;
	font-size:18px;
	font-weight:500;
	line-height: 50px;
	background:#f3f6ff;
	padding:10px;
	border-radius:5px;	
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	transition: 0.3s ease;
	text-decoration:none;	
	}
.servicestab ul li a:hover{color:#000; box-shadow: 0px 0px 15px rgba(0,0,0,0.25);}
.servicestab ul li a i{
	float:left;	
	width:50px;
	height:50px;
	background:#fff;	
	border-radius:5px;
	border:solid 1px #e5e5e5;
	margin-right: 15px;	
	}
.servicestab ul li a i.remittance{background:#fff url("../../images/icons/remittance.svg")no-repeat center center; background-size:30px;}	
.servicestab ul li a i.banking{background:#fff url("../../images/icons/banking.svg")no-repeat center center; background-size:30px;}
.servicestab ul li a i.digital{background:#fff url("../../images/icons/digital.svg")no-repeat center center; background-size:28px;}	
.servicestab ul li a i.utility{background:#fff url("../../images/icons/billpay.svg")no-repeat center center; background-size:26px;}
	
.serviceshome{
	float:left;
	width:100%;
	padding-left: 30px;
}
.serviceshome img{
	float:left;
	width:100px;
	margin:0px 30px 10px 0px;
	}
.serviceshome h2{	
	font-size: 40px;	
	color:#113a60;		
	margin-bottom: 30px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.serviceshome p{
	font-size: 16px;
	margin-bottom: 20px;
	}
.serviceshome a.grnbtn{margin-top: 10px;}

@media  (max-width: 991px) {
.services-container{padding: 60px 0px;}	
.servicestab ul li a{font-size:16px;}
.servicestab ul li a i{margin-right:12px;}
.serviceshome{padding-left: 20px;}
.serviceshome h2{font-size: 32px;}
.serviceshome img{width:80px; margin:0px 20px 10px 0px;}
.serviceshome p{font-size: 16px; margin-bottom: 10px;}	
}

@media  (max-width: 768px) {
.services-container{padding: 40px 0px;}
.servicestab ul li{margin-bottom:15px;}
.serviceshome{padding-left:0px; padding-top:15px;}
.serviceshome h2{font-size: 22px; margin-bottom: 15px;}
.serviceshome img{width:70px; margin:0px 15px 10px 0px;}
}

/****************** Home Solutions *****************/

.solhome-container{
	float:left;	
	width:100%;	
	background:#f3f6ff;
	padding: 70px 0px 0px 0px;
	}	
.hometxt{
	float:left;
	width:100%;
	}
.hometxt h2{	
	font-size: 32px;	
	color:#113a60;		
	margin-bottom: 20px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.hometxt h3{	
	font-size: 24px;	
	color:#113a60;		
	margin-bottom: 10px;	
	}	
.hometxt p{
	font-size: 17px;
	margin-bottom: 15px;
	}
.hometxt a.grnbtn{margin-top: 30px;}	
	
.hometxt ul{
	float:left;
	width:100%;	
	margin:0px;
	padding:0px;
	list-style:none;
	}
.hometxt ul li{
	float:left;
	width:34%;
	font-size: 17px;
	margin-bottom: 5px;
	padding-left: 20px;
	background:url("../../images/list.png")no-repeat 0px 6px;
	}	
.hometxtimg{
	float:left;
	width:100%;
	padding-top:10px;	
	}
.hometxtimg img{
	float:left;
	width:580px;
	margin-left:-310px;
	}	

@media  (min-width: 992px) and (max-width: 1199px) {
.hometxtimg{padding-top:110px;}
.hometxtimg img{width:500px; margin-left:-270px;}	
}

@media  (max-width: 991px) {	
.solhome-container{padding: 50px 0px;}	
.hometxt h2{font-size: 30px;}
.hometxt p{font-size: 16px; margin-bottom: 10px;}
.hometxt ul li{width:33%; font-size: 16px;}	
}

@media  (max-width: 768px) {	
.solhome-container{padding: 40px 0px;}	
.hometxt h2{font-size: 22px;}
.hometxt h3{font-size: 18px;}
.hometxt ul li{width:50%;}	
}	

/****************** About Home Solutions *****************/

.abouthome-container{
	float:left;	
	width:100%;	
	background:#071026 url("../../images/homebg.jpg")no-repeat fixed;
	background-size:cover;
	padding: 80px 0px;
	}
.abouthometxt{
	float:left;
	width:100%;
	text-align:center;
	margin-bottom:30px;
	}
.abouthometxt h2{	
	font-size: 34px;	
	color:#fff;		
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px #000;
	}	
.abouthometxt p{
	font-size: 17px;
	color:#28a9e0;
	margin-bottom: 15px;
	}	
.abouthomebox{
	float:left;
	width:100%;
	text-align:center;
	background:rgba(255,255,255,0.12);
	padding: 35px 10px;
	border-radius:15px;
	margin-top:20px;
	transition: 0.3s ease;
	}
.abouthomebox:hover{background:rgba(255,255,255,0.20); box-shadow: 0px 0px 10px #000;}
	
.abouthomebox i{
	display:inline-block;
	width:100px;
	height:100px;
	text-align:center;
	background:#fff;	
	border-radius:50%;
	}
.abouthomebox i.retailer{background:#fff url("../../images/icons/retailer.svg")no-repeat center center; background-size:48px;}
.abouthomebox i.location{background:#fff url("../../images/icons/location.svg")no-repeat center center; background-size:52px;}
.abouthomebox i.txns{background:#fff url("../../images/icons/txn.svg")no-repeat center center; background-size:46px;}	
.abouthomebox i.growth{background:#fff url("../../images/icons/report.svg")no-repeat center center; background-size:56px;}	
	
.abouthomebox h4{
	font-size: 32px;	
	color:#8cc443;			
	margin-bottom: 10px;
	}	
.abouthomebox h4 span{color:#faae43;}
	
.abouthomebox p{
	font-size: 18px;
	color:#fff;
	margin-bottom: 0px;
	}

@media  (max-width: 768px) {
.abouthome-container{padding: 50px 0px;}
.abouthometxt{margin-bottom:5px;}
.abouthometxt h2{font-size: 24px;}	
.abouthometxt p{font-size: 16px;}
.abouthometxt p br{display:none;}
.abouthomebox{padding: 30px 10px;}
}

/****************** Advantage Home *****************/

.advantage-container{
	float:left;	
	width:100%;	
	background:#fff;
	padding: 70px 0px 0px 0px;
	}	
.advantage{
	float:left;
	width:100%;
}
.advantage h2{	
	font-size: 40px;	
	color:#113a60;		
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.advantage p{
	font-size: 17px;
	margin-bottom: 10px;
	}
	
.advantagebox{
	float:left;	
	width:100%;
	min-height:180px;
	background:#f3f6ff;
	padding:15px;
	border-radius:5px;	
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	transition: 0.3s ease;
	text-align:center;
	margin-top:25px;
	}
.advantagebox:hover{box-shadow: 0px 0px 15px rgba(0,0,0,0.30);}	
	
.advantagebox h5{	
	color:#364f5c;
	font-size:16px;
	}	
.advantagebox i{
	display:inline-block;	
	width:80px;
	height:80px;
	background:#fff;	
	border-radius:50%;
	border:solid 1px #e5e5e5;
	}
.advantagebox i.instant{background:#fff url("../../images/icons/handshake.svg")no-repeat center center; background-size:50px;}
.advantagebox i.business{background:#fff url("../../images/icons/briefcase.svg")no-repeat center center; background-size:40px;}
.advantagebox i.system{background:#fff url("../../images/icons/setting.svg")no-repeat center center; background-size:42px;}	
.advantagebox i.secure{background:#fff url("../../images/icons/shield.svg")no-repeat center center; background-size:44px;}	
.advantagebox i.shop{background:#fff url("../../images/icons/shop.svg")no-repeat center center; background-size:40px;}	
.advantagebox i.team{background:#fff url("../../images/icons/training.svg")no-repeat center center; background-size:44px;}	

@media  (max-width: 991px) {
.advantage-container{padding: 40px 0px;}	
.advantage h2{font-size: 30px;}
.advantage p{font-size: 16px;}
}

@media  (max-width: 768px) {
.advantage{text-align:center;}
.advantage h2{font-size: 24px;}
.advantage p{font-size: 16px;}
}

/****************** Partner Home *****************/

.partner-container{
	float:left;	
	width:100%;	
	background:#f3f6ff;
	padding: 70px 0px;
	text-align:center;
	}	
.partnertxt{
	float:left;
	width:100%;
	margin-bottom:30px;
}
.partnertxt h3{	
	font-size: 40px;	
	color:#113a60;		
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.partnertxt p{
	font-size: 17px;
	margin-bottom: 10px;
	}
.partners{
	float:left;
	width:100%;
	}
.partners ul{
	float:left;
	width:100%;	
	margin:0px;
	padding:0px;
	list-style:none;
	}
.partners ul li{
	float:left;
	width:20%;
	padding:0px 10px;
	}
	
@media  (max-width: 991px) {
.partner-container{padding: 40px 0px;}	
.partnertxt{margin-bottom:20px;}
.partnertxt h3{font-size: 30px;}
.partnertxt p{font-size: 16px;}
}
	
@media  (max-width: 768px) {
.partnertxt h3{font-size: 24px;}
.partners ul li{float:none; display:inline-block; width:32%; padding:0px 5px; margin-bottom:10px;}
}	
	
/****************** About us *****************/	

.about-container{
	float:left;	
	width:100%;	
	background:#f3f6ff; 
	padding: 130px 0px 70px 0px;
	}
.aboutxt{
	float:left;
	width:100%;
	}
.aboutxt img{
	float:right;
	margin:0px 0px 15px 30px;
	}
	
.aboutxt h2{	
	font-size: 36px;	
	color:#113a60;		
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.aboutxt p{
	font-size: 17px;
	margin-bottom: 15px;
	text-align:justify;
	}	
	
.mission-container{
	float:left;	
	width:100%;	
	background:#141d38 url("../../images/aboutbg.jpg")no-repeat top center;
	background-size:100%;
	padding:70px 0px;	
	}
	
.visiontxt{
	float:left;	
	width:100%;
	color:#fff;
	margin-bottom:30px;
	}
.visiontxt h3{	
	font-size: 32px;	
	color:#fff;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px #000;	
	}
.visiontxt p{
	font-size: 17px;
	color:#28a9e0;	
	margin-bottom: 0px;
	text-align:justify;
	}

.visionbox{
	float:left;	
	width:100%;
	min-height:180px;
	background:rgba(0,0,0,0.15);
	padding:35px 15px;
	border-radius:5px;	
	box-shadow: 0px 0px 10px rgba(0,0,0,0.80);
	transition: 0.3s ease;
	text-align:center;
	margin-top:30px;
	}
.visionbox:hover{background:rgba(0,0,0,0.30);}	
	
.visionbox h4{	
	color:#8cc443;
	font-size:18px;
	margin:0px;
	}	
.visionbox i{
	display:inline-block;	
	width:100px;
	height:100px;
	background:#fff;	
	border-radius:50%;
	margin-bottom:10px;
	}
.visionbox i.innovate{background:#fff url("../../images/icons/innovative.svg")no-repeat center center; background-size:48px;}
.visionbox i.empower{background:#fff url("../../images/icons/empower.svg")no-repeat center center; background-size:56px;}
.visionbox i.finance{background:#fff url("../../images/icons/growth.svg")no-repeat center center; background-size:42px;}	
.visionbox i.mobile{background:#fff url("../../images/icons/app.svg")no-repeat center center; background-size:46px;}	

@media  (max-width: 991px) {	
.about-container{padding: 110px 0px 40px 0px;}
.aboutxt h2{font-size: 30px;}
.aboutxt p{font-size: 16px; margin-bottom: 10px;}	
.mission-container{padding:40px 0px;}	
.visiontxt{margin-bottom:20px;}
.visiontxt h3{font-size: 24px;}
.visiontxt p{font-size: 16px;}
.visionbox h4{font-size:17px;}
}
	
@media  (max-width: 768px) {	
.about-container{padding: 80px 0px 40px 0px;}	
.aboutxt img{width:100px; margin:0px 0px 5px 15px;}	
.visionbox h4 br{display:none;}
}
	
/****************** Contact us *****************/

.contact-container{
	float:left;	
	width:100%;	
	background:#f3f6ff; 
	padding: 130px 0px 0px 0px;
	}
.contactbg{background:url("../../images/contactbg.png")no-repeat left bottom;}
	
.contact{
	float:left;
	width:100%;
	margin-bottom:30px;
	}	
.contact h2{	
	font-size: 30px;
	color:#113a60;
	margin-bottom: 5px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}	
.contact h4{	
	font-size: 20px;	
	color:#df4e27;
	margin-bottom: 15px;
	padding-top:20px;	
	}	
.contact p{
	font-size: 16px;
	margin-bottom: 15px;
	}
.contact p.map{background:url("../../images/icons/map.svg")no-repeat -2px 5px; background-size:24px; padding-left: 30px;}
.contact p.phone{background:url("../../images/icons/phone.svg")no-repeat 0px 2px; background-size:20px; padding-left: 30px;}
.contact p.email{background:url("../../images/icons/email.svg")no-repeat 0px 5px; background-size:19px; padding-left: 30px;}

.contact p a{color:#555; text-decoration:none;}
.contact p a:hover{color:#64a214; text-decoration:underline;}

.contactform{
	float:left;	
	width:100%;	
	background:#fbfcff;
	padding: 30px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.10);
	border-radius:5px;
	margin-bottom:80px;
	}	
.contactform h3{	
	font-size: 24px;	
	color:#113a60;
	margin-bottom: 10px;	
	}	
.contactform p{
	font-size: 16px;
	margin-bottom: 10px;
	}
	
.contactform .form-floating{ margin-bottom: 15px;}
.contactform .form-floating > .form-control{
	background:none;
	border-radius:0px;
	border:none;
	border-bottom:solid 1px #ccc;	
	font-size: 16px;
	padding-left:5px;
}
.contactform .form-floating > .form-select{
	background:url("../../images/icons/down-arrow.svg")no-repeat right center; 
	background-size:12px;
	border-radius:0px;
	border:none;
	border-bottom:solid 1px #ccc;	
	font-size: 16px;
	padding-left:2px;
}
.contactform .form-floating textarea{ height: 90px;}
.contactform .form-floating > label{padding-left:2px; font-size:14px;}
.contactform .form-floating > .form-control:focus, .contactform .form-floating > .form-select:focus{
	border:none;	
	border-bottom:solid 2px #32a0da;
	box-shadow:none;
}
.contactform button{border:none; margin-top: 20px;}

.contactform .form-floating > .invalid{border-bottom: solid 1px #f05125;}
.form-floating > .error, .captcha-form .error{color: #f05125; font-size: 12px;}

@media  (max-width: 991px) {
.contact-container{padding:100px 0px 40px 0px;}
.contactbg{background:none;}
.contact h4{font-size: 18px; padding-top:10px;}
.contactform{margin-bottom:0px;}
}

@media  (max-width: 768px) {
.contact-container{padding:70px 0px 40px 0px;}
.contact h2{font-size: 24px;}
.contact p{margin-bottom: 10px;}
.contactform{padding: 20px 15px;}
.contactform h3{font-size: 20px;}
.contactform p{margin-bottom:5px;}
}

/****************** Solutions *****************/

.solutions-container{
	float:left;	
	width:100%;	
	background:#f3f6ff;
	}	
.remitxt{
	float:left;
	width:100%;
	padding: 140px 430px 70px 0px;	
	background:#f3f6ff url("../../images/remittance.jpg")no-repeat right bottom; 
	background-size:400px;
	}	
.remitxt h2{	
	font-size: 30px;
	color:#113a60;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.remitxt p{
	font-size: 17px;
	margin-bottom: 15px;
	}
	
.solutions-features{
	float:left;	
	width:100%;	
	background:#fff; 
	padding:70px 0px;
	text-align:center;
	}	
.features{
	float:left;	
	width:100%;
	}
.features h3{
	font-size: 30px;
	color:#113a60;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.features p{
	font-size: 17px;
	margin-bottom: 15px;
	}

.featurebox{
	float:left;	
	width:100%;
	margin-top:20px;	
	padding:15px 5px;
	background:#f3f6ff;	
	border-radius:5px;	
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	transition: 0.3s ease;
	text-align:center;
	}
.featurebox:hover{box-shadow: 0px 0px 15px rgba(0,0,0,0.30);}	
	
.featurebox h4{
	font-size:16px;
	color:#113a60;
	margin:0px;
	}	
.featurebox i{
	display:inline-block;	
	width:80px;
	height:80px;
	background:#fff;	
	border-radius:50%;
	margin-bottom:5px;
	border:solid 1px #e5e5e5;
	}
.featurebox i.money{background:#fff url("../../images/icons/money.svg")no-repeat center center; background-size:38px;}
.featurebox i.time{background:#fff url("../../images/icons/time.svg")no-repeat center center; background-size:42px;}
.featurebox i.secure{background:#fff url("../../images/icons/secure.svg")no-repeat center center; background-size:42px;}	
.featurebox i.notify{background:#fff url("../../images/icons/message.svg")no-repeat center center; background-size:38px;}	
.featurebox i.verified{background:#fff url("../../images/icons/verified.svg")no-repeat center center; background-size:40px;}
.featurebox i.bank{background:#fff url("../../images/icons/bank.svg")no-repeat center center; background-size:38px;}
.featurebox i.cardless{background:#fff url("../../images/icons/cardless.svg")no-repeat center center; background-size:42px;}
.featurebox i.settle{background:#fff url("../../images/icons/settle.svg")no-repeat center center; background-size:46px;}	
.featurebox i.download{background:#fff url("../../images/icons/download.svg")no-repeat center center; background-size:40px;}
.featurebox i.commission{background:#fff url("../../images/icons/commission.svg")no-repeat center center; background-size:42px;}


.bankingtxt{
	float:left;
	width:100%;
	padding: 130px 0px 50px 0px;
	}	
.bankingtxt h2{	
	font-size: 30px;
	color:#113a60;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.bankingtxt p{
	font-size: 17px;
	margin-bottom: 15px;
	}

.banking-container{
	float:left;
	width:100%;
	padding: 50px 0px;
	}	
.aepstxt{
	float:left;
	width:100%;	
	}	
.aepstxt h3{
	font-size: 24px;
	color:#113a60;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.aepstxt p{
	font-size: 17px;
	margin-bottom: 15px;
	}
.aepsimg{
	float:left;
	width:100%;
	margin-top:40px;
	padding:5px;
	border: solid 1px #ddd;
	border-radius:5px;
	}

.upi-container{
	float:left;	
	width:100%;	
	background:#f3f6ff;
	padding:50px 0px;
	}	
.upimg{
	float:left;
	width:100%;
	padding:5px;
	border: solid 1px #ddd;
	border-radius:5px;
	background:#fff;
	}
.upitxt{
	float:left;
	width:100%;	
	}	
.upitxt h3{
	font-size: 24px;
	color:#113a60;
	margin-bottom: 10px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.upitxt p{
	font-size: 17px;
	margin-bottom: 15px;
	}
	
.qr-container{
	float:left;	
	width:100%;
	padding:50px 0px 0px 0px;
	}	
.qrimg{
	float:left;	
	width:100%;
	}		
.ottimg{
	float:left;
	width:100%;
	}
	
@media  (max-width: 991px) {
.remitxt{padding: 110px 350px 50px 0px; background-size:350px;}
.remitxt p{font-size: 16px; margin-bottom: 10px;}

.bankingtxt{padding: 110px 0px 40px 0px;}
.bankingtxt p{font-size: 16px; margin-bottom: 10px;}
.aepstxt p{font-size: 16px; margin-bottom: 10px;}
.upitxt p{font-size: 16px; margin-bottom: 10px;}
}

@media  (max-width: 768px) {
.remitxt{padding: 80px 0px 40px 0px; background:none;}
.remitxt h2{font-size: 24px;}
.solutions-features{padding:40px 0px;}	
.features h3{font-size: 24px;}
.features p{font-size: 16px;}

.bankingtxt{padding: 80px 0px 30px 0px;}	
.bankingtxt h2{font-size: 24px;}
.banking-container{padding: 40px 0px;}
.aepstxt h3{font-size: 20px;}
.aepsimg{margin-top:0px;}
.upi-container{padding:40px 0px;}
.upitxt h3{font-size: 20px;}
}


/****************** Others Text *****************/

.other-container{
	float:left;	
	width:100%;	
	background:#f3f6ff;
	padding: 120px 0px 40px 0px;
	}	
.othertxt{
	float:left;
	width:100%;
	min-height:300px;	
	}	
.othertxt h2{	
	font-size: 24px;
	color:#113a60;
	margin-bottom: 15px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.30);
	}
.othertxt h4{
	font-size: 18px;
	color:#113a60;
	margin: 10px 0px 5px 0px;	
	}	
.othertxt p{
	font-size: 15px;
	margin-bottom: 15px;
	}
.webicons{
	float:left;
	width:100%;
	margin-bottom:30px;
	}	
.webicons ul{
	float:left;
	width:100%;
	margin:0px;
	padding:0px;
	list-style:none;
	}	
.webicons ul li{
	float:left;
	width:10%;
	text-align:center;
	font-size:13px;
	}	
.webicons ul li i{
	display:inline-block;
	width:50px;
	height:50px;
	border: solid 1px #ddd;
	border-radius:5px;
	background:#fff;	
	}
.webicons ul li i.mobile{
	background:#fff url("../../images/icons/mobile.svg")no-repeat center center; 
	background-size:19px;
	}
.webicons ul li i.dth{
	background:#fff url("../../images/icons/dth.svg")no-repeat center center; 
	background-size:26px;
	}	
.webicons ul li i.elctry{
	background:#fff url("../../images/icons/electric.svg")no-repeat center center; 
	background-size:22px;
	}	
.webicons ul li i.water{
	background:#fff url("../../images/icons/water.svg")no-repeat center center; 
	background-size:22px;
	}
.webicons ul li i.gas{
	background:#fff url("../../images/icons/gas.svg")no-repeat center center; 
	background-size:20px;
	}
.webicons ul li i.land{
	background:#fff url("../../images/icons/landline.svg")no-repeat center center; 
	background-size:28px;
	}
.webicons ul li i.band{
	background:#fff url("../../images/icons/broadband.svg")no-repeat center center; 
	background-size:30px;
	}
.webicons ul li i.ott{
	background:#fff url("../../images/icons/ott.svg")no-repeat center center; 
	background-size:25px;
	}
.webicons ul li i.insrnc{
	background:#fff url("../../images/icons/insurance.svg")no-repeat center center; 
	background-size:30px;
	}
.webicons ul li i.fast{
	background:#fff url("../../images/icons/fastag.svg")no-repeat center center; 
	background-size:28px;
	}

@media  (max-width: 768px) {
.other-container{padding: 80px 0px 40px 0px;}	
.othertxt{min-height:100px;	}
.webicons ul{text-align:center;}
.webicons ul li{float:none; display:inline-block; width:24%;}
}

.thankyou {
    float: left;
    width: 100%;
    min-height: 300px;
	text-align:center;
}
.thankyou i{
	display:inline-block;
	width:50px;
	height:50px;	
	border-radius:50%;
	background:#fff url("../../images/icons/success.svg")no-repeat center center;
	margin-top:50px;
	}
.thankyou h3{	
	font-size: 24px;
	color:#113a60;
	margin-bottom: 15px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.15);
	}	
.thankyou p{font-size: 15px;}

.errortxt{
    float: left;
    width: 100%;
    min-height: 300px;
	text-align:center;
	padding:15px;
}
.errortxt h3{	
	font-size: 24px;
	color:#113a60;
	margin: 15px 0px 30px 0px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.15);
	}	
.errortxt a{
	display:inline-block;
	color:#fff;
	text-decoration:none;	
	background:#71ae32;
	font-weight: 500;
	font-size: 16px;
	height:40px;
	line-height:40px;
	border-radius:20px;
	padding:0px 30px;	
	text-align:center;
	transition: 0.3s ease;
	}
.errortxt a:hover{background:#32a0da;}	
	
@media  (max-width: 768px) {	
.errortxt{padding:15px 0px;}
.errortxt h3{margin: 15px 0px 15px 0px;}
.errortxt a{font-size: 14px; height:36px; line-height:36px; border-radius:18px; padding:0px 20px;}	
}
	
	