* {
	box-sizing: border-box;
}

body {
	font-family: 'Lato', sans-serif;
	margin: 0;
	padding: 0;
	color: #454545;
	background-color: #ffffff;
}

h2 {
	font-size: 36px;
	line-height: 40px;
}

p {
	font-size: 16px;
	line-height: 24px;
	display: block;
	font-weight: 400;
	margin: 0;
	color: #64696c;
}

.pt-30 {
	padding-top: 30px;
}

.btn {
	font-size: 20px;
	line-height: 26px;
	color: #ffffff;
	background-color: #6aa53d;
	text-decoration: none;
	padding: 24px 64px 26px 64px;
	display: inline-block;
	border-radius: 2px;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
	transition: all 0.5s ease;
}

.btn.secondary {
	font-size: 16px;
	line-height: 18px;
	padding: 18px 45px 18px 45px;
}

.btn:hover {
	opacity: 0.5;
	transition: all 0.5s ease;
}

.container {
	max-width: 1140px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
}

/*////////////////////////////////////////////////////////////////////
/////   Header
/////////////////////////////////////////////////////////////////////*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: transparent;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	/*width: 144px;*/
	display: block;
	font-size: 30px;
	color: #43a047;
	text-decoration: none;
}
.vertical-bar{
	background-color: #43a047;
	width: 4px;
	height: 28px;
	margin: 0 2px;
	line-height: 26px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -7px;
}
.triangle{
	width: 0;
	height: 0;
	display: inline-block;
	border-style: solid;
	border-width: 14px 0 14px 24.2px;
	border-color: transparent transparent transparent #43a048;
	vertical-align: middle;
	margin: -7px 0 0 2px;
}
header .logo.text {
	/*border-bottom: 2px solid;*/
}

header .logo img {
	/*width: 100%;*/
	width: 144px;
	display: block;
}

header .open-nav {
	width: 32px;
	cursor: pointer;
}

header .open-nav span {
	width: 30px;
	height: 2px;
	background-color: #454545;
	display: block;
	margin-bottom: 5px;
}

header .close-nav {
	width: 32px;
	height: 32px;
	cursor: pointer;
	margin-left: auto;
	position: relative;
}

header .close-nav:after {
	content:'';
	width: 30px;
	height: 2px;
	background-color: #454545;
	position: absolute;
	top: 14px;
	left: 0;
	transform: rotate(45deg);
	margin-bottom: -1px;
}

header .close-nav:before {
	content:'';
	width: 30px;
	height: 2px;
	background-color: #454545;
	position: absolute;
	top: 14px;
	left: 0;
	transform: rotate(-45deg);
	margin-bottom: -1px;
}

header .open-nav span:last-child {
	margin-bottom: 0;
}

header .nav {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}

header .nav li {
	display: inline-block;
	margin-right: 40px;
}

header .nav li:last-child {
	margin-right: 0;
}

header .nav li a {
	font-size: 16px;
	font-weight: 700;
	color: #454545;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.5s ease;
}

header .nav li a:hover,
header .nav li a.active {
	color: #9faab2;
	transition: all 0.5s ease;
}



/*////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
/////  Home Page
////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////*/

/*////////////////////////////////////////////////////////////////////
/////   Main Container Image
/////////////////////////////////////////////////////////////////////*/
.main-container-img {
	background: url('../web/img/main-bg-img.jpg') no-repeat;
	background-position: top center;
	background-size: cover;
	/*height: 100vh;*/
}

.main-container-img .get-cash-block {
	max-width: 380px;
	width: 100%;
	border-top: 2px solid #616669;
	background-color: #ffffff;
	padding: 50px 40px 40px 38px;
	margin-left: auto;
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1); 
}

.main-container-img .get-cash-container {
	/*padding-top: 58px;*/
}
#landeriframe #rsIframe{
    width:45%;
    margin:0 0 0 auto;
    display:block;
}
@media screen and (max-width: 1140px){
    #landeriframe #rsIframe{
        width:100%;
        margin:0 0 0 auto;
        display:block;
    }
    .main-container-img{
        background:white;
    }
    .logo.index{
        margin:0 auto;
    }
}
@media screen and (max-width: 800px){
    #landeriframe #rsIframe{
        /*width:52%;*/
        margin:0 auto;
        display:block;
    }
}

