/* 
============================================================
CSS Index
============================================================
1. Theme default css
2. Header Area
3. Hero Area
4. Banner Area
5. Icon box Area
6. Simple loan 
7. Step Area 
8. Request funds area 
9. Content Area
10. Footer Area
11. Review page hero area
12. Animation

*/

/* Theme default css */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Jost:ital,wght@0,400;0,500;0,600;1,300;1,400&display=swap');
*{
    padding: 0;
    margin: 0;
}
:root{
    --main-clr: #f44336;
    --secondary-clr: #FBB03B;
}
body {
    font-family: 'Jost', sans-serif;
    font-weight: normal;
    font-style: normal;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}
.container {
    max-width: 1200px;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
}

img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}
button {
    color: #333;
    outline: medium none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    color: rgb(0, 0, 0);
    margin-top: 0px;
    font-style: normal;
    font-weight: 400;
}
h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
}

h3 {
    /*font-size: 32px;*/
    font-weight: 600;
	padding-bottom: 15px;
}

h4 {
    font-size: 22px;
	padding-bottom: 15px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    padding-bottom: 15px;
    font-weight: 300;
}

label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--secondary-clr);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #ffffff;
    font-size: 20px;
    opacity: 1;
}

*::placeholder {
	color: #333;
	font-size: 14px;
	opacity: 1;
}

/* button style */
.btn {
    -moz-user-select: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 18px;
    margin-bottom: 0;
    text-align: center;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    padding: 15px 30px;
    z-index: 244;
    border-radius: 5px;
    background: linear-gradient(90deg,var(--main-clr)  0%,var(--secondary-clr) 100%);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
    box-shadow: 1px 1px 15px 4px #ff57223d;
    /*animation: myAnim 3s ease 3s infinite normal forwards;*/
}
.btn:hover {
    color: #ffffff;
    background: orangered;

}
.btn2 {
    -moz-user-select: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 18px;
    margin-bottom: 0;
    text-align: center;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    padding: 15px 30px;
    z-index: 244;
    border-radius: 5px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
    box-shadow: 1px 1px 15px 4px #f443361f;
    border: 1px solid var(--main-clr);
    color: var(--main-clr);
}
.btn2:hover{
    color: #fff;
    background: linear-gradient(90deg,rgba(94,84,232,1) 0%,rgba(65,176,245,1)100%);
    background: linear-gradient(90deg,var(--secondary-clr) 0%,var(--main-clr) 100%);
    border: 1px solid #fff;
}
/* Header Area */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0px;
	padding-bottom: 30px;
}
.btn-area2 {
    display: flex;
    align-items: center;
}
.burgermenu-area{
    cursor: pointer;
}
.burgermenu-area span {
    background: linear-gradient(90deg,var(--main-clr)  0%,var(--secondary-clr) 100%);
    display: block;
    width: 33px;
    height: 4px;
    margin: 6px 0px 6px 50px;
}

.burgermenu nav {
    position: absolute;
    right: 0px;
    background-color: rgb(255, 255, 255);
    width: 228px;
    top: 0;
    min-height: 100%;
}

.burgermenu {
    position: fixed;
    overflow-y: scroll;
    right: 0;
    top: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 10px 0 15px #4a4a4a;
    height: 100%;
    z-index: 10000000;
    display: none;
    
}
.burgermenu nav ul li {
    padding-left: 10px;
    padding: 20px 10px 20px 25px;
    border-bottom: 1px solid #bfbfbf;
}
.burgermenu nav ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
a.close-menu {
    background-color: #f55137;
    color: #fff;
}
.burgermenu nav ul li a.close-menu {
    color: #fff;
    padding: 12px;
}
span.br-small {
    width: 21px;
}


/* Hero Area */

.hero-area {
    min-height: 550px;
    display: flex;
    align-items: center;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-area-with-iframe {
	min-height: 550px;
	align-items: center;
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
	justify-content: center;
}
.progress-area {
    width: 50%;
    margin: 0px auto;
}

.progress-bar {
    background: #FBB03B;
    height: 10px;
    border-radius: 10px;
    position: relative;
}
.single-bar {
    position: absolute;
    background-color: var(--main-clr);
    height: 10px;
    display: block;
    left: 0;
    right: 0;
    width: 20%;
    border-radius: 10px;

}
.progress-area span {
    font-size: 16px;
    line-height: 36px;
}
span.progress-count {
    color: var(--main-clr);
    font-weight: bold;
}
.form-title-area {
    margin-top: 30px;
    text-align: center;
}
.form-title-area span {
    color: var(--main-clr) ;
}
.form-area {
    width: 50%;
    margin: 0px auto;
    margin-top: 30px;
}
.form-area form input {
    width: 100%;
    height: 40px;
    background-color: var(--main-clr);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    border-image: initial;
    cursor: pointer;
    margin-top: 10px;
    border: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.form-area form input:hover {
    background-color: transparent;
    border: 1px solid var(--main-clr);
    color: #000;



}
.form-area form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    border: none;
}
.form-area span {
    color: #9d9d9d;
    justify-content: center;
    display: flex;
    margin-top: 10px;
    align-items: center;
}
.form-area span img {
   margin-right:10px;
}
/* Banner Area */
.banner-area {
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,var(--main-clr)   0%,var(--secondary-clr) 100%);
    margin-top: 100px;
}

