body {
	margin: 0;
	padding: 0;
	font-family: "Trebuchet Ms", sans-serif;
	overflow-x: hidden;
}

ul {
	list-style: none;
}

.navigationss {
	display: grid;
	grid-template-columns: 30% 70%;
	background: #fff;
	padding: 2px 120px;
	border-bottom: 1px solid #e5e5e5;
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-sizing: border-box;
}

.navbars nav a i {
	display: none;
}

.navbars {
	display: grid;
	justify-content: end;
	align-self: center;
	/*padding: 20px 0px;*/
}

.logos img {
      max-height: 70px;
}

.navbars nav ul {
	margin: 0;
}

.navbars nav ul li {
	display: inline-block;
}

.navbars nav ul li a {
	color: #D3562A;
	margin: 0px 16px;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 800;
}

.navbars nav ul li a:hover {
	opacity: 0.7;
}

.loan-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 40px 180px;
	background: #D3562A;
	margin-top: 70px;
}

.each-loan-header {
	background: #fff;
	padding: 0px 20px;
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
}

.each-loan-header a {
	color: #D3562A;
	text-decoration: none;
	background: #fff;
	/*border: 1px solid #D3562A;*/
	padding: 10px 20px;
	border-radius: 5px;
	text-align: center;
}

.main-know-how {
	background: #fff;
	padding: 20px 50px;
}

.main-know-how h3 {
	text-align: center;
}

.each-know-how {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 0px 150px;
}

.each-know {
	background: #fff;
	padding: 20px;
	margin: 20px 50px;
	border: 1px solid #ccc;
	border-radius: 10px;
	text-align: center;
}

.each-know:hover {
	-webkit-box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
	box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
}

.change {
	-webkit-box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
	box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
}

.change:hover {
	box-shadow: none;
}

.each-know i {
	background: #D3562A;
	padding: 20px;
	color: #fff;
	font-size: 30px;
	border-radius: 50%;
	-webkit-box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
	box-shadow: -2px 4px 15px -3px rgba(0,0,0,0.75);
}

.footer {
	background: #D3562A !important;
	color: #fff;
}

.footer a {
	color: #fff !important;
}


/*APPLICATION*/
.application {
	background: #fff;
	height: 100vh;
}

.loan-application {
	padding: 10px 150px 50px 270px;
	display: grid;
	grid-template-columns: 40% 5% 55%;
	margin: 0px auto;
	grid-column-gap: 8px;
	margin-top: 90px;
}

.left-app {
	height: 100%;
	position: relative;
}

.left-app h4 {
	width: 120px;
	padding: 7px;
	border-radius: 5%;
	border-bottom: 1px solid #D3562A;
	position: fixed;
	left: 230px;
	margin: 0;
}

.break-line {
	width: 1px;
	background: #ccc;
	height: 500px;
}

.right-app h4 {
	margin: 0;
}

/*Calculator ===*/
.loan-calculator {
    margin: 40px 20px;
    border: 1px solid #ccc;
    padding: 20px 10px;
    background: #e5e5e5;
    border-radius: 10px;
    background: #fff;
    width: 25%;
    position: fixed;
    left: 220px;
    z-index: 20;
}

.loan-calculator-header {
    display: flex;
    background: #D3562A;
    padding: 5px 20px;
    /*border-top-right-radius: 20px;*/
    border-top-left-radius: 20px;
    border: 1px solid #fff;
}

.loan-calculator-header .monies {
    font-size: 40px;
    color: #fff;
}


.loan-span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    align-self: center;
    margin-left: 20px;
}

.durationenquiry, .loanenquiry {
    font-style: italic;
    font-weight: 600;
}

.main-calculator {
    padding: 30px 10px;
    border: 1px solid #fff;
    margin: 20px 0px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0px 3px 24px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 24px 0px rgba(0,0,0,0.75);
box-shadow: 0px 3px 24px 0px rgba(0,0,0,0.75);
}

