*{
	box-sizing: border-box;
	margin: 0px;
	line-height: normal;
	padding: 0px;
	list-style: none;
	box-shadow: none;
	border: none;
	resize: none;
	outline: none;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
	font-family: 'Graphik';
	outline: none;
	font-weight: 400;
}
select{	
	-webkit-appearance: none;
}
*:after, *:before{
	box-sizing: border-box;
	margin: 0px;
}
a{
	text-decoration: none;
}
::selection{
	background: #FFD328;
	color: #222;
}
body{
	position: relative;
	-webkit-transition: all ease 400ms;
	transition: all ease 400ms;
	scroll-behavior: smooth
}
body::-webkit-scrollbar-track{
	background-color: #FFF;
}
body::-webkit-scrollbar{
	width: 5px;
	background-color: #FFF;
}
body::-webkit-scrollbar-thumb{
	background-color: #FFD328;
}
strong{
	font-weight: 600;
}
@font-face{
	font-family:Graphik;
	src:url(../fonts/999e12539988e1d99d2ffe1ad79c6d12.woff) format("woff");
	font-weight:200;
	font-style:normal;
}
@font-face{
	font-family:Graphik;
	src:url(../fonts/6b7618a1b14a819db7b6f69451c026c8.woff) format("woff");
	font-weight:400;
	font-style:normal;
}
@font-face{
	font-family:Graphik;
	src:url(../fonts/19d71cee9974930b65c0dc6f71258f59.woff) format("woff");
	font-weight:500;
	font-style:normal;
}
@font-face{
	font-family:Graphik;
	src:url(../fonts/3edb5d0f8f094a06162b368da061e435.woff) format("woff");
	font-weight:600;
	font-style:normal;
}
.infinteFloating{
	-webkit-animation: upSideDown 2.25s .75s infinite alternate ease-in-out;
	animation: upSideDown 2.25s .75s infinite alternate ease-in-out;
}
@-webkit-keyframes upSideDown{
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(-10%);
		transform: translateY(-10%);
	}
}
.spinner-container {
    animation: rotate 2s linear infinite;
    -webkit-animation:   2s linear infinite;
}
.spinner-container .path {
    stroke-dasharray: 1,150;
    stroke-dashoffset: 0;
    stroke: #CE0058;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
    -webkit-animation: dash 1.5s ease-in-out infinite;
}
@-webkit-keyframes rotate{
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@-webkit-keyframes dash{
	0% {
		stroke-dasharray: 1,150;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -35;
	}
	100% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -124;
	}
}
.floatLeft{
	float: left;
	width: 100%;
}
.bannerArea{
	position: relative;
	background: #FFF;
}
.navigationList{
	top: 0px;
	left: 0px;
	position: fixed;
	z-index: 13;
	padding: 24px 30px 25px 30px;
}
.navigationList.scrollHeader{
	background: #FFF;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.20);
}
.middleCenter{
	max-width: 1200px;
	width: 100%;
	position: relative;
	margin: 0px auto;
	display: block;
}
.siteLogo{
	float: left;
	width: 70px;
    margin-left: 10px;
}
.siteLogo img{
	max-width: 70px;
}
.rightNavigation{
	float: right;
	padding-left: 40px;
}
.rightNavigation .navigationItem{
	float: left;
	padding: 5px 15px;
	position: relative;
}
.rightNavigation .navigationItem:hover .submenus{
	display: block;
}
.rightNavigation .navigationItem .submenus{
	-webkit-animation: menu-slide-in-up 0.3s;
    animation: menu-slide-in-up 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
	position: absolute;
    border: 1px solid #EFEFEF;
	left: 4px;
    top: 25px;
    background: #FFF;
	display: none;
}
@-webkit-keyframes menu-slide-in-up{
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.submenus .sbumenuLink{
    float: left;
    width: 100%;
    white-space: nowrap;
    padding: 15px 20px 5px;
    font-size: 14px;
    color: #000;
}
.submenus .sbumenuLink:nth-child(2){
    padding-bottom: 15px;
}
.rightNavigation .navigationItem .siteLink{
	font-size: 14px;
	font-weight: 400;
	color: #111;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	-webkit-transition: border .5s;
	transition: border .5s;
	padding: 5px 0;
}
.rightNavigation .navigationItem .siteLink:hover {
	border-color: #FFD328;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
}
.rightNavigation .navigationItem .siteLink.activeLink{
	border-color: #FFD328;
}
.leftSideAnimation{
	float: left;
	width: 50%;
	user-select: none;
	background: -webkit-linear-gradient(#F9F9F3,#F9F7D9,#F9F7D9);
	background: linear-gradient(#F9F9F3,#F9F7D9,#F9F7D9);
	overflow: hidden;
	position: relative;
	height: 100%;
}
.rightSideText{
	float:right;
	padding: 90px 30px 0 65px;
	width: 50%;
}
.rightSideContent{
	background: #FFF;
	position: relative;
	max-width: 300px;
	margin-top: 20px;
}
.contentHeading{
	font-size: 42px;
	font-weight: 200;
	line-height: 1;
	color: #111;
    float: left;
}
.contentTextLine{
	margin-top: 20px;
}
.contentTextLine .descriptionText{
	margin: 14px 0;
	font-size: 15px;
	color: #111;
	line-height: 22px;
}
.riseCardFlot{
	position: absolute;
	top: 10%;
	left: 35%;
	z-index: 2;
	margin: 0 0 0 -205px;
	width: 375px;
	height: 375px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.riseMobileFlot{
	margin-left: -100px;
	width: 470px;
	height: 525px;
	position: absolute;
	top: 20%;
	left: 50%;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.riseCardFlot img, .riseMobileFlot img{
	max-width: 100%;
}
.contactForm{
	margin: 30px 0;
    display: none;
}
.contactForm .earlyAccess{
	font-size: 14px;
	color: #111;
	margin-bottom: 15px;
}
.contactForm .inputEmail{
	position: relative;
	margin: 0 0 0px;
	height: 65px;
	overflow: hidden;
}
.contactForm .inputEmail .countryCode{
	float: left;
    border: solid #C4C4C4;
    border-width: 0 0 2px;
    padding: 12px 10px 13px 0;
	color: #777;
	height: 45px;
}
.contactForm .inputEmail input{
	padding: 13.75px 0;
	margin-bottom: 30px;
	width: 114px;
	height: 45px;
	font-size: 15px;
	border: solid #C4C4C4;
	border-width: 0 0 2px;
	float: left;
	background: transparent;
}
.earlyAcssBtn{
	background: #FFD328;
	color: #222;
	border-radius: 100px;
	min-width: 150px;
	padding: 12px 48px;
	font-size: 15px;
	display: inline-block;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-transition: all .3s;
	box-shadow: inset 0 0px 0 rgba(0,0,0,0.14);
}
.earlyAcssBtn:hover {
    box-shadow: inset 0 -50px 0 rgba(0,0,0,0.14);
}
.bankAreaBox{
	padding: 80px 40px;
}
.headingTitle{
	text-align: center;
	font-size: 41px;
	color: #222;
	font-weight: 200;
	margin-bottom: 40px;
}
.bankAdvant{
	padding: 0px 20px;
    display: flex;
}
.bankAdvant.swapContent{
    flex-direction: row-reverse;
}
.bankAdvant .phoneScreen{
	float: left;
	width: 40%;
	text-align: center;
	position: relative;
	z-index: 1;
}
.bankAdvant .phoneScreen .relatedImgContain{
	max-width: 100%;
	max-height: 100%;
	position: relative;
    z-index: 2;
}
.bankAdvant .bankSubText{
	float: left;
	width: 60%;
	align-self: center;
    padding-left: 5%;
	position: relative;
	z-index: 1;
}
.firstHeading{
	font-size: 30px;
	color: #111;
	padding: 0px;
}
.seconfText{
	font-size: 19px;
    margin-top: 15px;
	color: #111;
    line-height: 26px;
	letter-spacing: 0.04em;
}
.bankAdvant.swapContent .bankSubText{
	padding-right: 5%;
    padding-left: 0;
}
.full_bank_details ul{
    width: 310px;
    margin: 0px auto;
    height: 210px;
    border-radius: 6px;
    background-color: #20243D;
    padding: 10px;
    background-size: contain;
    background-position: center;
    position: relative;
}
.full_bank_details ul li.bank_name{
    padding-top: 0px;
    text-align: right;
    margin-bottom: 0;
    position: relative;
}
.bankNameArab{
    color: #FFF;
    float: left;
    font-size: 19px;
    letter-spacing: 0.07em;
    padding-left: 80px;
    font-family: 'Arial';
	opacity: 0;
}
.full_bank_details ul li label.bankNameFull{
    font-size: 17px;
    letter-spacing: 0.06em;
    font-family: 'Arial';
    float: left;
	color: #FFF;
    padding-left: 80px;
	opacity: 0;
}
.unitedbankLogo {
    position: absolute;
    height: 40px;
	object-fit: contain;
    left: 23px;
    top: 0px;
}
.creditcardchip {
    position: absolute;
    width: 42px;
    height: 34px;
    top: 62px;
    left: 32px;
    background: #fffcb1;
    background: -moz-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #fffcb1), color-stop(100%, #b4a365));
    background: -webkit-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    background: -o-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    background: -ms-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    background: linear-gradient(135deg, #fffcb1 0%, #b4a365 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fffcb1", endColorstr="#b4a365", GradientType=1);
    border: 1px solid #322d28;
    -webkit-border-radius: 8px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 8px;
    -moz-background-clip: padding;
    border-radius: 8px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
    -moz-box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
    box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
    overflow: hidden;
}
.creditcardchip .chipside {
    position: absolute;
    top: 5px;
    width: 9px;
    height: 24px;
    border: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}
.creditcardchip .chipside:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 0px;
    margin: auto;
    border-top: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
}
.creditcardchip .chipleft {
    left: 0;
    border-left: none;
    -webkit-border-radius: 0 2px 2px 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0 2px 2px 0;
    -moz-background-clip: padding;
    border-radius: 0 2px 2px 0;
    background-clip: padding-box;
}
.creditcardchip .chipright {
    right: 0;
    border-right: none;
    -webkit-border-radius: 2px 0 0 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px 0 0 2px;
    -moz-background-clip: padding;
    border-radius: 2px 0 0 2px;
    background-clip: padding-box;
}
.creditcardchip .chipvertical.chiptop {
    top: 0;
    border-top: none;
}
.creditcardchip .chipvertical.chipbottom {
    bottom: 0;
    border-bottom: none;
}
.creditcardchip .chipvertical {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 8.66666667px;
    display: inline-block;
    height: 13px;
    border: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}
.creditcardchip .chipvertical.chipbottom:after {
    bottom: 12px;
}
.creditcardchip .chipvertical.chiptop:after {
    top: 12px;
    width: 16.33333333px;
}
.creditcardchip .chipvertical:after {
    content: '';
    position: absolute;
    left: -8.66666667px;
    display: inline-block;
    width: 24px;
    height: 0px;
    margin: 0;
    border-top: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
}
.full_bank_details ul li.card_number {
    margin-bottom: 5px;
    height: 76px;
	padding: 49px 0 5px;
    position: relative;
}
.card_number .creditcard_number {
    word-spacing: 1.00em;
    font-family: 'Arial';
    font-size: 19px;
    font-weight: lighter;
    display: inline-block;
    padding-left: 18px;
    color: #FFF;
}
.full_bank_details ul li.acc_no {
	padding: 10px 0 5px;
    margin-bottom: 10px;
    position: relative;
    margin-bottom: 0;
}
.full_bank_details .bank_logo {
    position: absolute;
    bottom: -23px;
    right: 10px;
    height: 30px;
    display: inline-block;
}
.full_bank_details .bank_logo img {
    max-height: 100%;
    max-width: 100%;
}
.full_bank_details ul li.acc_no:after {
    content: 'Debit';
    color: #FFF;
    position: absolute;
    right: 13px;
    font-size: 10px;
    bottom: -38px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: italic;
}
.full_bank_details ul li.prsn_name {
    margin-bottom: 0;
    height: 28px;
    text-transform: uppercase;
	padding: 5px 0 5px 18px;
    position: relative;
}
.full_bank_details ul li.prsn_name label {
    font-size: 15px;
    padding-left: 0;
	color: #FFF;
	float: left;
}
.full_bank_details {
	position: absolute;
    right: 38px;
    z-index: 1;
    bottom: 100px;
}
.bankAreaBox .bankAdvant.swapContent .riseBankMobile{
	text-align: right;
    min-height: 480px;
	float: right;
}
.bankAreaBox .bankAdvant.swapContent .riseBankMobile:after{
	content: '';
	height: 400px;
    width: 200px;
    border-top-left-radius: 340px;
    border-bottom-left-radius: 340px;
    background: #FFD328;
    display: inline-block;
    position: absolute;
    right: 180px;
    z-index: -1;
    bottom: 30px;
}
.yourDesignation{
	margin-top: 30px;
	text-align: center;
}
.yourDesignation .DesigBtn{
	display: inline-block;
	color: #222;
	font-size: 16px;
	border-radius: 2px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-transition: all .3s;
}
.yourDesignation .employerBtn{
	background: #FFD328;
	padding: 0px 35px;
	height: 48px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	margin-right: 20px;
    box-shadow: inset 0 -0px 0 rgba(0,0,0,0.14);
}
.yourDesignation .employerBtn svg{
	height: 25px;
	width: 25px;
	fill: #000;
    margin-right: 20px;
}
.yourDesignation .employerBtn:hover {
    box-shadow: inset 0 -50px 0 rgba(0,0,0,0.14);
}
.yourDesignation .employeeBtn{
	background: #FFF;
	border: 2px solid #FFD328;
	padding: 13px 33px;
	margin-left: 20px;
}
.yourDesignation .employeeBtn:hover{
	background: #FFD328;
}
.aboutTeam .swiper-wrapper, .aboutTeam .swiper-slide{
	height: auto;
}
.aboutTeam .swiper-slide{
	padding: 10px 0px 65px 80px;
}
.aboutTeam .swiper-slide .teamPhoto{
	position: absolute;
	left: 10px;
	top: 10px;
	height: 60px;
	width: 60px;
	border-radius: 100%;
	display: inline-block;
}
.aboutTeam .swiper-slide .teamPhoto img{
	max-width: 100%;
	max-height: 100%;
	border-radius: 100%;
	overflow: hidden;
	display: inline-block;
}
.teamInfo .authorName{
	font-size: 15px;
	color: #222;
	padding-top: 15px;
	font-weight: 500;
}
.teamInfo .authorPostion{
	font-size: 13px;
	color: #222;
	padding-top: 5px;
	font-weight: 500;
}
.swiper-container-horizontal .swiper-pagination-bullets{
	bottom: 0px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #FFD328;
}
.bankAreaBox .indepentInfo{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.indepentInfo .infoDetial, .indepentInfo .teamPhotoFull{
	float: left;
	width: 50%;
}
.indepentInfo .teamPhotoFull{
	text-align: center;
}
.indepentInfo .teamPhotoFull .imgFullWidth{
	text-align: center;
	display: inline-block;
	height: 200px;
	width: 200px;
	border-radius: 100%;
	transition: all ease 400ms;
	-webkit-transition: all ease 400ms;
}
.teamPhotoFull .imgFullWidth img{
	max-width: 100%;
	border-radius: 100%;
	overflow: hidden;
	transition: all ease 400ms;
	-webkit-transition: all ease 400ms;
}
.indepentInfo{
	min-height: 320px;
}
.indepentInfo .infoDetial{
	text-align: center;
}
.infoDetial .FullName{
	font-weight: 500;
	text-transform: uppercase;
	font-size: 15px;
	color: #222;
	margin-bottom: 20px;
	transition: all ease 400ms;
	-webkit-transition: all ease 400ms;
}
.infoDetial .PrsnPostion{
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	color: #222;
	margin-bottom: 20px;
	transition: all ease 400ms;
	-webkit-transition: all ease 400ms;
}
.infoDetial .prsnSaying{
	font-size: 13px;
	color: #555;
	margin-bottom: 40px;
    line-height: 20px;
	transition: all ease 400ms;
	-webkit-transition: all ease 400ms;
}
.infoDetial .profileLink{
	font-size: 13px;
	color: #222;
	display: inline-block;
	margin-bottom: 60px;
	text-decoration: underline;
	font-style: italic;
}
.copyRight{
	padding: 22px 40px;
	background: #09152F;
}
.copyRightBox .copyright_text{
	color: #6C848F;
	font-size: 13px;
	float: left;
    padding-top: 10px;
}
.copyRightBox .socialIcons{
	float: right;
}
.copyRightBox .socialIcons .socialLinks{
	float: left;
	height: 32px;
    line-height: 30px;
    border-radius: 100%;
    font-size: 22px;
    text-align: center;
    display: inline-block;
    margin-top: 5px;
    margin-left: 16px;
	color: #6C848F;
}
.copyRightBox .socialIcons .socialLinks:hover{
	color: #FFF;
}
.bankFeatures .featursPoints{
	float: left;
	width: 25%;
	text-align: center;
	margin-top: 30px;
}
.bankFeatures .featursPoints .featureIcon{
	display: flex;
	border-radius: 100%;
	border: 3px solid #444;
	background: #FFF;
	height: 90px;
	width: 90px;
	justify-content: center;
	align-items: center;
    margin: 0px auto;
}
.bankFeatures .featursPoints .featureIcon img{
	height: 55px;
	display: inline-block;
	-webkit-filter: invert(100%);
}
.bankFeatures .featursPoints .featureIcon svg{
	height: 50px;
	width: 50px;
	fill: #000;
}
.bankFeatures .featursPoints .featureTitle{
	font-size: 14px;
	color: #222;
	margin-top: 5px;
	opacity: 1;
	transition: all ease 400ms;
}
.bankFeatures .featursPoints:hover .featureIcon{
	background: #FFD328;
}
.bankFeatures .featursPoints:hover .featureTitle{
	opacity: 1;
}
.marginTop{
	margin-top: 50px;
}
.dropShipAdv .dropAdvaBox {
    float: left;
    width: 30%;
	border: 1px solid #E1E8F0;
}
.dropShipAdv .dropAdvaBox.middleBox{
	margin: 0px 5%;
}
.dropAdvaBox .shipPostImg {
    text-align: center;
	height: 195px;
	border-bottom: 1px solid #E1E8F0;
}
.dropAdvaBox .shipPostImg img {
    width: 100%;
    max-height: 100%;
    height: 195px;
	object-fit: cover;
}
.dropAdvaBox .advShipTitle {
    font-size: 16px;
    color: #222;
	padding: 14px;
}
.riseMediaContent{
	margin: 0px auto;
	width: 100%;
    max-width: 990px;
	position: relative;
}
.riseMediaBox{
	background: #FFF;
	position: relative;
	margin-bottom: 20px;
}
.allMediaPostsContian{
	margin: 50px 0;
}
.riseMediaBox:hover{
    box-shadow: 0 49.5px 70px -24.5px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: padding 0.15s cubic-bezier(0.4, 0, 0.2, 1),margin 0.15s cubic-bezier(0.4, 0, 0.2, 1),box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: padding 0.15s cubic-bezier(0.4, 0, 0.2, 1),margin 0.15s cubic-bezier(0.4, 0, 0.2, 1),box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}
.socialShareOpt{
	position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
	padding: 0px 38px;
	height: 71px;
}
.socialShareOpt .socialLinks{
	margin-top: 18px;
	opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
	position: relative;
    z-index: 2;
	float: left;
	margin-left: 19px;
	font-size: 16px;
}
.riseMediaBox:hover .socialLinks:nth-child(1){
	opacity: 1;
    transition-delay: 0s;
}
.riseMediaBox:hover .socialLinks:nth-child(2){
	opacity: 1;
    transition-delay: 0.05s;
}
.riseMediaBox:hover .socialLinks:nth-child(3){
	opacity: 1;
    transition-delay: 0.1s;
}
.riseMediaBox:hover .socialLinks:nth-child(4){
	opacity: 1;
    transition-delay: 0.15s;
}
.socialShareOpt .socialLinks .socialIcon{
	background: transparent;
}
.riseMediaBox .mediaTiteContent{
	padding: 34px 36px 0;
	float: left;
	width: 243px;
}
.mediaTiteContent .dateTitle, .mediaTiteContent .fullDate{
	font-size: 12px;
	font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}
.mediaTiteContent .dateTitle{
	color: #FFA955;
}
.mediaTiteContent .fullDate{
	color: #FFA955;
}
.mediaTiteContent .mediaHeadline{
	font-size: 22px;
    line-height: 1.27273;
    font-weight: 500;
	color: #222;
	margin-top: 15px;
}
.riseMediaBox .mediaImageBox{
    width: 747px;
    height: 394px;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	float: left;
}
.riseFooter{
	padding: 60px 40px 20px;
    background: #09152F;
}
.riseFooterContainer .companyRow{
	margin-left: 7%;
}
.riseFooterContainer .aboutRise{
	float: left;
	width: 25%;
	padding: 0px 15px;
}
.riseFooterContainer .footerLinkRow{
	float: left;
	width: 22%;
	padding: 0px 15px;
}
.aboutRise .siteDescFooter{
	line-height: 23px;
    font-size: 14px;
    color: #C2C6CF;
    padding: 20px 0;
}
.aboutRise .quesAbtrise{
	margin-top: 10px;
	line-height: 23px;
    font-size: 14px;
    color: #C2C6CF;	
}
.aboutRise .quesAbtrise a{
    color: #009CDE;
}
.quesAbtrise svg{
	height: 12px;
	width: 15px;
	fill: currentColor;
	display: inline-block;
}
.aboutRise .joinRiseBtn{
    font-size: 14px;
    color: #222;
	background: #FFD328;
    padding: 10px 0;
	border-radius: 4px;
	text-align: center;
}
.footerLinkRow h4{
	font-weight: 700;
    font-size: 15px;
    line-height: 26px;
    text-transform: uppercase;
    padding-bottom: 30px;
    color: #C2C6CF;
}
.rise-footer-menu .footerLinks a{
	font-weight: 300;
    color: #C2C6CF;
    line-height: 23px;
    font-size: 13px;
}
.appleStorBtn.appleBtn {
    margin-top: 20px;
}
.appleStorBtn {
    float: left;
    width: 100%;
    margin-top: 10px;
}
.appleStorBtn img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}
.social_links .socialLink{
	float: left;
	margin-left: 10px;
}
.social_links .socialLink a{
	color: #FFF;
	font-size: 16px;	
}
.themecookies_container{
	border-radius: 5px;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 0.8s;
	-moz-animation-duration: 0.8s;
	-o-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
	background: #fff;
	color: #999;
	font-size: 17px;
	font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
	box-sizing: border-box;
	border: 1px solid #ccc;
	left: initial;
	right: 20px;
	bottom: 20px;
	width: 300px;
	position: fixed;
	overflow: hidden;
	padding: 10px 15px 50px;
	display: none;
	z-index: 9999;
}
@keyframes fadeInRight{
0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
@-webkit-keyframes fadeInRight{
0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.themecookies_btn_accept_all{
	color: #000;
	background-color: #f1d600;
	transition: background 200ms ease-in-out,color 200ms ease-in-out,box-shadow 200ms ease-in-out;
	-webkit-transition: background 200ms ease-in-out,color 200ms ease-in-out,box-shadow 200ms ease-in-out;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	right: 15px;
	bottom: 37px;
	padding: 8px 16px;
	background-color: #f1d600;
	position: absolute;
	bottom: 10px;
	left: 15px;
	right: 15px;
	text-align: center;
	font-size: 1em;
	line-height: normal;
	text-decoration: none;
}
.themecookies_message{
	font-size: 1em;
	transition: font-size 200ms;
	margin: 0;
	padding: 0;
	color: #888;
	line-height: normal;
}
.mobileMenu{
	display: none;
}
.masonaryCourses{
	-moz-column-width: 18em;
    -webkit-column-width: 18em;
    -moz-column-gap: 22px;
    -ms-column-gap: 22px;
    -webkit-column-gap: 22px;
}
.masonaryCourses .courses_list{
	display: inline-block;
    margin: 8px 0px;
    width: 100%;
}
.masonaryCourses .courses_list .courses_box{
    border: 3px solid #DDD;
}
.courses_list .courses_box .course_img{
    text-align: center;
    background: #FFF;
    padding: 10px;
    text-align: center;
    height: auto;
}
.courses_box .course_img img {
    max-width: 100%;
}
.courses_box .courses_name{
    background: #DDD;
    font-size: 18px;
    color: #000;
    letter-spacing: 0.04em;
    box-sizing: border-box;
    padding: 10px;
    text-align: left;
}
.courses_box .courses_price.courses_name {
    padding-top: 0px;
}
.courseDescription{
    border: 3px solid #DDD;
    padding: 20px;
    background: #FFF;
}
.courseDescription .course_image{
	float: left;
	width: 38%;	
}
.courseDescription .course_image .course_thumbnail{
	border: 3px solid #DDD;
	padding: 10px;
	position: relative;
}
.course_image .course_thumbnail img{
	max-width: 100%;
	display: inline-block;
	height: auto;
}
.courseDescription .course_desc{
	float: left;
	width: 60%;
	margin-left: 2%;
}
.courseDescription .course_desc .course_name{
	font-size: 30px;
	font-weight: 500;
	margin: 0px;
	text-align: left;
}
.courseDescription .course_desc .course_full_descripton, .courseDescription .course_price, .vendor_info .instruction_name{
	font-size: 20px;
	font-weight: 300;
	margin: 15px 0 0;
	text-align: left;
    letter-spacing: 0.04em;
	color: #222;
}
.courseDescription .course_price{
	font-weight: 600;
}
.course_desc .course_buy_btn{
	float: left;
	padding: 12px 35px;
	font-size: 20px;
	color: #000;
	font-weight: 100;
	background: #FFD328;
	margin: 15px 0 10px;
}
.courseDescription .vendor_info{
	position: relative;
	margin: 15px 0 0;
	padding-left: 70px;
    min-height: 60px;
}
.courseDescription .vendor_info .vendor_logo{
	position: absolute;
	left: 10px;
	top: 0px;
	height: 50px;
	width: 50px;
    align-items: center;
    display: flex;
	border-radius: 100%;
	overflow: hidden;
}
.vendor_info .vendor_logo img{
	max-width: 100%;
	display: inline-block;
}
.vendor_info .instruction_name #vendor_name{
	color: #555;
}
.vendor_info .instruction_name #vendor_name:hover{
	text-decoration: underline;
}
.vendor_layer{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	bottom: 0px;
	background: rgba(0,0,0,0.60);
	z-index: 9999;
	display: none;
}
.vendor_layer .vender_center{
	position: relative;
	max-width: 650px;
	height: 100%;
	width: 100%;
	margin: 0px auto;
	display: flex;
	align-items: center;
	top: 0px;
}
.vendor_layer .vender_container_info{
	background: #FFF;
}
.vender_container_info .info_heading{
	background: #FFD328;
	margin: 0px 0px 20px;
	position: relative;
}
.vender_container_info .info_heading .info_text{
	display: inline-block;
	float: left;
	font-size: 20px;
	padding: 10px;
	font-weight: 500;
}
.vender_container_info .close_info{
	position: absolute;
	top: 0px;
	right: 0px;
    height: 42px;
    width: 50px;
    display: flex;
    color: #222;
    align-items: center;
    justify-content: center;
}
.vendor_layer .vendor_full_info{
	position: relative;
}
.vendor_full_info .vendor_logo_img{
	position: absolute;
	top: 0px;
	left: 10px;
	width: 250px;
    height: 250px;
	padding: 0px 10px 10px;
    text-align: center;
}
.vendor_full_info .vendor_logo_img img{
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
}
.vendor_full_info .vedor_name_info{
	min-height: 260px;
	padding-left: 270px;
	padding-right: 10px;
}
.vedor_name_info .intrutor_name{
	font-size: 25px;
	font-weight: 600;
	color: #222;
	text-align: left;
}
.vedor_name_info .vendor_descrip{
	font-size: 20px;
	font-weight: 300;
	color: #222;
	margin: 10px 0px;
	text-align: left;
}
.app_storeIcons {
    text-align: center;
    margin-top: 10px;
}
.app_storeIcons .app_btn{
    margin: 0px 2%;
    width: 46%;
    text-align: center;
    float: left;
    position: relative;
}
.app_storeIcons .app_btn img {
    max-width: 100%;
    max-height: 60px;
}
.toastNotifications{
	position: fixed;
	top: 20px;
	right: 20px;
	align-items: center;
	padding: 20px;
	color: #FFF;
	font-size: 16px;
	line-height: 1.5;
	z-index: 2000;
	background: #09152F;
	border-radius: 4px;
	min-width: 300px;
	max-width: 440px;
	min-height: 74px;
	display: flex;
	display: none;
	-webkit-transition: opacity .4s ease,bottom .4s ease;
	-o-transition: opacity .4s ease,bottom .4s ease;
	transition: opacity .4s ease,bottom .4s ease;
}
.toastNotifications.toastIn{
	opacity: 1;
	display: flex;
}
.toastNotifications .notificationsIcon{
	height: 32px;
	width: 32px;
	text-align: center;
	position: absolute;
	overflow: hidden;
	border-radius: 100%;
	left: 20px;
	top: 20px;
	line-height: 1;
}
.toastNotifications.success .notificationsIcon:before{
	color: #91C039;
	content: "\f058";
	font-family: FontAwesome;
	font-size: 33px;
	float: left;
}
.toastNotifications.error .notificationsIcon{
	height: 30px;
	width: 30px;
	margin-top: 2px;
}
.toastNotifications.error .notificationsIcon:before{
	content: "\f05a";
	font-family: FontAwesome;
	color: #FFCD5D;
	font-size: 33px;
	float: left;
}
.toastNotifications .notificationsText{
	float: left;
	align-self: center;
	width: 100%;
	padding-left: 38px;
}
.great-wall-section{
	display: inline-flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.back-wall-div{
    min-height: 400px;
    border-radius: 3px;
    background: #FFF;
    box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, .17);
    background-position: top center;
    background-size: cover;
	float: left;
    width: 30%;
    margin-bottom: 30px;
    border: 20px solid #FFF;
    padding-bottom: 50px;
	position: relative;
}
.riseQuote{
	position: absolute;
	bottom: 0px;
	height: 50px;
	background: #FFF;
	color: #000;
	font-size: 16px;
	left: 0px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}
.videoBox{
	height: 100%;
	object-fit: cover;
}
.rightBoxWrapper{
	float: left;
    width: 50%;
    padding-left: 5%;
    position: relative;
    z-index: 1;
	align-content: center;
    display: flex;
    height: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.switchSrcoll{
	display: none;
}
.scrollHeader .switchSrcoll{
	display: inline-block;
}
.scrollHeader .switchLogo{
	display: none;
}
.textLeft{
	text-align: left;
}
.textRight{
	text-align: right;
}
.videoOvrly:after{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-image: url('../images/overlay_dot.png');
	background-color: rgba(8, 8, 8, 0.3);
}
.swapContent{
	display: flex;
    flex-direction: row-reverse;
	flex-wrap: wrap;
}
.migrantSlider, .founderSlider{
	padding-bottom: 30px;
	height: auto;
}
.migrantSlider .swiper-slide, .founderSlider .swiper-slide, .migrantSlider .swiper-wrapper, .founderSlider .swiper-wrapper{
	height: auto;
}
.FounderName{
	font-size: 20px;
	color: #000;
	margin-bottom: 10px;
}
.FounderDesg{
	font-size: 15px;
	color: #000;
	margin-bottom: 20px;
}
.founderBox .teamPhoto img{
	max-width: 100%;
    border-radius: 100%;
	height: 200px;
    width: 200px;
    border-radius: 100%;
    overflow: hidden;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}
.foundrBio{
	padding: 0px 10px;
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 20px;
	margin-top: 10px;
	text-align: left;
}
.faq_contents .faq_icons{
    float: left;
    width: 96%;
    margin-left: 2%;
}
.faq_contents .faq_icons .faq_heading {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0px 0px 30px;
    font-size: 35px;
    color: #222;
    font-weight: 200;
}
.faq_contents .faq_icons ul{
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.faq_contents .faq_icons ul li{
	float: left;
	width: 20%;
	text-align: center;
    min-height: 155px;
}
.faq_contents .faq_icons ul li .related_icon{
	display: inline-block;
	height: 120px;
	width: 120px;
	border-radius: 100%;
	background: #FFD328;
	color: #222;
    font-size: 13px;
    text-transform: uppercase;
    padding-top: 53px;
    box-sizing: border-box;
	position: relative;
    border: 1px solid #EED328;
}
.faq_contents .faq_icons ul li.registration .related_icon{
	padding-top: 46px;
}
.faq_contents .faq_icons ul li.selected .related_icon:after{
	content: "\f0d7";
	font-family: FontAwesome;
	font-size: 30px;
	color: #FFD328;
	display: inline-block;
	position: absolute;
    left: 0;
    bottom: -27px;
    width: 100%;
    text-align: center;
}
.faq_all_lists{
	float: left;
	width: 90%;
	margin: 60px 5% 100px;
}
.faq_all_lists .faq_content_box{
	float: left;
	width: 100%;
	display: none;
}
.faq_content_box ul li{
	float: left;
	width: 100%;
	border-bottom: 1px solid #777;
    margin-bottom: 10px;
}
.faq_content_box ul li .faq_head{
	float: left;
	width: 100%;
	font-size: 17px;
	color: #222;
	cursor: pointer;
    padding-bottom: 10px;
	font-weight: 600;
}
.faq_content_box ul li .faq_answer_box{
	display: none;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}
.faq_content_box ul li .faq_answer_box .faq_ans_text{
	float: left;
	width: 100%;
	font-size: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}
.faq_ans_text .points_faq{
	float: left;
	width: 100%;
	font-size: 16px;
	letter-spacing: 0.04em;
	box-sizing: border-box;
	padding-left: 4px;
    margin-top: 5px;
}
.employee_img.faq_ans_text img {
    height: 110px;
}
.download_app.faq_ans_text img {
    height: 310px;
	margin-left: 10px;
}
.faq_ans_text .email{
    text-transform: lowercase;
	color: #FFD328;
	font-variant-caps: inherit;
}
.contactRow{
	justify-content: center;
    display: flex;
	align-items: center;
}
.newLogoRow{
	margin-top: 10px;
}
.newLogoRow img{
	height: 20px;
	object-fit: contain;
}
.newLogoRow.gulfnews img{
	height: 25px;
}
.newLogoRow.zawalogo img, .newLogoRow.thenationalLogo img{
	height: 35px;
}
.paymentLogos{
	float: right;
	display: flex;
	align-items: center;
	margin-right: 110px;
}
.paymentLogos .paymentLogoBox{
	display: inline-block;
	margin-left: 15px;
}
.paymentLogos .paymentLogoBox svg{
	height: 45px;
	width: 45px;
	fill: #FFF;
}
.telrLogo img{
	height: 30px;
    max-width: 100%;
    object-fit: contain;
}
@media only screen and (max-width:768px){
	.paymentLogos{
		margin-right: 10px;
	}
	.navigationList{
		padding: 0px;
		min-height: 70px;
	}
	.navigationList .siteLogo{
		margin: 18px 0px 0px 30px;
	}
	.mobileMenu{
		display: inline-block !important;
		float: right;
		padding: 20px;
		color: #222;
		font-size: 30px;
	}
	.mobileMenu.whiteColor{
		color: #FFF;
	}
	.scrollHeader .mobileMenu.whiteColor{
		color: #222;
	}
	.rightNavigation{
		position: absolute;
		left: 0px;
		width: 100%;
		margin: 0px;
		padding: 10px;
		background: #FFF;
		top: 69px;
		display: none;
	}
	.rightNavigation .navigation_list .navigationItem{
		width: 100%;
		padding: 10px 15px;
		border-bottom: 1px solid #DDD;
	}
	.rightNavigation .navigation_list .navigationItem:last-child{
		border-bottom: none;
	}
	.bankAdvant.swapContent, .bankAdvant, .bankAreaBox .indepentInfo{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.leftSideAnimation, .rightSideText, .bankAdvant .phoneScreen, .bankAdvant .bankSubText, .indepentInfo .infoDetial, .indepentInfo .teamPhotoFull, .dropShipAdv .dropAdvaBox, .courseDescription .course_image, .courseDescription .course_desc{
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}
	.bankAreaBox{
		padding: 60px 0px;
	}
	.bankAreaBox.contactArea{
		padding: 60px 20px;
	}
	.dropShipAdv .dropAdvaBox.middleBox{
		margin-left: 0px;
		margin-right: 0px;
	}
	.bankAdvant .bankSubText, .indepentInfo .infoDetial, .dropShipAdv .dropAdvaBox, .dropShipAdv .dropAdvaBox.middleBox, .courseDescription .course_desc{
		margin-top: 40px;
	}
	.indepentInfo .infoDetial{
		padding: 0px 20px;
	}
	.bankAdvant .bankSubText{
		padding-left: 0px;
	}
	.bankAdvant.swapContent .bankSubText{
		padding-right: 0px;
	}
	.bankAreaBox .bankAdvant.swapContent .riseBankMobile{
		text-align: center;
	}
	.firstHeading{
		text-align: center;
	}
	.rightSideText{
		padding: 60px 30px;
	}
	.footerLinkRow h4{
		padding-bottom: 10px;
	}
	.riseFooterContainer .footerLinkRow{
		margin-top: 30px;
	}
	.riseFooterContainer .aboutRise, .riseFooterContainer .footerLinkRow{
		width: 50%;
		margin-left: 0px;
		margin-right: 0px;
	}
	.riseMediaBox .mediaTiteContent{
		width: 100%;
		margin-top: 170px;
		padding: 24px 15px 0;
	}
	.socialShareOpt{
		padding: 0px 8px;
	}
	.riseMediaBox{
		height: 374px;
	}
	.riseMediaBox .mediaImageBox{
		height: 170px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.mediaTiteContent .mediaHeadline{
		font-size: 20px;
		margin-top: 10px;
	}
	.allCoursesContainer{
		padding-left: 20px;
		padding-right: 20px;
	}
	.courseDescription{
		padding: 10px;
	}
	.back-wall-div{
		width: 48%;
	}
	.rightNavigation .navigationItem .submenus{
		display: block;
		position: static;
		box-shadow: none;
		border: none;
		float: left;
		width: 100%;
	}
	.faq_contents .faq_icons ul li{
		width: 100%;
	}
}
@media only screen and (max-width:568px){
	.riseCardFlot{
		height: 300px;
		width: 300px;
		left: 45%;
		top: 20%;
	}
	.riseFooterContainer .aboutRise, .riseFooterContainer .footerLinkRow, .rightBoxWrapper{
		width: 100%;
	}
	.rightBoxWrapper{
		padding-left: 20px;
		padding-right: 20px;
	}
	.riseMobileFlot{
		width: 400px;
		height: 400px;
		left: 40%;
	}
	.yourDesignation .DesigBtn{
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.bankAreaBox .bankAdvant.swapContent .riseBankMobile:after, .full_bank_details{
		display: none;
	}
	.headingTitle{
		font-size: 30px;
	}
	.firstHeading{
		font-size: 25px;
	}
	.seconfText{
		font-size: 17px;
	}
	.infoDetial .prsnSaying{
		text-align: left;
	}
	.bankAdvant .phoneScreen .relatedImgContain{
		width: 240px;
	}
	.bankFeatures .nannyBenefits .featursPoints{
		width: 50%;
	}
	.bankFeatures .featursPoints .featureIcon{
		height: 60px;
		width: 60px;
	}
	.bankFeatures .featursPoints .featureIcon img, .bankFeatures .featursPoints .featureIcon svg{
		height: 35px;
	}
	.appleStorBtn img{
		height: 40px;
	}
	.back-wall-div{
		width: 90%;
	}
	.rightBoxWrapper .firstHeading{
		text-align: left;
	}
	.rightBoxWrapper .bankFeatures .featursPoints{
		width: 50%;
	}
	.swapContent{
		display: inline-block;
	}
	.copyRight{
		padding: 15px 20px;
	}
	.paymentLogos .paymentLogoBox.telrLogo{
		margin-left: 0px;
	}
	.paymentLogos{
		margin-right: 0px;
		width: 100%;
		margin-top: 10px;
	}
}