.main-container-img .container{
    padding:0 !important;
}


.main-container-img .get-cash-block .title {
	font-size: 36px;
	line-height: 40px;
	font-weight: 300;
	display: block;
	margin-bottom: 33px;
}

.main-container-img .get-cash-block .price-block {
	display: flex;
	aling-items: center;
	justify-content: space-between;
}

.main-container-img .get-cash-block .price-block img {
	width: 91px;
	height: 77px;
	display: block;
	transform: rotate(45deg);
}

.main-container-img .get-cash-block .price {
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	display: block;
	color: #6aa53d;
	margin-bottom: 41px;
}


/*////////////////////////////////////////////////////////////////////
/////   How it Works Container
/////////////////////////////////////////////////////////////////////*/
.how-it-works-container {
	padding-top: 72px;
	padding-bottom: 68px;
}

.how-it-works-container h2{
	text-align: center;
	margin: 0 0 54px 0;
	font-weight: 300;
}

.how-works-items {
	display: flex;
	justify-content: space-between;
}

.how-works-items .item {
	display: flex;
	align-items: flex-start;
	max-width: 350px;
	width: 100%;
}

.how-works-items .item img {
	display: block;
	margin-right: 32px;
}

.how-works-items .item .content .title {
	font-size: 18px;
	line-height: 26px;
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
}

.how-works-items .item .content p {
	padding-right: 30px;
}



/*////////////////////////////////////////////////////////////////////
/////   Find Loan container
/////////////////////////////////////////////////////////////////////*/
.find-loan-container {
	background: #f3f4f5 url('../web/img/findloan-bg-img.png') no-repeat;
	background-position: bottom right;
}

.find-loan-container .container {
	border-top: 2px solid #64696c;
	position: relative;
	padding-top: 72px;
	padding-bottom: 74px;
}

.find-loan-container .container:after {
	content: '';
	width: 33.33333%;
	height: 2px;
	background-color: #9faab2;
	position: absolute;
	top: -2px;
	left: 0;
}

.find-loan-container .container:before {
	content: '';
	width: 33.33333%;
	height: 2px;
	background-color: #6aa53d;
	position: absolute;
	top: -2px;
	right: 0;
}

.find-loan-container .content {
	max-width: 730px;
	width: 100%;
	margin: 0 auto;
}

.find-loan-container .content h2,.find-loan-container .content h1 {
	margin: 0 0 48px 0;
	font-weight: 300;
}

.find-loan-container .content h2 span,.find-loan-container .content h1 span {
	font-weight: 700;
	color: #6aa53d;
}

.find-loan-container .content p {
	margin-bottom: 38px;
}

.find-loan-container .content p:last-child {
	margin-bottom: 0;
}

.find-loan-container .content ul {
	margin: 0 0 62px 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

.find-loan-container .content li {
	display: inline-block;
}

.find-loan-container .content li img {
	margin-right: 12px;
}

.find-loan-container .content li span {
	font-size: 16px;
	line-height: 24px;
	color: #64696c;
	font-weight: 700;
}



/*////////////////////////////////////////////////////////////////////
/////   Why Find Loan container
/////////////////////////////////////////////////////////////////////*/
.why-find-loan-container {
	background-color: #f8f9fa;
	padding-top: 71px;
	padding-bottom: 78px;
}

.why-find-loan-container h2 {
	margin: 0 0 50px 0;
	text-align: center;
	font-weight: 300;
}

.why-find-loan-container h2 span {
	font-weight: 700;
	color: #6aa53d;
}

.why-find-loan-items {
	display: flex;
	justify-content: space-between;
}

.why-find-loan-items .items-right,
.why-find-loan-items .items-left {
	width: 50%;
}

.why-find-loan-items .items-right {
	padding-left: 40px;
}

.why-find-loan-items .item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 38px;
}