.main-calculator input, .main-calculator label, .main-calculator button {
    display: block;
}

#result {
    color: #000;
    font-size: 14px;
    padding: 5px 40px;
    background: #fff;
    border-radius: 4px;
    font-weight: 600;
    display: none;
}

.main-calculator input {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 4px;
    background: transparent;
    border: 2px solid #D3562A;
    color: #000;
    margin-top: 10px;
}

.main-calculator input::placeholder {
    color: #333;
}

.inner-how-much {
    position: relative;
}

.white {
    color: #333;
    font-size: 11px;
    font-weight: 600;
}

.white2 {
    position: absolute;
    top: 40px;
    right: 43px;
}

.white1 {
    position: absolute;
    top: 21px;
    right: 40px;
}

.main-calculator label {
    color: #333;
}

.main-calculator input, .white {
    display: inline-block;
}

.how-month {
    margin-top: 10px;
}

.main-calculator button {
    margin: 20px auto;
    border: none;
    padding: 10px 25px;
    width: 90%;
    background: #D3562A;
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: all 1s;
    outline: none;
}

.main-calculator button:hover {
    background: #ccc;
    color: #000;
    transition: all 1s;
}

/*LOAN FORM ====*/
.form-wrapper {
	margin: 15px 0px;
}

.right-app label, .right-app input {
	display: block;
}

.right-app input {
	width: 90%;
	padding: 10px 20px;
	border-radius: 5px;
	outline: none;
	border: 1px solid #ccc;
}

.right-app input:focus {
	border: 1px solid #D3562A;
	transition: all 1s;
}

.lots {
	transition-delay: 2s;
	transition: all 4s;
}

	#form2, #form3 {
		display: none;
	}

	.small-span {
		font-size: 10px;
	}

.nexts {
	display: flex;
	justify-content: flex-end;

}

.nexts a {
	text-decoration: none;
	padding: 10px 20px;
	border: 1px solid #D3562A;
	color: #D3562A;
	border-radius: 5px;
	transition: all 1s;
	margin: 0px 14px;
}

.back-steps {
	background: #D3562A;
	color: #fff !important;
}

.back-steps:hover {
	background: transparent;
	color: #000 !important;
}

.nexts a:hover {
	border: 1px solid #000;
	color: #000;
	transition: all 1s;
}

/*PAGES RESPONSIVE*/

@media screen and (max-width: 650px) {

	.left-app h4 {
	width: 80%;
	padding: 15px 50px;
	border-radius: 5%;
	border-bottom: 1px solid #D3562A;
	background: #D3562A;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

	.logos img {
      max-height: 50px;
}

.navigationss {
	display: grid;
	grid-template-columns: 30% 70%;
	background: #fff;
	padding: 2px 60px ;
}

	.navbars nav a {
		text-decoration: none;
		color: #D3562A;
	}

	.navbars nav a i {
		display: block;
		font-size: 30px;
	}

	.navbars nav ul {
		background: #D3562A;
		position: absolute;
		top: 60px;
		padding-right: 20px;
		right: 0;
		border-top: 1px solid #000;
	}

	.navbars nav ul li {
		display: block;
		margin: 30px auto;
		display: grid;
		justify-content: center;
	}

	.navbars nav ul li a {
		color: #fff;
		font-size: 15px;
		padding: 10px 25px;
	}

	.navbars nav ul li a:hover {
		background: transparent;
		color: #fff;
		border-radius: 7px;
		border: 1px solid #fff;
		opacity: 1;
	}

	.navbars #myDIV {
		display: none;
	}


	.loan-application {
	padding: 50px 0px 50px 0px;
	grid-template-columns: 100%;
}


	.right-app {
		padding-left: 20px;
		margin-top: 20px;
	}

	.left-app h4 {
	position: static;
	margin: 0px 20px;
}

	.break-line {
	display: none;
}

	.loan-calculator {
 	position: static;
    width: 80%;
    margin: 10px auto;
}
}