.banner-box-text-area {
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}
.container.banner-grid-area {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    grid-column-gap: 50px;
}

.banner-text-area h1 {
    color: #fff;
}
.banner-box-text-area {
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    background-color: white;
    min-height: 220px;
    border-radius: 36px;
    color: #606060;
    padding: 31px 22px 41px 22px;
    text-align: center;
    /*animation: myAnima 6s ease 4s infinite normal forwards;*/

}
.banner-box-text-area span{
    color: var(--main-clr);
}
.banner-text-area {
    margin-top: 64px;
}
/* Icon box Area */
.icon-box-area {
    min-height: 400px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}
.icon-box-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
}
.single-items img {
    margin-bottom: 20px;
    /*animation: myAnim 3s ease 3s infinite normal forwards;*/

}
.single-items h2 {
    margin-bottom: 10px;
    color: var(--main-clr);
}
.single-items h2 a {
	color: var(--main-clr);
	text-decoration: none;
}
.single-items {
    text-align: center;
    padding: 20px 13px;
    box-shadow:rgb(0 0 0 / 4%) 0px 20px 14px 0px;
    position: relative;
    /*transform: translateY(0px);*/
    /*transform-origin: bottom;*/
    /*-webkit-transition: all 0.3s ease-out 0s;*/
    /*-moz-transition: all 0.3s ease-out 0s;*/
    /*-ms-transition: all 0.3s ease-out 0s;*/
    /*-o-transition: all 0.3s ease-out 0s;*/
    /*transition: all 0.3s ease-out 0s;*/
    /*border-radius: 5px;*/
}
.single-items:hover {
    border-bottom: 2px solid var(--main-clr);
    /*transform: translateY(10px);*/
}
/*.single-items.active {*/
/*    border-bottom: 2px solid var(--main-clr);*/
/*    transform: translateY(10px);*/
/*}*/

/* Simple loan */
.simple-loan-area{
    min-height: 400px;
}
.simple-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}
.simple-text-area ul li {
    font-size: 16px;
    font-weight: 600;
    margin-top: 27px;
    display: flex;
    align-items: flex-start;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}
.simple-text-area ul li img{
    margin-right: 10px;
    /*animation: myAnim 3s ease 3s infinite normal forwards;*/

}
.simple-text-area {
    display: flex;
    align-items: center;
}
.simple-text-area ul li:hover {
    color: var(--main-clr);
  
}

/* Step Area */
.steps-area{
    margin-top: 100px;
    min-height: 400px;
}
.steps-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}
.steps-text-area{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.single-steps .step-br {
    padding: 2px 13px;
    border: 1px solid var(--main-clr);
    border-radius: 100px;
    color: var(--main-clr);
    font-weight: 600;
    font-size: 13px;
}
.step-br{
    /*animation: myAnim 3s ease 3s infinite normal forwards;*/

}

.single-steps h2 {
    margin-top: 16px;
    margin-bottom: 10px;
}
.single-steps {
    margin-bottom: 25px;
    padding-right: 15px;
    box-shadow:rgb(0 0 0 / 4%) 0px 20px 14px 0px;
    padding-left: 20px;
    border-radius: 5px;
    /*transform: translateY(0px);*/
    /*transform-origin: bottom;*/
    /*-webkit-transition: all 0.3s ease-out 0s;*/
    /*-moz-transition: all 0.3s ease-out 0s;*/
    /*-ms-transition: all 0.3s ease-out 0s;*/
    /*-o-transition: all 0.3s ease-out 0s;*/
    /*transition: all 0.3s ease-out 0s;*/
}
.single-steps:hover {
    border-bottom: 2px solid var(--main-clr);
    /*transform: translateY(10px);*/
}
/*.single-steps.active{*/
/*    border-bottom: 2px solid var(--main-clr);*/
/*    !*transform: translateY(10px);*!*/
/*}*/

.step-img {
    display: flex;
    align-items: center;
    justify-content: end;
}
.clr-text {
    color: var(--main-clr);
    margin-right: 10px;
}
/* Request funds area */
.request-funds-area {
    margin-top: 100px;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,var(--main-clr)   0%,var(--secondary-clr) 100%);

}
.request-funds-grid {
    display: flex;
    align-items: center;
}
.request-funds-text p {
    margin-right: 150px;
    margin-top: 15px;
    color: #f4f4f4;
}
.request-funds-text h1 {
    color: #fff;
}
/* Content Area */
.content-area-one h1 {
    margin: 15px 0px;
}
.content-area-one p {
    text-align: justify;
}
.content-area-one {
    border-bottom: 2px solid var(--main-clr);
    margin-bottom: 50px;
    padding: 30px;
    box-shadow:rgb(0 0 0 / 4%) 0px 20px 14px 0px;
}
.content-area-one h1 {
    display: flex;
    align-items: center;
}
.content-area-one h1 img{
    margin-right: 10px;
    /*animation: myAnim 3s ease 3s infinite normal forwards;*/

}