.why-find-loan-items .item:last-child {
	margin-bottom: 0;
}

.why-find-loan-items .item img {
	display: block;
	margin-right: 40px;
	width: 61px;
	height: 55px;
}

.why-find-loan-items .items-left .item .content {
	padding-right: 45px;
}

.why-find-loan-items .item .content .title {
	font-size: 18px;
	line-height: 26px;
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
}


/*////////////////////////////////////////////////////////////////////
/////   Questions container
/////////////////////////////////////////////////////////////////////*/
.questions-container {
	padding-top: 72px;
	padding-bottom: 36px;
}

.questions-container h2 {
	margin: 0 0 48px 0;
	text-align: center;
	font-weight: 300;
}

.questions-container .questions-items {
	display: flex;
	flex-wrap: wrap;
}

.questions-container .questions-items .item {
	width: 50%;
	padding-left: 15px;
	padding-right: 50px;
	margin-bottom: 38px;
}

.questions-container .questions-items .item.right {
	width: 50%;
	padding-left: 50px;
	padding-right: 15px;
}

.questions-container .questions-items .title {
	font-size: 18px;
	line-height: 26px;
	display: block;
	font-weight: 700;
	margin-bottom: 7px;
}

.questions-container .questions-items .content ul {
	margin: 0; 
	padding: 8px 0 0 0;
}

.questions-container .questions-items .content ul li{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 0 8px 0;
	color: #64696c;
	display: block;
	position: relative;
	padding-left: 19px;
}

.questions-container .questions-items .content ul li:before {
	content:'';
	width: 4px;
	height: 4px;
	background-color: #9faab2;
	position: absolute;
	top: 10px;
	left: 0;
}

.questions-container .questions-items .content ul li:last-child {
	margin: 0;
}



/*////////////////////////////////////////////////////////////////////
/////   Get Money Today container
/////////////////////////////////////////////////////////////////////*/
.get-money-today-container {
	margin-bottom: 80px;
}

.get-money-today-container .container{
	border-top: 2px solid #616669;
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding-top: 50px;
	padding-bottom: 58px;
	background: url("../img/money-today-bg-img.png") no-repeat;
	background-position: bottom right;
}

.get-money-today-container h2 {
	margin: 0 0 8px 0;
	font-weight: 300;
}

.get-money-today-container .sub-title {
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #64696c;
	margin-bottom: 44px;
}




/*////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
/////  Rates Page
////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////*/


/*////////////////////////////////////////////////////////////////////
/////   Personal Loans Container
/////////////////////////////////////////////////////////////////////*/
.personal-loans-container {
	background: #f8f8f8 url('../img/rates-bg-first.png') no-repeat;
	background-position: bottom right;
	border-top: 1px solid #e1e5e7;
	padding-top: 39px;
	padding-bottom: 40px;
}

.personal-loans-container .container{
	display: flex;
	align-items: center; 
	justify-content: center;
}

.personal-loans-container .loan-title {
	font-size: 24px;
	line-height: 30px;
	display: block;
	margin-right: 80px;
}

/*////////////////////////////////////////////////////////////////////
/////   Main Wrapper Container
/////////////////////////////////////////////////////////////////////*/
.main-wrapper-container {
	padding-top: 40px;
	padding-bottom: 74px;
}

.main-wrapper-container .container{
	display: flex;
	justify-content: space-between;
}

.main-wrapper-container .main-content {
	max-width: 665px;
	width: 100%;
	padding-right: 20px;
	height: 100%;
}

.main-wrapper-container .aside {
	max-width: 350px;
	width: 100%;
}

.aside .how-works-items {
	flex-direction: column;
}

.aside .how-works-items .item {
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 100%;
	border-bottom: 1px solid #e1e5e7;
	padding-bottom: 45px;
	margin-bottom: 50px;
}

.aside .how-works-items .item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.aside .how-works-items .item img {
	margin-right: 0;
	margin-bottom: 23px;
}

.aside .how-works-items .item .content p {
	padding: 0 25px;
}