@media screen and (min-width: 651px) and (max-width: 850px) {
	.navigationss {
		padding: 2px 20px !important;
	}

}

@media screen and (min-width: 1101px) and (max-width: 1250px) {
	.loan-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 20px 20px;
	background: #D3562A;
	margin-top: 80px;
	justify-content: center;
}
}

@media screen and (min-width: 861px) and (max-width: 1100px) {
	.loan-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 20px 20px;
	background: #D3562A;
	margin-top: 80px;
	justify-content: center;
}

.each-loan-header {
	background: transparent;
	padding: 0px 0px;
	border: none;
	border-radius: 0px;
	align-self: center;
	display: grid;
	justify-content: center;
}

.each-loan-header a {
	padding: 6px 15px;
}
}

@media screen and (min-width: 651px) and (max-width: 860px) {
	.loan-header {
		margin-top: 70px !important;
	}
}

@media screen and (max-width: 630px) {
	.loan-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 20px 2px;
	background: #D3562A;
	margin-top: 60px;
	justify-content: center;
}

.each-loan-header {
	background: transparent;
	padding: 0px 0px;
	border: none;
	border-radius: 0px;
	align-self: center;
	display: grid;
	justify-content: center;
}

.each-loan-header a {
	font-size: 11px;
	padding: 4px 10px;
}
}

@media screen and (max-width: 435px) {
	.loan-header {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	padding: 20px 2px;
	background: #D3562A;
	margin-top: 60px;
	justify-content: center;
}

	.each-loan-header a {
	font-size: 15px;
	padding: 10px 25px;
	margin: 10px 0px;
}
}

@media screen and (min-width: 631px) and (max-width: 860px) {
	.loan-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 20px 20px;
	background: #D3562A;
	margin-top: 60px;
	justify-content: center;
}

.each-loan-header {
	background: transparent;
	padding: 0px 0px;
	border: none;
	border-radius: 0px;
	align-self: center;
	display: grid;
	justify-content: center;
}

.each-loan-header a {
	font-size: 13px;
	padding: 6px 15px;
}
}

@media screen and (max-width: 940px) {

.main-know-how {
	background: #fff;
	padding: 20px 10px;
}

.main-know-how h3 {
	text-align: center;
}

.each-know-how {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 0px 10px;
}

.each-know {
	background: #fff;
	padding: 20px;
	margin: 20px 10px;
	border: 1px solid #ccc;
	border-radius: 10px;
	text-align: center;
}

}

@media screen and (max-width: 500px) {
	.each-know-how {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	padding: 0px 10px;
}
	.nexts {
	justify-content: flex-start;

}

.right-app input {
		width: 80%;
	}
}


@media screen and (min-width: 651px) and (max-width: 1270px) {

.each-know-how {
	padding: 0px 10px;
}

}

@media screen and (max-width: 650px) {
	.loan-application {
	margin-top: 80px !important;
}
}

@media screen and (min-width: 651px) and (max-width: 861px) {
	.loan-application {
	margin-top: 80px !important;
	padding: 10px 50px 50px 270px !important;
}
}

@media screen and (min-width: 651px) and (max-width: 780px) {
	.loan-calculator {
    margin: 40px 20px;
    width: 40%;
    left: 20px !important;
}

	.loan-application {
	padding: 50px 50px 50px 270px;
	grid-template-columns: 30% 5% 65%;
}
}

@media screen and (max-width: 860px) {

	.loan-application {
		margin-top: 0px;
		padding-top: 0px;
	}
	

}

@media screen and (min-width: 781px) and (max-width: 875px) {
	.loan-calculator {
    margin: 40px 20px;
    width: 45%;
    left: 20px !important;
}
}

@media screen and (max-width: 300px) {
	.navigationss {
	padding: 2px 20px;
}
}
@media screen and (min-width: 876px) and (max-width: 1150px) {
	.loan-calculator {
    margin: 40px 20px;
    width: 35%;
    left: 20px !important;
}
}