.table-area table {
    width: 100%;
    text-align: left;
    margin-top: 25px;
}
.table-area table tbody tr td {
    padding-top: 14px;
}

.content-area-one li {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 300;
    list-style: decimal;
}
.content-area-one li::marker {
    color: black;
    font-weight: 800;
}

/* Footer Area */
footer{
    margin-top: 75px;
    /*background: linear-gradient(90deg,var(--main-clr)   0%,var(--secondary-clr) 100%);*/

}
.footer-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}
.footer-area p {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 13px;
    color: #ededed;
}

/* Review page hero area */
.request-funds-margin {
    margin-top: 0px;
    border-radius: 0px 0px 130px 130px;
}

/* Animation  */
/*@keyframes myAnim {*/
/*	0% {*/
/*		animation-timing-function: ease-out;*/
/*		transform: scale(1);*/
/*		transform-origin: center center;*/
/*	}*/

/*	10% {*/
/*		animation-timing-function: ease-in;*/
/*		transform: scale(0.91);*/
/*	}*/

/*	17% {*/
/*		animation-timing-function: ease-out;*/
/*		transform: scale(0.98);*/
/*	}*/

/*	33% {*/
/*		animation-timing-function: ease-in;*/
/*		transform: scale(0.87);*/
/*	}*/

/*	45% {*/
/*		animation-timing-function: ease-out;*/
/*		transform: scale(1);*/
/*	}*/
/*}*/
/*@keyframes myAnima {*/
/*	0% {*/
/*		animation-timing-function: ease-in;*/
/*		opacity: 1;*/
/*		transform: translateY(-45px);*/
/*	}*/

/*	24% {*/
/*		opacity: 1;*/
/*	}*/

/*	40% {*/
/*		animation-timing-function: ease-in;*/
/*		transform: translateY(-24px);*/
/*	}*/

/*	65% {*/
/*		animation-timing-function: ease-in;*/
/*		transform: translateY(-12px);*/
/*	}*/

/*	82% {*/
/*		animation-timing-function: ease-in;*/
/*		transform: translateY(-6px);*/
/*	}*/

/*	93% {*/
/*		animation-timing-function: ease-in;*/
/*		transform: translateY(-4px);*/
/*	}*/

/*	25%,*/
/*	55%,*/
/*	75%,*/
/*	87% {*/
/*		animation-timing-function: ease-out;*/
/*		transform: translateY(0px);*/
/*	}*/

/*	100% {*/
/*		animation-timing-function: ease-out;*/
/*		opacity: 1;*/
/*		transform: translateY(0px);*/
/*	}*/
/*}*/

.logo-img {
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 20px;
}
.logo-text {
	/*font-weight: 300;*/
	letter-spacing: 0.5px;
	text-overflow: ellipsis;
}
.logo-text strong {
	/*font-weight: 700;*/
	margin-right: 3px;
}
.logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	font-size: 18px;
	line-height: 24px;
}
.logo.nolink {
	text-decoration:none;
	color:#f44336;
	font-size: 25px;
}

.footer-container-links {
	background: linear-gradient(90deg,var(--main-clr)   0%,var(--secondary-clr) 100%);
	margin-bottom: 50px;
	/*width: 100%*/
	margin-left: 0;
	margin-right: 0;
	width:100%;
	max-width: unset;
}

.footer-links {
	box-align: stretch;
	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	-o-align-items: stretch;
	align-items: stretch;
	-ms-flex-align: stretch;
	display: inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	-ms-flex-direction: row;
	box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: justify;
	margin-top: 25px;
	margin-bottom: 25px;
	justify-content: center;
	width: 100%
}
.list-left a, .list-right a{
	display:block;
	color:#00b2d2;
	padding:0 0 0 25px;
	/*background:url(../img/arrow-checkmark.png) 0 50% no-repeat;*/
	letter-spacing: 0.1px;
	color:#000000;
}
.list-left{
	 float:left;
}
.list-right{
	float:right;
}

thead {
	white-space: nowrap;
}

.no-background {
	background: none;
}

.copyright-text span {
	color: #6d6d6d;
}

/*aside {*/
/*	display: none;*/
/*}*/

.main-title {
	margin-top: 30px;
	text-align: center;
}
.main-title h1 span {
	font-size: larger;
}

.main-btn-section {
	padding-top: 25px;
}

.footer-area-contact {
	display: flex;
	flex-direction: column;
	align-items: start;
	padding-bottom: 35px;
}

.request-funds-banner {
	padding-right: 50px;
	max-width: 45%
}