.main-content h1 {
	font-size: 38px;
	line-height: 1.2;
	margin: 0 0 36px 0;
	font-weight: 300;
}

.main-content h2 {
	font-size: 36px;
	line-height: 1.2;
	margin: 0 0 36px 0;
	font-weight: 300;
}

.main-content h3 {
	font-size: 34px;
	line-height: 1.2;
	margin: 34px 0;
	font-weight: 300;
}

.main-content h4 {
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 32px 0;
	font-weight: 300;
}

.main-content h5 {
	font-size: 30px;
	line-height: 1.2;
	margin: 0 0 30px 0;
	font-weight: 300;
}

.main-content h6 {
	font-size: 28px;
	line-height: 1.2;
	margin: 0 0 28px 0;
	font-weight: 300;
}

.main-content .title {
	display: block;
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	margin-bottom: 8px;
	padding-top: 30px;
}

.main-content ul,
.main-content ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
    line-height: 24px;
    display: block;
    font-weight: 400;
    margin: 0;
    color: #64696c;
}

.main-content span {
	font-size: 16px;
    line-height: 24px;
    display: block;
    font-weight: 400;
    color: #64696c;
    margin-bottom: 8px;
}


.main-content p {
	margin-bottom: 8px;
}

.main-content.how-works p {
	margin-bottom: 18px;
}

.main-content.how-works p:last-child {
	margin-bottom: 0;
}

.main-content p:last-child {
	margin-bottom: 0;
}

.main-content table {
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	color: #64696c;
	font-weight: 400;
	border-bottom: 1px solid #e1e5e7;
	padding-top: 35px;
	margin-bottom: 14px;
}

.main-content table thead {
	text-align: left;
	font-weight: 700;
}

.main-content table td,
.main-content table th {
	padding: 14px 0;
	border-top: 1px solid #e1e5e7;
}



/*////////////////////////////////////////////////////////////////////
/////   Footer
/////////////////////////////////////////////////////////////////////*/
footer {
	background-color: #f8f9fa;
	padding-top: 75px;
	padding-bottom: 73px;
}

footer .container {
	display: flex;
	justify-content: space-between;
}

footer .footer-nav-block {
	max-width: 285px;
	width: 100%;
	margin-right: 30px;
}

footer .nav-wrapper {
	display: flex;
	margin-bottom: 36px;
}

footer .footer-nav {
	margin: 0;
	padding: 0;
	list-style-type: none;
	min-width: 65px;
}

footer .footer-nav:first-child {
	margin-right: 47px;
}

footer .footer-nav a {
	font-size: 14px;
	line-height: 26px;
	display: block;
	font-weight: 700;
	text-decoration: none;
	color: #454545;
	transition: all 0.5s ease;
}

footer .footer-nav a:hover,
footer .footer-nav a.active {
	color: #9faab2;
	transition: all 0.5s ease;
}

footer .copyright {
	display: block;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 24px;
}

footer .copyright a {
	text-decoration: none;
	color: #6aa53d;
}

footer .footer-content {
	max-width: 730px;
	width: 100%;
}

footer .footer-content p {
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 19px;
}

footer .footer-content p:last-child {
	margin-bottom: 0;
}

footer .footer-content p span{
	color: #6aa53d;
}





