/*********************************************************************************
common styles
***************/
/*body.landing-bg{
	background: #f2f2f2 url(../design_img/welcome-bg.jpg) !important;
    background-repeat: no-repeat !important;
	height:auto;
	width:100%;
	
    /*background-attachment: fixed !important;
    background-position: center  !important; */

body {
	background: #fff !important;
	color: #333 !important;
	font-family: 'Cabin', sans-serif !important;
	font-size: 14px !important;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li {
	margin: 0px !important;
	padding: 0px !important;
}

a {
	color: #333 !important;
	cursor: pointer;
	text-decoration: none !important;
}

a:active {
	box-shadow: none !important;
}

p {
	line-height: 22px;
	margin-bottom: 10px !important;
	font-size: 14px !important;
}

h1,
h2 {
	margin-bottom: 10px !important;
}

.no-padding {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.no-padding-right {
	padding-right: 0px !important;
}

.no-padding-left {
	padding-left: 0px !important;
}

/*********************************************************************************
colored text and buttons
***************/
.text-orange {
	color: #ffb120
}

.text-green {
	color: #9cc33f
}

.btn {
	padding: 6px 20px !important;
	border-radius: 0 !important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.btn-sub,
.btn-cancel {
	background: #1fa335;
	color: #fff;
	padding: 10px 20px !important;
	border-radius: 3px !important;
	margin-right: 10px;
	margin-top: 15px;
}

.btn-cancel {
	background: #fc910f;
}

.btn:hover {
	background: #333 !important;
	color: #fff !important;
}

/*********************************************************************************
header styles
***************/
header {
	background: #fcfdf2;
}

header.header-fixed-bar {

	position: fixed !important;
	width: 100% !important;
	top: 0;
	z-index: 99;
	-moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

header.header-fixed-bar .top-bar {
	display: none
}

header .container {
	position: relative;
	z-index: 99;
}

header .top-bar {
	background: linear-gradient(90deg, #9cc33f 0%, #47af49 60%);
	padding: 0 15px;
}

header .top-bar .container {
	background: linear-gradient(to left, #47af49 60%, #FFF 50%);
}

/*cont nav*/
header .cont-nav {
	float: left;
	margin: 10px 0
}

header .cont-nav ul {
	list-style: none;
}

header .cont-nav ul li {
	float: left;
}

header .cont-nav ul a {
	display: block;
	padding: 0px 15px;
	font-size: 14px;
	color: #fff !important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

header .cont-nav ul a img {
	margin-right: 5px;
	width: 18px;
}

header .cont-nav ul li:last-child a {
	padding-right: 0;
	border: 0;
}

header .cont-nav ul a span.cont-text {}

header .cont-nav ul a:hover {}

/* Start User Nav */
header .user-nav {
	float: right;
	margin: 5px 0;
}

header .user-nav ul {
	list-style: none;
}

header .user-nav ul li {
	float: left;
	position: relative
}

header .user-nav ul li:last-child a {
	border-right: none;
}

header .user-nav ul a {
	display: block;
	padding: 6px 10px 6px;
	font-weight: 600;
	color: #fff !important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	background: #125329;
	margin-left: 5px;
}
header .user-nav ul  li.no-btn a{
	background:transparent !important;
}


header .user-nav ul a img {
	margin-right: 8px;
	max-width: 13px;
	vertical-align: -1px
}

header .user-nav ul a.login {}

header .user-nav ul a.join {}

header .user-nav ul a.join .fa {
	color: #fff;
}

header .user-nav ul a:hover {
	background: #ffffff;
	color: #ffc637 !important;
}

/*user sub nav*/
header .user-nav ul ul {
	min-width: 140px;
	position: absolute;
	right: 0;
	top: 31px;
	z-index: 9999;
	list-style: none;
	background: #fff;
	/**/
	max-height: 0px;
	max-width: 0px;
	opacity: 0;
	overflow: hidden;
	-webkit-transform: perspective(600px) rotateX(40deg);
	-moz-transform: perspective(600px) rotateX(40deg);
	-ms-transform: perspective(600px) rotateX(40deg);
	-o-transform: perspective(600px) rotateX(40deg);
	transform: perspective(600px) rotateX(40deg);
	-webkit-transition: -webkit-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
	-o-transition: -o-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
	transition: transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
	/**/
	-webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

header .user-nav ul ul:before {
	font-family: 'FontAwesome';
	color: #fff;
	content: "\f0d8     ";
	font-weight: normal;
	position: absolute;
	top: -15px;
	right: 15px;
	font-size: 17px;
}

header .user-nav ul ul li {
	float: none;
	white-space: nowrap;
	margin: 0 !important
}

header .user-nav ul ul li a {
	background: #fff;
	border: 0;
	border-radius: 0px;
	border-bottom: 1px solid #eee;
	color: #666 !important;
	padding: 10px 12px;
	margin-left: 0;
}

header .user-nav ul ul li:last-child a {
	border-bottom: 0
}

header .user-nav ul ul li a:hover {
	background: #f2f2f2 !important;
	border-color: #eee !important;
	color: #666 !important;
}

.user-nav ul li:hover ul {
	overflow: visible;
	max-height: 3000px;
	max-width: 3000px;
	opacity: 1;
	-webkit-transform: perspective(600px) rotateX(0deg);
	-moz-transform: perspective(600px) rotateX(0deg);
	-ms-transform: perspective(600px) rotateX(0deg);
	-o-transform: perspective(600px) rotateX(0deg);
	ransform: perspective(600px) rotateX(0deg);
	-webkit-transition: -webkit-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
	-o-transition: -o-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
	transition: transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
}

/* */
header .logo-bar {
	position: relative;
	padding: 12px 15px;
	border-bottom: 5px solid #9cc33f;
	background: #fff;
}

header .logo {
	display: block;
}

header .logo img {
	max-width: 100%;
}

header .nav-bar {
	float: right;
	margin: 18px 0 18px;
}

/*********************************************************************************
section styles
***************/
section.slider {
	position: relative;
	top: -30px;
	margin-bottom: -30px;
}

/**/
section.contents {}

section.contents .content-bar {
	padding: 40px 0;
	overflow: hidden;
}

/* page banner*/
.banner-bar {
	background: #0072b8 url(../design_img/banner-back.jpg) no-repeat center center;
	background-size: cover;
	padding: 100px 0 100px;
}

.banner-bar .banner-content {}

.banner-bar .banner-content h1 {
	font-weight: 700;
	color: #FFF;
	text-transform: uppercase;
	font-size: 22px !important;
	line-height: 40px;
	position: relative;
	text-align: left;
	margin-bottom: 0 !important;
	font-family: 'Lora', serif;
	letter-spacing: 1.2px;
	margin-top: 10px !important;
}

.banner-bar .banner-content h1:before {
	content: '';
	border-top: 2px solid #ffb120;
	width: 40px;
	position: absolute;
	left: 0;
	bottom: -15px;
	z-index: 2;

}

/*location*/
.location {
	list-style: none;
	position: relative;
	text-align: right;
	float: right;
	padding: 10px 15px !important;
	background: rgba(255, 255, 255, .2) !important;
}

.location li {
	color: #FFF !important;
	text-transform: capitalize;
	float: left;
	width: auto;
	margin: 0px 10px 0px 0 !important;
}

.location li:last-child {
	margin-right: 0px !important;
}

.location li a:after {
	content: '~';
	font-family: 'FontAwesome';
	font-size: 24px !important;
	line-height: 32px;
	font-weight: 600;
	margin-left: 10px;
	color: #FFF;
}

.location li:last-child a:after {
	content: '';
	margin-left: 0px;
}

.location li a {
	color: #FFF !important;
	font-size: 16px !important;
	font-weight: 600;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.location li a:hover {
	color: #ffb120 !important;
}

.location li a.active {
	color: #ffb120 !important;
}

/*bankers*/
.banker-col {
	min-height: 20px;
	padding: 30px 20px;
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #efefef;
}

.banker-col img {
	margin-bottom: 0px;
	display: inline-block;
	max-width: 200px;
	height: auto;
	padding: 4px;
	line-height: 1.42857143;
	background-color: #fff;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.banker-col p {
	color: #5f5f5f;
	;
	font-size: 16px !important;
	line-height: 28px;
	margin-bottom: 0 !important
}

.scan-pay {
	padding: 20px;
	border: 1px solid #e5e5e5;
	position: relative;
}

.scan-pay img {
	max-width: 100%;
}

/*legals*/
.legal {
	height: auto;
	padding: 10px 0px 0px 0px !important;
}

.legal:first-child {
	border: none;
}

.legal img {
	margin: auto;
	display: block;
	max-width: 100%;
}

.legal p {
	margin-top: 10px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	color: #666;
	padding-bottom: 6px;
	text-align: center !important;
}

/* download col*/
.download-col {
	text-align: center;
}

.download-col p {
	margin-bottom: 5px !important;
	font-weight: 600;
	font-size: 15px !important;
	text-align: center !important;
	color: #333;
	padding: 20px 5px !important;
	text-transform: uppercase
}

.download-col a {
	font-size: 14px;
	background: #f34747;
	text-transform: uppercase;
	color: #fff !important;
	padding: 5px 10px;
	letter-spacing: 1.8px;
}

.download-col a:hover {
	background: #666;
}

.download-col img {
	margin: auto;
}

/* contact bar */
.contact-bar {}

.contact-bar .cont-nav {
	background: #f5dd96;
	padding: 40px;
	overflow: hidden;
}

.contact-bar .cont-nav h3 {
	color: #333;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 40px 0 !important;
	text-align: left
}

.contact-bar .cont-nav ul {
	list-style: none;
	margin-bottom: 20px !important;
}

.contact-bar .cont-nav ul li {
	line-height: 24px;
	margin-bottom: 20px !important;
	overflow: hidden;
}

.contact-bar .cont-nav ul a {
	display: block;
	color: #333 !important;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	font-size: 14px;
}

.contact-bar .cont-nav ul a i {
	margin-right: 25px;
	float: left;
	margin-top: 4px;
	font-size: 20px;
	width: 20px;
}

.contact-bar .cont-nav ul a span {
	float: left;
	display: block;
	width: calc(100% - 50px);
}

/**/
.contact-bar .main-head {
	text-align: center;
	margin: 30px 0 !important;
}

.contact-bar .iframe-form {
	width: 100%;
	height: 400px;
}

.contact-bar .form-group {
	position: relative;
	margin-bottom: 7px !important;
}

.contact-bar .input-group-addon {
	border-radius: 3px !important;
	background: #eee;
	border: 0;
	color: #999;
	width: 42px !important;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important
}

.contact-bar .input-group {
	width: 100%;
}

.contact-bar input[type="text"],
.contact-bar input[type="email"],
.contact-bar input[type="password"],
.contact-bar select,
.contact-bar textarea {
	display: block;
	width: 100%;
	color: #333333;
	font-size: 14px;
	padding: 15px 10px;
	height: auto;
	background: #f6f6f6 !important;
	border-radius: 3px !important;
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
	border: 0px solid #ececec !important;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.contact-bar textarea {
	height: 160px;
	resize: none;
	padding-left: 10px !important;
}

.contact-bar .button {
	font-size: 16px;
	margin-top: 10px;
	margin: auto;
	display: table;
}

/*rankers*/
.rankers .achievers {
	background: #fff;
	border: 1px solid #eee;
	border-bottom-color: #eee;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	margin-bottom: 10px !important;
	margin-top: 10px !important;
	width: 100%;
	border-radius: 0;
	overflow: hidden;
	margin: auto;
}

.rankers .achievers-container {
	width: 100%;
	height: auto;
	position: relative;
	border-bottom: 1px solid #eee;
}

.rankers .achievers-pic-container {
	width: 100%;
	height: 260px;
	margin-bottom: 0px;
	position: relative;
}

.rankers .achievers-pic-container img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 0;
	position: absolute;
	top: 50%;
	margin-bottom: -50%;
	left: 50%;
	margin-right: -50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.rankers .achievers-back {
	position: absolute;
	bottom: 0%;
	left: 0;
	top: 0%;
	right: 0;
	background: #000;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
	opacity: 0;
	height: 100%;
}

.rankers .achievers-btn {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 3;
	top: 130%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.rankers .achievers-btn p {
	font-size: 14px !important;
	color: #fff !important;
	text-align: center;
	line-height: 24px;
}

.rankers h2 {
	font-size: 13px !important;
	color: #555;
	font-weight: 300;
	text-transform: capitalize;
	background: none;
	margin-bottom: 15px !important;
	border: 0;
	text-align: center;
	margin-top: 15px !important;
}

.rankers .rank {
	background: #c61c00;
	color: #fff;
	position: absolute;
	z-index: 1;
	top: -3px;
	padding: 2px 2px;
	font-size: 12px;
	border-radius: 0;
	left: -3px;
	font-weight: bold;
	width: 58px;
	text-align: center;
}

.rankers .achievers-container:hover .achievers-back {
	opacity: 0.8;
}

.rankers .achievers-container:hover .achievers-btn {
	top: 50%;
}

/*********************************************************************************
my table start
***************/
section.contents .mytable {}

section.contents .mytable caption {
	color: #333333;
	text-align: center;
	margin-bottom: 5px;
	padding: 0px;
	font-weight: 600;
}

section.contents .mytable th {
	border-color: #e9dec0;
	background: #a31e49;
	color: #fff;
	font-weight: 600;
	vertical-align: middle !important;
	text-align: center;
	font-size: 14px;
	text-transform: capitalize;
	height: 40px;
}

section.contents .mytable td {
	border-color: #e9dec0;
	vertical-align: middle !important
}

section.contents .mytable tr {
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

section.contents .mytable tbody>tr>td {
	text-align: center;
	font-size: 14px;
}

section.contents .mytable tr:nth-child(odd) {
	background: #e9dec0;
}

section.contents .mytable tr:hover {
	background: #feffde
}

/* Welcome Page Start */

.welcome-page{
	text-align:center;
	padding:60px 0 60px;
	/*background: linear-gradient(to right, rgba(0,150,63,1) 0%,rgba(255,255,255,1) 47%,rgba(152,184,33,.7) 100%);*/
	background: #f2f2f2 url("../design_img/welcome-new01.jpg") center center no-repeat;
	background-size:100% 100%;
	bottom:0;
	height:100vh;
	width:100%;
	position:relative;	
}
/*
.welcome-page{
	background: #f2f2f2 url(../design_img/welcome-bg.jpg) top center no-repeat;
	background-size:cover;
	height:100vh;
	width:100%;
	bottom:0;
	position:relative;
}
 
.welcome-page{
	background-image: url('../design_img/welcome-bg.jpg');
	height:100vh;
	width:100%;
	bottom:0;
	background-size:100% 100%;
	position:relative;
}
*/

.welcome-page .logo-outer{
	position:relative;
}
.welcome-page .fhealth-logo{
	position: absolute;
    top: -60px;
    right: 0px;
    width: 145px;
    background:#fff;
	/*-webkit-box-shadow: 2px 7px 14px 0px rgba(0,0,0,0.37);
	-moz-box-shadow: 2px 7px 14px 0px rgba(0,0,0,0.37);
	box-shadow: 2px 7px 14px 0px rgba(0,0,0,0.37); */
    padding: 10px;
}

.welcome-page .fhealth-logo img{
	max-width:100%;
}

.welcome-page .welcome-head{
	font-size:35px !important;
	line-height:45px !important;
	font-weight:700;
	letter-spacing: 1px;
    text-transform: none;
	text-shadow: 2px 3px #ffffff;
    color: #006a2d;
    margin-bottom: 0px !important;
	font-family: 'Poppins', sans-serif !important;
}
.welcome-page .welcome-head span{
	font-size:45px !important;
	line-height:65px !important;
	font-weight:700;
	letter-spacing:1px;
	color:#ff6000 !important;
	text-shadow: 4px 4px 2px rgba(223,223,223,0.6) !important;
}
.welcome-page h3{
	font-size:25px !important;
	line-height:35px;
	color:#a23b00;
	font-weight:700;
	margin-bottom:10px !important;
	font-family: 'Poppins', sans-serif;
}
.welcome-page h3 span{
	font-size:25px !important;
	line-height:32px;
	color: #165224;
	text-transform:uppercase;
	font-weight:700;
	margin-bottom:15px !important;
}
.welcome-page .year-exper span{
	font-size:70px !important;
	line-height:70px;
	color:#a23b00;
	font-weight:700;
}
.welcome-page .year-exper{
	font-size:27px !important;
	color:#a23b00;
	line-height:35px;
	font-weight:700;
}
.welcome-page h4{
	color: #165224;
	font-size:22px !important;
	line-height:30px;
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:10px !important;
	font-family: 'Poppins', sans-serif;
}
.welcome-page h4.since{
	font-size:20px !important;
	line-height:27px;
	color:#4a1114;
	font-weight:800;
	text-transform:uppercase;
}
.welcome-page h2{
	color: #4a1114;
    font-size: 32px !important;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    /* font-family: 'Poppins', sans-serif; */
	font-family: 'Cabin', sans-serif !important;
    text-shadow: 3px 4px 5px rgba(255,255,255);
}
.welcome-page h2 small{
	font-size:30px !important;
	line-height:50px;
	color:#e73f0b !important;
	font-weight:700;
}

.welcome-page .link-enter{
	/*background: linear-gradient(90deg, #ea5906 0%, #98c21a 50%, #ff5d01 100%); */
	background:#ff8848;
    color: #FFF !important;
    width: 100%;
    padding: 12px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Cabin', sans-serif !important;
    font-weight: bold;
    font-size: 15px;
	font-weight:600;
	line-height:25px;
	position:absolute;
	bottom:0;
	left:0;
    letter-spacing: 1px;
}
.welcome-page .link-enter img{
	max-width: 24px;
    vertical-align: -5px;
    position: relative;
    margin-left: 10px;
    -webkit-animation: jump 1s ease-out infinite;
    animation: jump 1s ease-out infinite;
}


.welcome-page .ew-btn{
	background: linear-gradient(90deg, #9cc33f 0%, #47af49 60%);
    min-width: 120px;
    border-radius: 3px !important;
    overflow: hidden;
    padding:12px 15px !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #FFF !important;
    
}


/* Inner Page Css Start */
.idx-choose-sec {
	padding: 80px 0;
	position: relative;
}

.main-head {
	font-size: 33px !important;
	line-height: 42px;
	color: #4a1114;
	font-weight: 600;
	margin-bottom: 20px !important;
}

.main-head span {
	font-size: 16px !important;
	line-height: 24px;
	color: #ffb120;
	position: relative;
	display: block;
	margin-bottom: 0px !important;
	left: 50px;
	width: calc(100% - 50px);
}

.main-head span:before {
	position: absolute;
	content: "";
	top: 10px;
	left: -50px;
	width: 30px;
	height: 1px;
	background: #c1c1c1;
}

.idx-choose-sec .feature-blk {
	position: relative;
	z-index: 1;
	display: block;
	padding: 35px 22px;
	text-align: center;
	border-radius: 10px;
	background-color: #ffffff;
	overflow: hidden;
	-webkit-box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
	-moz-box-shadow: 0px 2px 25px 0px rgb(110, 110, 110, 0.12);
	box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
	-webkit-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
}

.idx-choose-sec .feature-blk:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: -1;
	background-image: linear-gradient(90deg, #9cc33f 0%, #47af49 60%);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
}

.idx-choose-sec .feature-blk:hover:before {
	opacity: 1;
}

.idx-choose-sec .feature-blk .h-icon {
	width: 75px;
	height: 75px;
	margin: 0 auto 10px !important;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	will-change: transform;
	border-radius: 100%;
}

.idx-choose-sec .feature-blk .h-icon img {
	max-width: 90%;
	padding: 10px;
}

.idx-choose-sec .feature-blk:hover .h-icon img {
	filter: brightness(0) invert(1);
}

.idx-choose-sec .feature-blk h3 {
	font-size: 18px !important;
	line-height: 24px;
	font-weight: 600;
	color: #4a1114;
	margin-bottom: 5px !important;
	text-transform: capitalize;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}

.idx-choose-sec .feature-blk:hover h3 {
	color: #FFF !important;
}

.idx-choose-sec .feature-blk p {
	font-size: 15px;
	line-height: 24px;
	color: #5f5f5f;
	margin-bottom: 0;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform;
}

.idx-choose-sec .feature-blk:hover p {
	color: #FFF !important;
}

/* Dream Come Earn Come */

.idx-story-sec {
	padding: 80px 0;
	position: relative;
	background: #eef0e9 url("../design_img/join-bg.jpg") center top no-repeat;
	background-size: cover;
}

.idx-story-sec .main-head {
	color: #FFF !important;
	text-align: center;
	font-size: 40px !important;
	line-height: 50px !important;
}

.idx-story-sec .main-head span {
	width: 135px !important;
	margin: 0 auto !important;
	color: #bfbfbf !important;
}

.idx-story-sec .main-head span:before {
	background: #f57821 !important;
}

.idx-story-sec .fea-blk {
	position: relative;
	text-align: center;
}

.idx-story-sec .join-blk p {
	text-align: center;
	letter-spacing: 1.1px;
	color: #FFF !important;
	width: 95%;
	max-width: 900px;
	margin: auto !important;
	font-size: 15px !important;
	line-height: 25px;
	font-weight: 500;
}

.home-abt-bar {
	padding: 80px 0;
	position: relative;
}

.home-abt {
	padding: 50px 0;
	position: relative;
}

.home-abt-bar .home-abt-right {
	position: relative;
}

.home-abt-bar .home-abt-right img {
	max-width: 100%;
}

.home-abt-bar .home-abt-right .home-img-col {
	position: relative;
	padding: 20px;
}

.home-abt-bar .home-abt-right .home-img-col:before {
	content: "";
	background: linear-gradient(90deg, #9cc33f 0%, #47af49 60%);
	position: absolute;
	height: 200px;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.home-abt-bar .abt-pattern {
	background: url(../design_img/dots.png) no-repeat top right;
	background-size: cover;
	width: 120px;
	height: 120px;
	position: absolute;
	top: -22px;
	left: -22px;
	z-index: -111;
}

.home-abt-bar .home-abt-left {
	position: relative;
	padding: 40px 20px 10px;
}

.home-abt-bar.policy-sec  .home-abt-left {
	padding:0;
}

.home-abt-bar .home-abt-left p {
	font-size: 15px !important;
	line-height: 25px;
	color: #5f5f5f;
	margin-bottom: 10px !important;
	text-align: justify;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform;
}

.home-abt-bar .features-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 16px;
	margin-left: -10px;
	margin-right: -10px;
}

.home-abt-bar .features-list li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 25px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.home-abt-bar .features-list li span {
	display: block;
	background-color: #ffffff;
	border-radius: 0px 0px 10px 0px;
	padding: 15px 15px !important;
	padding-left: 25px;
	z-index: 1;
	position: relative;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	color: #4a1114;
	font-size: 15px !important;
	font-weight: 600;
	border-left: 2px solid #ffb120;
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82 90 101 / 10%);
	box-shadow: -1px 3px 20px 0px rgb(82 90 101 / 10%);
	overflow: hidden;
}

.home-abt-bar .features-list li span:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 100%;
	bottom: 0;
	border-radius: 0px 0px 10px 0px;
	background: linear-gradient(90deg, #ff8787 0%, #ffb120 60%);
	z-index: -1;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.home-abt-bar .features-list li span:hover {
	color: #ffffff;
	padding-left: 30px;
}

.home-abt-bar .features-list li span:hover:before {
	right: 0;
}


.home-abt-bar.pre-speak .home-abt-left p span {
	font-size: 16px !important;
	line-height: 25px;
	font-weight: 700;
}

.home-abt-bar.vision-blk .home-abt-left {
	padding: 0;
	position: relative;
}

.idx-btn {
	background: linear-gradient(90deg, #9cc33f 0%, #47af49 60%);
	border-width: 2px !important;
	padding: 14px 35px !important;
	border-radius: 3px;
	overflow: hidden;
	color: #FFF !important;
	min-width: 150px;
	position: relative;
	top: 40px;
	clear: both;
	left: 10px;

}

.idx-btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, #ff8787 0%, #ffb120 60%);
	transition: .2s all ease-in-out;
	z-index: 0;
}

.idx-btn:hover:before {
	width: 100%;
}

.idx-btn span {
	position: relative;
	z-index: 1;
}

/*products*/
.product {
	margin: 0 10px;
}

.product-container {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.product-pic-container {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.product-back {
	position: absolute;
	top: 50%;
	left: 0;
	bottom: 50%;
	right: 0;
	background: rgba(51, 51, 51, .7);
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
}

.product-pic {
	border: 1px solid #d7d7d7;
}

.product-pic img {
	max-width: 100%;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.product-new {
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;
	display: inline-block;
	background-color: #f36a1f;
	display: none
}

.product-new span {
	color: white;
	text-transform: capitalize;
	padding: 15px 0px;
	display: inline-block;
	transform: rotate(-90deg);
	font-weight: 300;
}

.product-new:after {
	content: "";
	width: 0px;
	height: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 4px solid #f36a1f;
	position: absolute;
	bottom: -4px;
	left: 50%;
	margin-left: -4px;
}

.discount {
	background: #ffefca;
	color: #000;
	width: 62px;
	height: 25px;
	position: absolute;
	top: 0px;
	right: 0;
	z-index: 1;
	text-align: center;
	line-height: 22px;
	display: none
}

.product-btn {
	width: 50px;
	height: 50px;
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 0;
	/* margin-top: -56px; */
	/* margin-left: -25px; */
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	transition: all 350ms linear;
}

.prduct-list .product-btn {
	height: 50px;
	width: 100%;
}

.prduct-list .product-btn .cart {
	position: absolute;
	right: 0;
	background: #FFF !important;
}

.prduct-list .product-btn a:hover {
	background: #226e90;
	color: #FFF !important;
}

.prduct-list .product-btn .cart {
	position: absolute;
	right: 0;
	background: #FFF !important;
}

.prduct-list .product-btn a.cart:hover {
	background: #226e90 !important;
	color: #FFF !important;
}

.product-btn a {
	background: #333;
	font-size: 16px;
	color: #ffb120 !important;
	width: 50px;
	height: 50px;
	display: block;
	float: left;
	text-align: center;
	padding-top: 13px;
	text-transform: uppercase;
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
	position: relative
}

.product-btn a.cart {
	background: #666;
	top: 30px;
	opacity: 0;
}

.product-btn a.view {
	background: #FFF;
	bottom: 50px;
	opacity: 0;
}

.product-btn a:hover {
	background: #226e90;
	color: #FFF !important
}

.product-name {
	text-align: center;
	text-transform: uppercase;
	font-size: 16px !important;
	line-height: 24px;
	margin: 10px 0 5px !important;
	overflow: hidden !important;
	text-overflow: ellipsis;
	display: inline-block;
	white-space: nowrap !important;
	width: 100%;
}

.product-name a {
	color: #333 !important;
}

.product-name span {
	color: #999
}

.product-price {
	text-transform: capitalize;
	text-align: center;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
	display: none
}

.product-price .price-before {
	color: #999;
	text-decoration: line-through;
	font-size: 17px;
}

.product-price .price-now {
	font-weight: 600;
	color: #1393dd;
	margin: 0 5px;
	font-size: 17px;
}

.product-container:hover .product-back {
	visibility: visible;
	opacity: 0.8;
	top: 0;
	bottom: 0%;
}

.product-container:hover .product-btn a.cart {
	top: 0;
	opacity: 1;
}

.product-container:hover .product-btn a.view {
	bottom: 0;
	opacity: 1;
}

.idx-product-sec .owl-theme .owl-controls .owl-buttons div {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.idx-product-sec .owl-buttons div {
	background: #ffb120 !important;
	color: #FFF !important;
	top: 40%;
}

/**/

.idx-product-sec .main-head {
	width: 200px !important;
	margin: 0 auto 20px !important;
}


/* Date 01-12-2023 */
.pre-speak .pre-speak-left {
	position: relative;
	border: 1px solid #e6e5e6;
}

.pre-speak .pre-speak-left img {
	max-width: 100%;
}

.pre-speak .pre-speak-left h4{
	padding:10px 15px !important;
	position: relative;
	text-align: center;
	font-size:22px !important;
	line-height: 30px;
	color: #4a1114;
}
.pre-speak .pre-speak-left h4 span{
	font-size:16px !important;
	line-height: 24px;
	color:#333;
	display: block;
}

.home-abt-bar.pre-speak .home-abt-left {
	padding: 0px 0px 20px;
}


/*********************************************************************************
list styles start
***************/
ul.mylist {
	list-style: none;
	padding: 0 0 0 10px;
	margin: 0 0 15px 25px !important;
	font-size: 14px
}
ol.mylist{
	padding:0 0 0 30px !important;
	margin:0 !important;
}
ol.mylist li {
	font-size: 15px !important;
	line-height: 25px;
	color: #5f5f5f;
	margin-bottom: 10px !important;
	text-align: justify;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform
}
ol.mylist li::marker {
    color: #9cc33f !important;
	font-size:20px !important;
	line-height:27px !important;
	font-weight: 700;
}
ul.mylist li:before {
	content: "\f06c ";
	font: normal normal normal 14px/1 FontAwesome;
	margin-right: 10px;
	color: #0ea85d;
}

ul.mylist li li:before {
	content: "- ";
	/*f105 f138  */
	font: normal normal normal 14px/1 FontAwesome;
	margin-right: 16px;
	color: #f88530;
}


section.contents .policy-sec  .mytable tr:nth-child(odd) {
    background: #fff;
}

section.contents .policy-sec .mytable tbody>tr>td {
    text-align: left;
   
}

/*********************************************************************************
login form 
***************/
.log-body {
	padding: 50px 0 50px;
	background: url(../design_img/slide-log.jpg) no-repeat center right;
	background-size: cover;
	position: relative;
}

/*
.log-body:after {
	content: '';
	background: linear-gradient(180deg, #a3aab9 0%, #fff0 90%);
	position: absolute;
	width: 100%;
	height: 200px;
	top: 0;
	left: 0;
} */

.log-model {
	width: 95%;
	max-width: 400px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 80px rgba(202, 168, 120, 0.18);
	-moz-box-shadow: 0px 0px 80px rgba(202, 168, 120, 0.18);
	box-shadow: 0px 0px 80px rgba(202, 168, 120, 0.18);
	border-radius: 10px;
	padding: 20px 40px 40px;
	display: table;
	margin: auto;
	position: relative;
	z-index: 1
}

.log-model h2 {
	font-size: 20px;
	color: #ffb120;
	font-weight: 700;
	margin-top: 20px !important;
	margin-bottom: 20px !important;
	text-align: center
}

.log-model .btn-sub {
	width: 100%;
	font-size: 16px;
	font-weight: 600;
}

.log-model .link-forgot {
	text-align: right;
	display: block;
	color: #eca254 !important;
	font-size: 12px;
	margin-bottom: 10px;
}

.log-model .alert {
	margin-bottom: 0;
	margin-top: 20px
}

/*********************************************************************************
Join form 
***************/
.join-body {
	padding: 50px 0 80px;
	background: url(../design_img/slide-log.jpg) no-repeat center right;
	background-size: cover;
	position: relative
}

/*
.join-body:after {
	content: '';
	background: linear-gradient(180deg, #a3aab9 0%, #fff0 90%);
	position: absolute;
	width: 100%;
	height: 200px;
	top: 0;
	left: 0;
}
*/
.join-model {
	width: 95%;
	max-width: 1000px;
	margin: auto;
	position: relative;
	z-index: 1
}

.join-nav {
	white-space: nowrap;
	overflow-x: auto;
	margin-bottom: 10px;
}

.join-nav .join-nav-container {
	display: table;
	margin: auto;
}

.join-nav ul {
	list-style: none;
	display: flex;
}

.join-nav li {
	float: left;
	margin-right: 10px !important
}

.join-nav li a {
	display: block;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.5) !important;
	padding: 0px 10px 0px;
	border: 1px solid rgba(0, 0, 0, 0.1;
		);
	cursor: default
}

.join-nav li a span {
	display: block;
	width: 40px;
	height: 40px;
	background: rgb(0 0 0 / 22%);
	text-align: center;
	margin: 0 auto 10px;
	color: rgba(255, 255, 255, 0.7);
	border-radius: 100%;
	font-size: 20px;
	font-weight: 400;
	padding-top: 5px;
}

.join-nav li a.active {
	cursor: pointer;
	color: #df4678 !important;
	font-weight: 700;
}

.join-nav li a.active span {
	background: #df4678;
	color: #fff;
}

.join-form-box {
	margin: 25px 0 0;
	padding: 35px 30px 0;
	background: #fff;
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 80px rgba(202, 168, 120, 0.18);
	-moz-box-shadow: 0px 0px 80px rgba(202, 168, 120, 0.18);
	box-shadow: 0px 0px 80px rgba(202, 168, 120, 0.18);
}

.join-form-box h4 {
	color: #ffb120;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	border-radius: 5px;
	margin: 0px 0 30px !important;
}

.join-form-box p {
	color: #666;
	font-weight: 600;
	font-size: 18px !Important;
	margin-bottom: 15px !important
}

.join-form-box input[type=file] {
	padding: 6px 9px;
}

.join-form-box .join-type-col {
	display: none
}

.join-form-box .join-type-col.col-active {
	display: block
}

.join-form-box .btn-search {
	background: #fff url(../design_img/icon-search.png) no-repeat center center;
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
	border: 0;
	height: 38px;
	width: 37px;
	position: absolute;
	top: 26px;
	right: 1px;
	text-align: center;
	background-size: 20px;
	/* padding-right: 50px; */
}

.join-form-box .btn-sub {
	margin: 45px auto -20px;
	display: block;
	border-radius: 25px !important;
	background: #1fa335;
	color: #fff;
	width: 150px;
	text-transform: uppercase;
	font-weight: 700;
}

.join-form-box .btn-sub:hover {
	background: #333 !important;
	color: #fff;
}

.join-form-box .alert {
	margin-top: 40px
}

/* password show hide*/
.toggle-password {
	position: absolute;
	right: 10px;
	width: 10px;
	color: #fff !important;
	text-align: center;
	top: 32px;
	padding: 13px 11px 11px 10px;
	float: right;
	margin-right: 1px;
}

.toggle-password.open-eye {
	background: url(../design_img/icon-show-pwd.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.toggle-password.close-eye {
	background: url(../design_img/icon-hide-pwd.png);
	background-repeat: no-repeat;
	background-size: contain;
}

/* Legals Start here */

.legal-bar {
	padding: 80px 0;
	position: relative;
}

.legal {
	height: auto;
	padding: 10px 0px 0px 0px !important;
}

.legal .product {
	margin: 0px 8px 33px 8px;
	border: 1px solid #eee;
	box-shadow: 0px 0px 30px #eee;
	padding: 5px;
	background: #FFF;
}

.legal .product:hover {
	background: #FFF;
}

.legal:first-child {
	border: none;
}

.legal img {
	margin: auto;
	display: block;
	max-width: 100%;
}

.legal p {
	margin-top: 10px !important;
	font-weight: 600 !important;
	text-transform: capitalize;
	color: #666;
	padding-bottom: 6px;
	text-align: center !important;
}


.legal .product {
	margin: 0 10px 30px;
}

.legal.last-row .product {
	margin: 0 10px 0px;
}

.legal .product-container {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.legal .product-pic-container {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.legal .product-back {
	position: absolute;
	top: 50%;
	left: 0;
	bottom: 50%;
	right: 0;
	background: #000;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
}

.legal .product-pic {}

.legal .product-pic img {
	max-width: 100%;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.legal .product-btn {
	width: 50px;
	height: 115px;
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	margin-top: -56px;
	margin-left: -25px;
	background: none;
	-webkit-transition: all 350ms linear;
	-moz-transition: all 350ms linear;
	-o-transition: all 350ms linear;
	-ms-transition: all 350ms linear;
	transition: all 350ms linear;
}

.legal .product-btn a {
	background: #333;
	font-size: 16px;
	color: #fff !important;
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin: 3px 0px;
	display: block;
	float: left;
	text-align: center;
	padding-top: 0px;
	text-transform: uppercase;
	border-radius: 100%;
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
	position: relative
}

.legal .product-btn a.cart {
	background: #666;
	top: 30px;
	opacity: 0;
}

.legal .product-btn a.view {
	background: #ffae00;
	bottom: 50px;
	opacity: 0;
}

.legal .product-btn a:hover {
	background: #fff !important;
	border-color: #FFF !important;
	color: #ffae00 !important
}

.product-name {
	text-align: center;
	text-transform: uppercase;
	font-size: 14px !important;
	margin: 10px 6px 5px !important;
	overflow: hidden !important;
	text-overflow: ellipsis;
	display: inline-block;
	white-space: nowrap !important;
	width: 100%;
}


.product-name a {
	color: #333 !important;
}

.product-name span {
	color: #999
}

.product-price {
	text-transform: capitalize;
	text-align: center;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
	display: none
}

.product-price .price-before {
	color: #999;
	text-decoration: line-through;
	font-size: 17px;
}

.product-price .price-now {
	font-weight: 600;
	color: #1393dd;
	margin: 0 5px;
	font-size: 17px;
}



.legal .product-container:hover .product-back {
	visibility: visible;
	opacity: 0.2;
	top: 0;
	bottom: 0%;
}

.legal .product-container:hover .product-btn a.cart {
	top: 0;
	opacity: 1;
}

.legal .product-container:hover .product-btn a.view {
	bottom: 0;
	opacity: 1;
}

/* Legals End here */
/**/
.primary {
	font-size: 50px !important;
	line-height: 42px;
	color: #125329;
	font-weight: 700;
	margin-bottom: 20px !important;
}

.secondary {
	color: #9cc33f;
	font-weight: 600;
	padding-top: 20px;
	margin-bottom:10px !important;
	line-height: 36px !important;
    font-size: 28px !important;
}

.tertiary {
	font-weight: 600;
	padding-top: 30px;
	line-height: 42px;
	font-size: 20px;
}

ul.mylist {
	font-size: 15px !important;
	line-height: 30px;
	color: #5f5f5f;
	margin-bottom: 10px !important;
	text-align: justify;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform;
	text-indent: -30px;
}

.quaternary {
	color: #ffb120;
	font-size:27px !important;
	font-weight: 700;
	padding-top: 30px;
	line-height: 35px;
	margin-bottom:20px !important;
}

/*bankers*/
.banker-col {
	min-height: 20px;
	padding: 15px;
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #ddd;
	margin-top: 60px;
	margin-bottom: 60px;
	border-left: 5px solid #9cc33f !important;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
}

.banker-col img {
	margin-bottom: 5px;
	display: inline-block;
	max-width:250px;
	height: auto;
	padding: 4px;
	line-height: 1.42857143;
	background-color: #fff;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.banker-col p {
	color: #333;
	font-size: 16px !important;
	margin-bottom: 0 !important;
}

.scan-pay {
	padding: 20px;
	border: 1px solid #e5e5e5;
	position: relative;
}

.scan-pay img {
	max-width: 100%;
}

.home-abt-bar .home-abt-left p.business  {
	font-size: 16px !important;
	line-height: 25px;
	font-weight: 700;
	color: #ffb120 !important;
	margin-bottom: 10px !important;
	text-align: justify;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform;
}

.home-abt-bar .home-abt-left .business-insights {
	font-size: 16px !important;
	line-height: 25px;
	font-weight: 700;
	color: #9cc33f !important;
	margin-bottom: 10px !important;
	text-align: justify;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform;
}

/**/

.home-abt-bar .home-abt {
	position: relative;
	padding: 20px 20px 10px;
}

.home-abt-bar .home-abt p {
	font-size: 15px !important;
	line-height: 25px;
	color: #5f5f5f;
	margin-bottom: 10px !important;
	text-align: justify;
	-webkit-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	will-change: transform;
}

.home-abt {
	position: relative;
	padding: 70px 20px 70px;
	text-align: center;
}
.home-abt .home-abt-left p {
	font-size: 16px !important;
	text-align: justify;
}
.home-abt .home p{
	font-size: 16px !important;
	line-height: 25px;
	font-weight: 500;
	text-align: center;
}
.home-abt-left .table{
	width: 60%;
	
}

/*********************************************************************************
default form styles start
***************/
.form-group {
	position: relative;
	margin-bottom: 18px !important;
}

.form-group label {
	font-weight: normal;
}

.form-group .label-err {
	width: auto;
	font-size: 11px;
	color: #f17e21;
	padding: 0px;
	position: absolute;
	left: 0;
}

.form-group .form-control {
	border-radius: 0 !important;
	box-shadow: none;
	background: none;
	padding: 8px 12px;
	height: auto;
}

.form-group select.form-control {
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../design_img/icon-select-arrow.png);
	background-repeat: no-repeat;
	background-position: right 6px top 50%;
	z-index: 0;
	/*padding: 7px 20px 7px 4px; */
	padding-left: 5px;
	padding-right: 20px;
}

/*@-moz-document url-prefix() {
	.form-group select.form-control {
		padding: 7px 20px 7px 4px;
	}
}*/
.form-group .label-radio {
	margin-right: 15px;
}

.form-group input[type=radio] {
	margin-right: 5px;
}

.form-group .label-check {
	margin-right: 15px;
	text-transform: none !important;
	font-family: 'Poppins', sans-serif !important;
}

.form-group .label-check a {
	color: #fcd80f !important;
}

.form-group .label-check a:hover {
	text-decoration: underline !important
}

.form-group input[type=checkbox] {
	margin-right: 5px;
}

.form-group .form-control:focus {
	box-shadow: none;
	border-color: #ffa34a;
	color: #ffa34a
}

.form-group textarea.form-control {
	resize: none;
}


.inner-abt-sec {
	padding: 80px 0 !important;
	position: relative;
}

/* Date 06-12-2023 
Welcome Letter */

.letter {
    width: 100%;
    max-width: 700px;
    margin: auto;
    background: #fff;
}
.letter .top {
    background: #FFf;
    margin-top: 10px;
    margin-bottom: 15px;
}

.letter .letter-nav {
    list-style: none;
    margin: auto!important;
    display: table;
}
.letter .letter-nav li {
    float: left;
}
.letter .letter-nav a {
    color: #ccc;
    display: block;
    padding: 3px 10px!important;
    margin: 0 5px;
    border: 1px solid #333;
    border-radius: 5px;
}
.letter-box {
    border: 1px solid #333;
    padding: 20px;
}
.letter .header {
    margin-bottom: 20px;
}
.letter .letter-info p {
    font-size: 14px !important;
	line-height:24px !important;
	font-weight:500px;
	text-align:justify;
}
.letter .letter-info p .cong{
	color:#285831;
	font-weight:600;
}
.letter .letter-info p .highlight {
	color:#f27037 !important;
	font-weight:600;
}
.letter .letter-info p.note{
	margin-bottom:0px !important;
}

.letter table td {
    width: 50%;
}
/* Date 08-12-2023 */
.tbl-weekly-details th{
	background:#f8f8f8;
	font-size:12px !important;
	line-height:20px;
	color:#333;
	font-weight:600;
}
.tbl-weekly-details tr td{
	width:12%;
	padding:10px 5px !important;
	font-size:12px !important;
	line-height:20px;
}
.tbl-weekly-details tr td:first-child{
	width:8%;
}
.tbl-weekly-details tr td:nth-child(2){
	width:18%;
}
.tbl-weekly-details tr td{
	vertical-align:middle;
}
.tbl-weekly-details.table-striped > tbody > tr:nth-of-type(2n+1) {
  background-color: #fff !important;
}
/*********************************************************************************
footer styles
***************/
footer {
	position: relative;
	padding: 0;
	background: #174226;
}

/**/
footer .logo {
	width: 250px;
	margin: 0 auto 20px !important;
	display: block;
}

footer .logo img {
	max-width: 100%;
}

/**/
footer p {
	color: #fff;
}

footer p a {
	color: #ffe300 !important
}

footer h2 {
	text-align: left;
	color: #fff;
	font-size: 18px !important;
	font-weight: 500;
	margin-bottom: 25px !important;
	text-transform: capitalize;
	position: relative;
}

footer .footer-bar {
	padding: 40px 0 20px 0;
	border-bottom: 1px solid rgb(255 255 255 / 12%)
}

footer .footer-mid {
	padding: 20px 0;
	background: #1f482e;
}

/* footer site nav*/
footer .site-nav ul {
	list-style: none;
	margin-left: 28px !important;
	margin-bottom: 40px !important;
}

footer .site-nav ul li {
	text-indent: -13px;
	line-height: 22px;
	color: #fff !important;
	margin-bottom: 10px !important;
	font-size: 14px !important;
}

footer .site-nav ul li strong {
	font-weight: 500;
	color: #fff
}

footer .site-nav ul li i {
	margin-right: 8px;
	color: #feaf4f !important;
}

footer .site-nav ul a {
	font-size: 14px;
	color: #fff !important;
	text-align: left;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

/* footer nav*/
footer .nav-menu ul {
	list-style: none;
	margin: auto !important;
	display: table;
	width: 100%;
	padding: 10px 20px !important;
	text-align: center;
	margin-bottom: 0px !important;
}

footer .nav-menu ul li {
	margin: 10px 10px 10px 0px !important;
	padding: 0 20px !important;
	display: inline-flex;
}

footer .nav-menu ul a {
	display: block;
	color: #FFF !important;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

footer .nav-menu ul a:hover {
	color: #9cc33f !important;
}

footer h3.sm-heading {
	font-size: 16px !important;
	line-height: 24px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 10px !important;
	text-align: center;
}

.ftr-clear {
	clear: both !important;
}

footer iframe {
	width: 100%;
	height: 180px;
	border: 0;
}

/* Social Nav */
footer .social-nav ul {
	list-style: none;
	padding: 0px !important;
	display: table;
	text-align: center;
	margin: 0 auto !important;
}

footer .social-nav ul li {
	float: left;
	margin-right: 5px !important;
}

footer .social-nav ul li a {
	border: 0 !important;
	padding: 0 !important;
}

footer .social-nav li a .fa {
	color: #fff !important;
	width: 34px;
	height: 34px;
	line-height: 34px;
	font-size: 16px !important;
	text-align: center;
	border: 0px;
	border-radius: 100%;
	vertical-align: middle;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

footer .social-nav li a .fa-facebook {
	background: #3b5a9a;
}

footer .social-nav li a .fa-twitter {
	background: #28a8e0;
}

footer .social-nav li a .fa-linkedin {
	background: #117bb8;
}

footer .social-nav li a .fa-youtube {
	background: #d81a1a;
}

/* End Social Links */


footer p.other-info {
	margin-bottom: 4px !important;
}

footer .down-app1 img {
	max-width: 100%;
}

footer .sm-gape {
	margin-top: 20px !important;
}

/*footer bar bottom*/
footer .footer-bar-bottom {
	padding: 10px 0px !important;
	position: relative;
	border-top: 1px solid rgb(255 255 255 / 12%)
}

footer .footer-bar-bottom .copy {
	margin-bottom: 0px !important;
	text-align: center;
	color: #FFF;
	font-size: 14px !important;
	line-height: 24px;
}

footer .footer-bar-bottom .co-name {
	margin-right: 5px;
	color: #ffb120;
	font-weight: 600;
}

footer .footer-bar-bottom .designer {
	margin-bottom: 0px !important;
	text-align: right;
	font-size: 13px !important;
}

footer .footer-bar-bottom .designer img {
	border: 1px solid #bbbaba;
	border-radius: 100%;
	padding: 2px;
	background: #fff;
}

footer .policy ul {
	list-style: none;
	overflow: hidden;
}

footer .policy ul li {
	padding-right: 8px !important;
	border-left: 1px solid #f2f2f2;
	float: right;
}

footer .policy ul li a {
	font-size: 14px !important;
	line-height: 24px;
	color: #FFF !important;
	text-transform: capitalize;
	font-weight: 400;
	padding: 0 10px !important;
}

footer .abt-sec {
	position: relative;
	padding-right: 30px !important;
	padding-bottom: 10px;
}

footer .abt-sec p {
	font-size: 14px !important;
	line-height: 24px;
	text-align: justify;
}

footer .ftr-contact {
	padding-left: 30px;
}

/* top and down button*/
#goTop,
#goDown {
	width: 40px;
	height: 40px;
	line-height: 40px !important;
	padding-top: 0px;
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 99;
	text-align: center;
	background: #ffb120;
	color: #fff;
	border-radius: 50%;
	font-size: 25px;
	display: none;
}

#goDown {
	display: block;
}

#goDown .fa {
	padding-top: 6px;
	color: #fff;
}

#goTop .fa,
#goDown .fa {
	color: #fff;
}

#goTop:before,
#goDown:before {
	content: '';
	position: absolute;
	border: 2px solid #ffb120;
	border-radius: 50%;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	-webkit-animation: hvr-ripple-out 1.2s ease-in-out infinite;
	animation: hvr-ripple-out 1.2s ease-in-out infinite;
}

#goTop:after,
#goDown:after {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 1;
	/*background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);*/
}

@-webkit-keyframes hvr-ripple-out {
	100% {
		top: -12px;
		right: -12px;
		bottom: -12px;
		left: -12px;
		opacity: 0;
	}
}

@keyframes hvr-ripple-out {
	100% {
		top: -12px;
		right: -12px;
		bottom: -12px;
		left: -12px;
		opacity: 0;
	}
}