/*////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
/////  RESPONSIVE
////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////*/
/*For Mobile*/
@media only screen and (max-width: 767px) {
	body.overflow {
		overflow: hidden;
	}

	.btn {
		font-size: 17px;
    	line-height: 22px;
        padding: 14px 24px 16px 24px;
	}

	.btn-block {
		text-align:center;
	}

	.main-container-img {
		position: relative;
		overflow: hidden;
		height: auto;
		/*padding-bottom: 100px;*/
	}

	header .header-nav-wrapper {
		position: fixed;
		top: 0;
		right: 0;
		background-color: #ffffff;
		width: 320px;
		height: 100vh;
		padding: 37px 16px 30px 30px;
		transform: translateX(100%);
		transition: all 0.5s ease;
		z-index: 999;
	}

	header .header-nav-wrapper.show-nav {
		transform: translateX(0);
		transition: all 0.5s ease;
	}

	header .nav li {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}

	header .nav li:last-child {
		margin-bottom: 0;
	}

	header .open-nav {
		display: block;
	}

	/*Main container*/
	.main-container-img .get-cash-block {
		margin: 0 auto;
		max-width: 330px;
	}

	.main-container-img .get-cash-block .title {
		font-size: 26px;
		line-height: 30px;
		margin-bottom: 23px;
	}

	.main-container-img .get-cash-block .price {
		font-size: 40px;
		margin-bottom: 23px;
	}

	.main-container-img .get-cash-block .price-block img {
		width: 61px;
    	height: 54px;
	}


	/*how si works container*/
	.how-works-items {
		flex-direction: column;
		align-items: center;
	}

	.how-works-items .item {
		max-width: 100%;
		flex-direction: column;
		align-items: center;
		text-align:center;
		margin-bottom: 40px;
	}

	.how-works-items .item:last-child {
		margin-bottom: 0;
	}

	.how-works-items .item img {
		margin-right: 0;
		margin-bottom: 20px;
	}

	/*find loand container*/
	.find-loan-container .content ul {
		flex-direction: column;
		margin: 0 0 30px 0;
	}

	.find-loan-container .content p {
		margin-bottom: 30px;
	}

	.find-loan-container .content ul li {
		margin-bottom: 10px;
	}

	.find-loan-container .content ul li:last-child {
		margin-bottom: 0;
	}

	/*why find loan container*/
	.why-find-loan-items {
		flex-direction: column;
	}

	.why-find-loan-items .item {
		flex-direction: column;
		align-items: center;
	}

	.why-find-loan-items .item img {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.why-find-loan-items .item .content {
		text-align: center;
	}

	.why-find-loan-items .items-left .item .content {
		padding-right: 0;
	}

	.why-find-loan-items .items-right, 
	.why-find-loan-items .items-left {
		width: 100%;
	}

	.why-find-loan-items .items-right {
		padding-left: 0;
	}

	.why-find-loan-items .items-left {
		margin-bottom: 38px;
	}


	/*question container*/
	.questions-container .questions-items {
		flex-direction: column;
	}

	.questions-container .questions-items .item {
		width: 100%;
		padding: 0;
	}

	.questions-container .questions-items .item.right {
		padding: 0;
		width: 100%;
	}

	/*get money today container*/
	.get-money-today-container h2 {
		font-size: 26px;
		line-height: 30px;
	}

	/*footer*/
	footer .container {
		flex-direction: column;
		align-items: center;
	}

	footer .footer-nav-block {
		margin-bottom: 30px;
		margin-right: 0;
	}

	footer .footer-logo {
		display: block;
		text-align: center;
	}

	/*RATE PAGE*/
	.main-wrapper-container {
		padding-top: 0px;
		padding-bottom: 50px;
	}
	.main-wrapper-container .container {
		flex-direction: column;
	}

	.main-wrapper-container .main-content {
		padding-right: 0;
		max-width: 100%;
		margin-bottom: 50px;
	}

	.main-wrapper-container .aside {
		margin: 0 auto;
	}

	.personal-loans-container .container{
		flex-direction: column;
		text-align: center;
	}

	.personal-loans-container .loan-title {
		margin-right: 0;
		margin-bottom: 30px;
	}
}
/*For Tablete*/
@media screen and (min-width:768px) and (max-width:991px){
	header .open-nav,
	header .close-nav {
		display: none;
	}
	
	/*why find loan container*/
	.why-find-loan-items {
		flex-direction: column;
	}

	.why-find-loan-items .items-right, 
	.why-find-loan-items .items-left {
		width: 100%;
	}

	.why-find-loan-items .items-right {
		padding-left: 0;
	}

	.why-find-loan-items .items-left {
		margin-bottom: 38px;
	}
}


/*For 992 up*/
@media only screen and (min-width: 992px) {
	header .open-nav,
	header .close-nav {
		display: none;
	}
}





























