* { box-sizing: border-box; margin: 0; padding: 0; }

html,body { font-size: 15px; font-family: "Poppins", sans-serif; background: #fff; color: #161616; }

a { text-decoration: none; color: unset; }
ul { list-style: none; }
img { vertical-align: middle; }

p { font-size: ; }

h1,h2,h3,h4,h5,h6 { color: #000; line-height: 1.4; font-family: "Belleza", sans-serif; }
section { overflow: hidden; }
 
.container { max-width: 1140px; margin: auto; }
.widget_section { display: block; padding: 60px 16px; position: relative; }

button { border: 0; outline: 0; font-weight: 500; font-family: unset; }


:root {
	--flight : brightness(0) invert(1);
	--fred : invert(12%) sepia(100%) saturate(5549%) hue-rotate(352deg) brightness(98%) contrast(88%);

	--c1 : #01641d;
	--c2 : #002c60;
	--c3 : #e8edf4;
	--c4 : #cee0ff;

	--bs  : 0px 0px 35px 0px #00000026;
	--bs1 : 0px 0px 30px 0px #0000001a;
	--bs2 : 0 3.4px 2.7px -30px #0000000f, 0 8.2px 8.9px -30px #00000012, 0 25px 40px -30px #00000033;
	--bs3 : 0px 0px 16px 0px #00000026;
	--bs4 : 0px 0px 20px #0000001a;
	--ts  : all 0.5s ease-in-out;
	--fa  : "Font Awesome 6 Pro";
	--ff : "Antonio", sans-serif;
	--ff2 : "Montserrat", Sans-serif;

	--bgG1 : linear-gradient(to right, #09A7A7, #00B45A);

	--cg : linear-gradient(to right, #118c4f, #41a004);
	--cgh : linear-gradient(to right, #41a004, #118c4f);
}





/* ========== ========== ===== Header Section ===== ========== ========== */

/* ---------- Top Bar ---------- */
.topbar { width: 100%; display: block; position: relative; border-bottom: 1px solid #f2f2f2; background: var(--c1); color: #fff; }
.topbar_row { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.topbar_row a i { display: block; width: 36px; height: 36px; line-height: 36px; text-align: center; transition: var(--ts); }

.topbar_info { display: flex; align-items: center; gap: 16px; }
.topbar_info a { display: flex; align-items: center; }
.topbar_info a i {  }

.topbar_social { display: flex; justify-content: space-around; padding: 6px 0; }
.topbar_social a:hover i { background: var(--c4); }
.topbar_social a+a { border-left: 1px solid #ffffff80; }

@media all and (max-width:480px) {
	.topbar:before { width: 60%; }
	.topbar_info a p { display: none; }
}



/* ---------- NAV BAR ---------- */
.PL { color: var(--c1)!important; }
.nav_btn { margin-left: 24px; }

.header { display: block; width: 100%; position: sticky; top: 0; background: #fff; box-shadow: var(--bs); z-index: 999; }
.nav-container { display: flex; justify-content: space-between; align-items: center;
	padding: 9px 16px; max-width: 1140px; margin: auto; position: relative; }

.logo { width: 300px; }
.logo img { width: 100%; height: auto; }

.navbar { display: block; }
.nav_area { display: flex; align-items: center; font-size: 14px; }

.nav_links { display: flex; }
.nav_links li { position: relative; }
.nav_links li a,
.nav_links li label { display: block; padding: 8px 12px; transition: var(--ts); font-weight: 600; }

.sub_link input { display: none; }
.sub_link:hover .sub_menu { display: block; }

/**/
.dropdown { opacity: 0; visibility: hidden; width: 280px; position: absolute; top: 100%; left: 0; right: 0;
	background: #fff; color: #000; box-shadow: 0 0 10px #00000033; border-top: 3px solid var(--c1); transform: translateY(10px); transition: all 0.5s ease; z-index: 9; }
.sub_link:hover > ul { opacity: 1; visibility: visible; transform: translateY(0px); }
.sub_link .dropdown li a { display: block; padding: 12px 16px; font-weight: 500; font-size: 13px; }
.dropdown li a:hover { background: #dbe8ff; }

.btn_OC { display: none; }
.btn_OC button { display: block; width: 40px; height: 40px; line-height: 40px;
	text-align: center; font-size: 26px; border: 0; outline: 0; background: var(--c1); color: #fff; }

@media all and (max-width:480px) {
	.btn_OC { display: flex; justify-content: flex-end; }

	.logo { width: 260px; }

	.navbar { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: #00000080; transition: var(--ts); }
	.nav_area { display: block; width: 80%; height: 100%; background: #fff; overflow-x: auto; }
	.nav_links { display: block; }
	.nav_links li a, .nav_links li label { padding: 12px 16px; }
	.nav_links li+li { border-top: 1px solid #3333331a;}

	.nav_area .btn_OC { padding: 16px; }

	.dropdown { width: 100%; transform: translateY(0px); border-top: 0; box-shadow: 0 0 10px #fff0; }
	.sub_link:hover > ul { opacity: 0; visibility: hidden; transform: translateY(0px); }

	.toggle:checked ~ .dropdown { opacity: 1; visibility: visible; position: relative; }

}

.btn__nav_s { display: flex; gap: 16px; }
.btn__nav_s button { display: inline-block; padding: 8px 20px; font-size: 14px; border-radius: 6px; transition: 0.3s; background: #fff; color: var(--c1); border: 1px solid var(--c1); margin-left: 9px; }
.btn__nav_s button:hover { background: var(--c1); color: #fff; } 
.btn__nav { display: inline-block; padding: 4px 10px; font-size: 24px; background: var(--c1); color: #fff; border-radius: 6px; }

@media all and (max-width:480px) {
	.btn__nav_s { display: none; }
}




/* ---------- POPUP MODEL ---------- */
.modal { display: none; position: fixed; z-index: 9999; padding-top: 100px; left: 0; top: 0;
  width: 100%; height: 100%; overflow: auto; background: #00000080; }

.modal-content { background: #fefefe; margin: auto; border: 1px solid #888; width: 340px; border-radius: 12px; overflow: hidden;  }

.modal-head { display: flex; justify-content: space-between; align-items: flex-start; text-align: center; padding: 16px; background: var(--c1); color: #fff; }
.modal-head h3 { font-size: 22px; color: #fff; }
.modal-head .close { color: #fff; font-size: 28px; font-weight: 500; }
.modal-body { display: block; width: 100%; padding: 16px; }

/* ----- FORM ----- */
.form__ { display: block; width: 100%; }
.form__ form { display: flex; flex-direction: column; gap: 9px; width: 100%; }
.form__ input,
.form__ select,
.form__ textarea { display: block; width: 100%; padding: 14px; border-radius: 6px; border: 1px solid #ddd; font-family: var(--ff1); outline-color: var(--c1); }
.form__ textarea { border-radius: 12px; }
.form__ button { display: block; width: 100%; padding: 12px; background: var(--c1); color: #fff; border-radius: 50px; transition: var(--ts); }


/* Fixed Button */
.social-area { display: block; position: fixed; top: 50%; right: 0; z-index: 99; }

.icon-open-button { background: var(--c1); color: #fff; width: 60px; height: 60px; line-height: 60px; box-shadow: var(--bs-b);
  position: absolute; top: 40%; right: 16px; border-radius: 100%; margin-left: -40px; text-align: center; transform: translate3d(0, 0, 0); transition: transform ease-out 200ms; }

.social-icon { width: 60px; position: absolute; top: 40%; right: 16px; margin-left: -40px; transform: translate3d(0, 0, 0); transition: transform ease-out 200ms; }
.social-icon img { width: 100%; height: auto; }

.icon-open { display: none; }

.hamburger { display: block; width: 25px; height: 3px; background: #fff; position: absolute; top: 50%; left: 50%; margin: -1.5px 0 0 -12.5px; transition: transform 200ms; }
.hamburger-1 { transform: translate3d(0, -8px, 0); }
.hamburger-2 { transform: translate3d(0, 0, 0);    }
.hamburger-3 { transform: translate3d(0, 8px, 0);  }

.icon-open:checked + .icon-open-button .hamburger-1 { transform: translate3d(0, 0, 0) rotate(45deg);  }
.icon-open:checked + .icon-open-button .hamburger-2 { transform: translate3d(0, 0, 0) scale(0.1, 1);  }
.icon-open:checked + .icon-open-button .hamburger-3 { transform: translate3d(0, 0, 0) rotate(-45deg); }

.menu { position: absolute; left: 50%; margin-left: -190px; padding: 20px 0 0 190px; width: 380px; height: 250px; font-size: 20px; text-align: left; box-sizing: border-box; }

.social-icon:nth-child(3) { transition-duration: 70ms;  }
.social-icon:nth-child(4) { transition-duration: 130ms; }
.social-icon:nth-child(5) { transition-duration: 190ms; }
.social-icon:nth-child(6) { transition-duration: 250ms; }
.social-icon:nth-child(7) { transition-duration: 310ms; }

.icon-open-button { transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); transition-duration: 400ms; transform: scale(1.1, 1.1) translate3d(0, 0, 0); z-index: 2; cursor: pointer; }
.icon-open-button:hover { transform: scale(1.2, 1.2) translate3d(0, 0, 0); }

.icon-open:checked + .icon-open-button { transition-timing-function: linear; transition-duration: 200ms; transform: scale(0.8, 0.8) translate3d(0, 0, 0); }
.icon-open:checked ~ .social-icon { transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33); }
.icon-open:checked ~ .social-icon:nth-child(3) { transition-duration: 160ms; transform: translate3d(-0.09158px, -114.99996px, 0); }
.icon-open:checked ~ .social-icon:nth-child(4) { transition-duration: 240ms; transform: translate3d(-77.04956px, -76.37192px, 0); }
.icon-open:checked ~ .social-icon:nth-child(5) { transition-duration: 320ms; transform: translate3d(0.09158px, 114.99996px, 0);   }
.icon-open:checked ~ .social-icon:nth-child(6) { transition-duration: 400ms; transform: translate3d(-77.04956px, 76.37192px, 0);  }
.icon-open:checked ~ .social-icon:nth-child(7) { transition-duration: 480ms; transform: translate3d(-114.40705px, 0.33693px, 0);  }

@media all and (max-width: 480px) {
	.icon-open-button { width: 50px; height: 50px; line-height: 50px }
	.social-icon { width: 50px; }
}



/* ========== ===== Poster Ads ===== ========== */
.webpopup { width: 100%; height: 100vh;  position: fixed; top: 0;
	display: none; justify-content: space-around; align-items: center; background: #000000ad; padding: 16px; z-index: 9999; }
.ad_display { max-width: 850px; width: 100%; display: block; border-radius: 12px 12px 12px 12px; background: #fff; overflow: hidden; box-shadow: var(--bs); }
.card { display: grid; grid-template-columns: 60% 40%; }
.card_col { width: 100%; display: block; }
.card_col img { width: 100%; height: auto; }

.enq_title { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--c1); }
.enq_title h3 { color: #fff; font-size: 24px; }
.enq_title button { width: 32px; height: 32px; background: #fff; color: var(--c1); font-size: 18px; border-radius: 50px;  box-shadow: 0px 0px 30px 0px #0000001a; }
.enq_form { padding: 16px; }

@media all and (max-width: 480px) {
	.webpopup { align-items: flex-start; overflow-y: auto; }
	.card { grid-template-columns: repeat(1, 1fr); grid-gap: 16px; }
}




/* ---------- ----- Title ----- ---------- */
.section_title { display: block; text-align: center; margin: auto auto 40px auto; }
.section_title h2 { display: inline-block; font-size: 38px; font-weight: 700; position: relative; text-transform: capitalize; }
.section_title h2 span { color: var(--c1); }
.section_title .style { display: block; }
.section_title .style span { display: inline-block; width: 60px; height: 3px; background: #333; }
.section_title .style span:last-child { background: var(--c1); }

@media all and (max-width: 480px) {
	.section_title h2 { font-size: 28px; }
	.section_title h4 { font-size: 16px; }
}


/* ========== ========== ========== ========== ========== ========== ========== ========== ========== ========== ==========
												 INDEX PAGE CSS
========== ========== ========== ========== ========== ========== ========== ========== ========== ========== ========== */


/*---------- ----- Banner ----- ---------- */
.banner_section { display: block; position: relative; background: var(--c1); z-index: 1; }
.banner_section:before { content: ""; position: absolute; top: 0; left: 0;
	display: block; width: 100%; height: 100%; background: url("assets/images/banner_inner.png")no-repeat center / cover; z-index: -1;  }

.banner_carousel { display: block; width: 100%; position: relative; overflow: hidden;  }
.banner_carousel .banner { width: 100%; display: inline-block; overflow: hidden; }

.banner_row { max-width: 1140px; margin: auto; padding: 60px 16px; display: flex; justify-content: space-between; align-items: center; grid-gap: 52px; }
.banner_col { width: 100%; display: block; }

.banner_text { display: block; }
.banner_text span { display: inline-block; background: var(--c1); color: #fff; padding: 4px 16px; font-size: 12px; border-radius: 50px; margin-bottom: 8px; }
.banner_text h1 { font-size: 32px; color: var(--c1); }
.banner_text h2 { font-size: 18px; font-weight: 500; margin-top: 6px; }
.banner_text p { font-size: 16px; margin-top: 12px; text-align: justify; }
.banner_text ul { display: block; margin-top: 12px; }
.banner_text ul li+li { margin-top: 8px; }
.banner_text ul li i { color: var(--c1); margin-right: 6px; }
.banner_text ul li:before { content: "✅"; font-size: 12px; margin-right: 6px; }

.banner_btns { display: flex; gap: 8px; margin-top: 32px; }
.banner_btns button { display: inline-block; padding: 9px 28px;
	font-size: 15px; transition: var(--ts); border-radius: 8px; box-shadow: var(--bs3); border: 1px solid var(--c1); }
.banner_btns button i { font-size: 16px; margin-left: 6px; }
.banner_btns button:nth-child(1) { background: var(--c1); color: #fff; }
.banner_btns button:nth-child(2) { background: #fff; color: var(--c1); }
.banner_btns button:nth-child(1):hover { background: #fff; color: var(--c1); }
.banner_btns button:nth-child(2):hover { background: var(--c1); color: #fff; }

.banner_image { display: block; width: 100%; border-radius: 12px; overflow: hidden; }
.banner_image img { width: 100%; height: auto; vertical-align: middle; }

@media all and (max-width: 480px) {
	.banner_row { flex-direction: column; padding: 40px 16px; }
	.banner_col h1 { font-size: 24px; }
	.banner_col p { font-size: 14px; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.banner_row { flex-direction: column; }
	.banner-col h1 { font-size: 24px; margin-bottom: 20px; }
}



/* ---------- ----- SERVICES ----- ---------- */
.service_row { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 24px; }
.service_col { display: block; width: 100%; border-radius: 12px; background: #fff; overflow: hidden; box-shadow: var(--bs);  }
.service_image { display: block; width: 100%; }
.service_image img { width: 100%; }

.service_info { display: block; width: 100%; padding: 24px 16px 16px 16px; position: relative; }
.service_info span { display: inline-block; padding: 6px 16px; background: var(--c1); color: #fff; border-radius: 50px; position: absolute; top: -18px; left: 16px; }
.service_info h3 { font-size: 22px; }
.service_info p { text-align: justify; margin-top: 9px; }

.service_Btns { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 0px 16px 16px 16px; }
.service_Btns a { display: inline-block; padding: 8px 24px; border: 1px solid var(--c1); border-radius: 50px; transition: var(--ts); }
.service_Btns a:nth-child(1) { background: #fff; color: var(--c1); }
.service_Btns a:nth-child(2) { background: var(--c1); color: #fff; }
.service_Btns a:hover:nth-child(1) { background: var(--c1); color: #fff; }
.service_Btns a:hover:nth-child(2) { background: #fff; color: var(--c1); }

@media all and (max-width: 480px) {
	.service_row { grid-template-columns: repeat(1, 1fr); }
}

@media (min-width: 500px) and (max-width: 992px) {
	.service_row { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- ----- SERVICES ----- ---------- */
.service_slider { width: 100%; display: block; height: 100%; }
.service_slide { width: 31.68%; display: inline-block; overflow: hidden; margin-right: 29px; }

.service__ { display: block; width: 100%; background: #f9f9f9; color: #fff; padding: 30px; position: relative; border-radius: 16px; z-index: 1; overflow: hidden; }
.service__:before { content: ""; display: block; width: 100%; height: 100%; background: #000000c9; position: absolute; top: 0; left: 0; z-index: -1; }
.service_bg01 { background: url("assets/images/loan-01.webp")no-repeat center / cover; }
.service_bg02 { background: url("assets/images/loan-02.webp")no-repeat center / cover; }
.service_bg03 { background: url("assets/images/loan-03.webp")no-repeat center / cover; }
.service_bg04 { background: url("assets/images/loan-04.webp")no-repeat center / cover; }
.service_bg05 { background: url("assets/images/loan-05.webp")no-repeat center / cover; }
.service_bg06 { background: url("assets/images/loan-06.webp")no-repeat center / cover; }
.service_bg07 { background: url("assets/images/loan-07.webp")no-repeat center / cover; }
.service_bg08 { background: url("assets/images/loan-08.webp")no-repeat center / cover; }
.service_bg09 { background: url("assets/images/loan-09.webp")no-repeat center / cover; }
.service_bg10 { background: url("assets/images/loan-10.webp")no-repeat center / cover; }
.service_bg11 { background: url("assets/images/loan-11.webp")no-repeat center / cover; }
.service_bg12 { background: url("assets/images/loan-12.webp")no-repeat center / cover; }

.service_icon_ { display: flex; justify-content: space-between; align-items: center; }
.service_icon_ i { font-size: 50px; color: var(--c1); }
.service_icon_ span {  font-size: 20px; opacity: 0.8; }

.service_text_ { display: block; width: 100%; height: 180px; margin: 32px 0px; }
.service_text_ h2 { color: #fff; }
.service_text_ ul { margin-top: 16px; }
.service_text_ ul li+li { margin-top: 9px; }
.service_text_ ul li:before { content: "✅"; margin-right: 6px; }

.service_btns_ { display: flex; justify-content: space-between; align-items: center; }
.service_btns_ a { display: inline-block; padding: 9px 24px; border-radius: 50px; transition: var(--ts); }
.service_btns_ a:first-child { background: #fff; color: #000; }
.service_btns_ a:last-child  { background: var(--c1); }
.service_btns_ a:hover:first-child { background: var(--c1); color: #fff; }
.service_btns_ a:hover:last-child { background: #fff; color: #000; }

.service-btns { width: 100%; display: block; text-align: center; padding-top: 10px; }
.slide-btn { padding: 10px 24px; background: transparent; font-size: 40px; color: #118c4f; border: none; outline: none; border-radius: 50px; line-height: 0; }
.slide-btn i { line-height: 0.5; }
.slide-btn:hover { color: #565656; }

@media all and (max-width: 480px) {
	.service_slide { width: 100%; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.service_slide { width: 48.5%; margin-right: 16px; }
}

@media (min-width: 998px) and (max-width: 1120px) {
	.service_slide { width: 32%; margin-right: 16px; }

}


/* ---------- ----- Choose ----- ---------- */
.choose_row_ { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 16px; }
.choose_col_ { display: block; width: 100%; position: relative; padding: 16px; background: #fff; border-radius: 12px; box-shadow: var(--bs); }
.choose_icon_ { display: block; width: 72px; margin: auto; }
.choose_icon_ img { width: 100%; height: auto; filter: invert(25%) sepia(99%) saturate(567%) hue-rotate(90deg) brightness(92%) contrast(102%); }
.choose_text_ { display: block; text-align: center; margin-top: 16px; }
.choose_text_ h3 { font-size: 18px; color: var(--c1); }
.choose_text_ p  { text-align: justify; margin-top: 9px; }

@media all and (max-width: 480px) {
	.choose_row_ { grid-template-columns: repeat(1, 1fr); }
}


/* ---------- ----- Counter ----- ---------- */
.counter_bg { background: url(assets/images/request-bg.webp)no-repeat center / cover; background-attachment: fixed;  }

.counter_row { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 24px; padding: 32px 0px; }
.counter_col { display: block; width: 100%; text-align: center; color: #fff; border: 1px dashed #fff; padding: 24px; border-radius: 12px; }
.counter_col i { display: inline-block; font-size: 42px; margin-bottom: 16px; }
.counter_col span { display: block; font-size: 32px; }
.counter_col p { font-size: 16px; font-weight: 500; }

.counter_col:nth-child(1) span:after { content: "K +" }
.counter_col:nth-child(2) span:after { content: "K +" }
.counter_col:nth-child(3) span:after { content: "K +" }
.counter_col:nth-child(4) span:after { content: " +" }

@media all and (max-width: 480px) {
	.counter_row { grid-template-columns: repeat(2, 1fr); padding: 0px; }
	.counter_col { padding: 24px 16px; }
	.counter_col i { font-size: 32px; }
	.counter_col span { font-size: 28px; }
}


/* ---------- ----- TESTIMONIALS ----- ---------- */
.review_slider { width: 100%; display: block; height: 100%; }
.review_slide { width: 31.68%; display: inline-block; overflow: hidden; margin-right: 29px; }

.review_ { display: block; width: 100%; padding: 24px; background: #fff; border-radius: 12px; overflow: hidden; }
.review_text { display: block; width: 100%; height: 120px; overflow-y: auto; }

.review_stars { font-size: 14px; color: var(--c1); margin: 16px 0px; }

.review_info { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.review_thumb { display: block; width: 42px; }
.review_thumb img { width: 100%; height: auto; }

@media all and (max-width: 480px) {
	.review_slide { width: 100%; }
}


/* ---------- ----- Partners ----- ---------- */
.partners_row { display: grid; grid-template-columns: repeat(6, 1fr); grid-gap: 16px; }
.partners_col { display: flex; align-items: center; width: 100%; padding: 16px; background: #fff; border-radius: 12px; box-shadow: var(--bs); }
.partners_col img { width: 100%; height: auto; }

@media all and (max-width: 480px) {
	.partners_row { grid-template-columns: repeat(2, 1fr); }
}




/* ========== ========== ========== ========== ========== ========== ========== ========== ========== ========== ==========
													PAGE CSS
========== ========== ========== ========== ========== ========== ========== ========== ========== ========== ========== */


/* ---------- ----- PAGE BANNER ----- ---------- */
.page_bg01 { background: url("assets/images/loan-01.webp")no-repeat center / cover; z-index: 1; }
.page_bg02 { background: url("assets/images/loan-02.webp")no-repeat center / cover; z-index: 1; }
.page_bg03 { background: url("assets/images/loan-03.webp")no-repeat center / cover; z-index: 1; }
.page_bg04 { background: url("assets/images/loan-04.webp")no-repeat center / cover; z-index: 1; }
.page_bg05 { background: url("assets/images/loan-05.webp")no-repeat center / cover; z-index: 1; }
.page_bg06 { background: url("assets/images/loan-06.webp")no-repeat center / cover; z-index: 1; }
.page_bg07 { background: url("assets/images/loan-07.webp")no-repeat center / cover; z-index: 1; }
.page_bg08 { background: url("assets/images/loan-08.webp")no-repeat center / cover; z-index: 1; }
.page_bg09 { background: url("assets/images/loan-09.webp")no-repeat center / cover; z-index: 1; }
.page_bg10 { background: url("assets/images/loan-10.webp")no-repeat center / cover; z-index: 1; }
.page_bg11 { background: url("assets/images/loan-11.webp")no-repeat center / cover; z-index: 1; }
.page_bg12 { background: url("assets/images/loan-12.webp")no-repeat center / cover; z-index: 1; }

.page_bg01:before, .page_bg02:before, .page_bg03:before, .page_bg04:before,
.page_bg05:before, .page_bg06:before, .page_bg07:before, .page_bg08:before,
.page_bg09:before, .page_bg10:before, .page_bg11:before,
.page_bg12:before { content: ""; position: absolute; left: 0; top: 0; display: block; width: 100%; height: 100%; background: #000000e0; z-index: -1; }

.page_banner { padding: 60px 0px; text-align: center; color: #fff; }
.page_banner h3 { font-size: 42px; color: unset; }
.page_banner ul { display: inline-flex; gap: 16px; }

@media all and (max-width: 480px) {
	.page_banner h3 { font-size: 32px; }
}



/* ========== ========== ========== ========== ABOUT US PAGE CSS ========== ========== ========== ========== */

/* ----- ABOUT ----- */
.about_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 32px; }
.about_col { display: block; width: 100%; position: relative; }

.about_text {  }
.about_text h3 { font-size: 32px; color: var(--c2); }
.about_text p  { text-align: justify; margin-top: 16px; }
.about_text ul { padding-left: 18px; list-style-type: decimal; margin-top: 16px; }
.about_text ul li strong { display: block; font-weight: 600; color: var(--c2); font-size: 16px; }
.about_text ul li+li { margin-top: 12px; }

.about_image { display: block; width: 100%; }
.about_image img { width: 100%; height: auto; }

@media all and (max-width: 480px) {
	.about_row { grid-template-columns: repeat(1, 1fr); }
}

/* Mission Vision */
.row__ { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 32px; }
.col__ {  display: block; padding: 32px 24px; background: #49d69133; border-radius: 16px;  }
.col__ h3 { font-size: 24px; }
.col__ p  { margin-top: 16px; }

@media all and (max-width: 480px) {
	.row__ { grid-template-columns: repeat(1, 1fr); }
}




/* ========== ========== ========== ========== SERVICE PAGE CSS ========== ========== ========== ========== */

/* ----- SERVICE BANNER ----- */
.service_page_banner { display: block; width: 100%; padding: 60px 16px; position: relative; }
.page_banner_row { display: grid; grid-template-columns: 60% 35%; grid-gap: 5%; }

.page_banner_text { color: #fff; }
.page_banner_text h1 { font-size: 32px; color: unset; }
.page_banner_text ul { display: block; margin-top: 16px; }
.page_banner_text ul li+li { margin-top: 9px; }
.page_banner_text a { display: inline-block; padding: 9px 32px; background: var(--c1); color: #fff; margin-top: 16px; border-radius: 50px; }

.page_banner_form { color: #fff; }
.service_title { display: block; margin-bottom: 16px; }
.service_title h3 { font-size: 22px; color: unset; }
.service_title p  { margin-top: 12px; }

.subscribe_form { display: block; }
.subscribe_form .which_page { display: none; }
.subscribe_form form { display: flex; flex-direction: column; justify-content: space-evenly; gap: 12px; width: 100%; }
.subscribe_form label { display: block; margin-bottom: 9px; font-weight: 500; }
.subscribe_form input { display: block; width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; outline-color: var(--c1); }
.subscribe_form button { display: inline-block; padding: 12px 32px; background: var(--c1); color: #fff; border-radius: 50px; }
.which_page { display: none!important; }

@media all and (max-width:480px) {
	.page_banner_row { grid-template-columns: repeat(1, 1fr); grid-gap: 32px; }
}


/* ========== ========== ========== ========== ========== ==========
													SERVICE PAGE
========== ========== ========== ========== ========== ========== */

.service__row { display: flex; justify-content: space-between; gap: 32px; }
.service__col { display: block; position: relative; }
.service__col:first-child { width: 70%; }
.service__col:last-child  { width: 30%; }

.service__text:first-child { margin-top: 0px; }
.service__text { display: block; margin-top: 32px; }
.service__text h1 { font-size: 32px; color: var(--c1); }
.service__text h2 { font-size: 24px; }
.service__text h2 span { display: block; }
.service__text h3 { font-size: 24px; color: var(--c1); }
.service__text h4 { margin-top: 16px; }
.service__text p  { margin-top: 16px; text-align: justify; }

.service__text ul { display: block; margin-top: 16px; padding-left: 32px; list-style-type: disc; }
.service__text ul li+li { margin-top: 9px; }

.service__text i { display: block; margin-top: 16px; }

@media all and (max-width:480px) {
	.service__row { flex-direction: column; }
	.service__col:first-child { width: 100%; }
	.service__col:last-child  { width: 100%; }

	.service__text h1 { font-size: 24px; }
	.service__text h2 { font-size: 16px; }
	.service__text h3 { font-size: 20px; }
}


/* Service Tabs */
.service__tabs { display: block; border-radius: 16px; border: 1px solid #ddd; padding: 24px; margin-top: 32px; }
.tab__s { text-align: center; }
.tab__s button { display: inline-block; background: #fff; cursor: pointer;
	padding: 12px 24px; transition: 0.3s; font-size: 15px; border-radius: 50px; margin: 4px; box-shadow: var(--bs); }
.tab__s button:hover { background: var(--c1); color: #fff; }
.tab__s button.active { background: var(--c1); color: #fff; }

.tab_area { display: none; padding-top: 24px; }
.tab_area h3 { font-size: 24px; color: var(--c1); }
.tab_area h4 { margin-top: 16px; }
.tab_area p { margin-top: 16px; text-align: justify; }
.tab_area ul { list-style-type: disc; padding-left: 32px; margin-top: 16px; }
.tab_area ul li+li { margin-top: 9px; }
.tab_area ul li { text-align: justify; }

@media all and (max-width:480px) {
	.tab__s button { padding: 9px 16px; font-size: 14px; }
	.tab_area h3 { font-size: 20px; }
}


/* Service Table */
.table_ { margin-top: 16px; }
.table_, .table_ th, .table_ td { border: 1px solid black; border-collapse: collapse; }
.table_ th, .table_ td { padding: 9px 12px; }


/* WIDGET ANCHOR */
.widget_anchor { width: 100%; padding: 30px 16px; position: relative; border: 1px solid #efeef5; box-shadow: var(--bs); border-radius: 12px; }
.widget_anchor h3 { font-size: 28px; margin-bottom: 16px; }

.service__list { display: block; position: relative; }
.service__list li+li { margin-top: 9px; }
.service__list li { display: block; position: relative; background: #f3f5fd; transition: all 0.3s ease; border-radius: 4px; overflow: hidden; z-index: 1; }
.service__list li a { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; font-weight: 500; font-size: 14px; }

.service__list li:before { content: ''; position: absolute; bottom: 0; right: 0; left: 0; background: var(--c1); width: 0; height: 100%; transition: .3s ease; overflow: hidden; z-index: -1; }
.service__list li:hover:before { width: 100%; }
.service__list li:hover { color: #fff; }

.SPL { background: var(--c1)!important; color: #fff; }




/* ========== ========== ========== ========== LOAN PROCESS PAGE CSS ========== ========== ========== ========== */

/* ----- LOAN PROCESS ----- */
.loan_process_row { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 16px; }
.loan_process_col { display: block; width: 100%; padding: 24px 16px; background: #fff; border-radius: 12px; box-shadow: var(--bs); }
.loan_process_icon { display: block; text-align: center; margin: auto; font-size: 42px; }
.loan_process_icon i { color: var(--c1); }
.loan_process_text { text-align: center; margin-top: 16px; }
.loan_process_text h3 { font-size: 20px; }
.loan_process_text p  { margin-top: 12px; }

@media all and (max-width: 480px) {
	.loan_process_row { grid-template-columns: repeat(3, 1fr); }
}



/* ========== ========== ========== ========== ========== ==========
													EMI CALUCULATOR
========== ========== ========== ========== ========== ========== */

/* EMI CALUCULATOR */
.EMI { width: 100%; display: block; padding: 50px 0px; }
.calculator { width: 100%; display: block; position: relative; overflow: hidden; padding: 50px 0px;
	background: #ffffff; border-radius: 8px; box-shadow: 0 0 15px 10px #9592921c; border: 1px solid #ddd; }
.cal-head { display: block; width: 100%; padding-bottom: 20px; text-align: center; }
.cal-head h2 { font-size: 34px; margin-bottom: 20px; text-transform: uppercase; color: var(--c1); }
.cal-head p { display: block; width: 50%; margin: auto; }
.cal-row:after { content: ""; display: table; clear: both; }
.disc { width: 50%; display: block; float: left; position: relative; overflow: hidden;  }
.cal-wrap { width: 100%; padding: 20px 40px; }
.input-disc { width: 100%; display: flex; justify-content: space-around; align-items: center; margin-bottom: 16px; }
.input-disc label {  color: var(--c1);  }
.symbol { padding: 11px 24px 11px 14px; font-size: 17px; font-weight: 400; line-height: 1; text-align: center; background: var(--c1); color: #fff;
border: 1px solid #c7d8ff; width: 1%; white-space: nowrap; vertical-align: middle; display: table-cell; border-radius: 4px 0px 0px 4px }
.input { width: 100%; display: table-cell; padding: 9px; font-size: 17px; outline: none; border: 1px solid #dcdee0; border-left: transparent; border-radius: 0px 4px 4px 0px; }
.month-btn { display: block; padding: 9px; color: var(--c1); font-size: 16px; border: 1px solid var(--c1); margin-left: 10px; border-radius: 4px; }
.submit-btn { display: block; padding: 9px 40px; background: var(--c1); color: #fff; font-size: 18px; border: none; outline: none; border-radius: 50px; }

/**/
.emi-summury, .emi-sum {  flex-direction: column; justify-content: space-around; align-items: center; margin-bottom: 16px; }
.emi-summury input, .emi-sum input { display: table-cell; width: 100%; font-weight: 100; outline: none; border: none; }
.emi-summury label, .emi-sum label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--c1); }
.emi-summury { display: block; }
.emi-summury input { font-size: 22px; }
.emi-sum label { font-size: 18px; }
.emi-sum { display: flex; }
.emi-sum input { font-size: 28px; text-align: center; }
.emi-sum label { font-size: 30px; }

/**/
.interest { width: 100%; display: flex; justify-content: space-around; align-items: center; padding-bottom: 10px; }
.sum-grid { width: 100%; display: block; }
.sum-chart { width: 100%; display: flex; justify-content: space-around;  }
.chart-circle { width: 100px; height: 100px; display: flex; border-radius: 50%; border: 10px solid var(--c1); justify-content: flex-end; }
.chart-mark {  width: 50px; height: 50px; border-radius: 50%; border: 10px solid transparent; border-top: 10px solid #ff5f05; transform: rotate(45deg); }

@media all and (max-width: 480px) {
	.EMI { padding: 0px 0px; }
	.cal-head { padding: 0px 20px 20px 20px; }
	.cal-head p { width: 100%; font-size: 14px; }
	.calculator { box-shadow: 0px #9592921c; border: 1px solid transparent; }
	.cal-head h2 { font-size: 24px; margin-bottom: 12px; }
	.disc { width: 100%; }
	.cal-wrap {  padding: 20px; }
}

@media (min-width: 500px) and (max-width: 1200px) {
	.EMI { padding: 0px; }
	.calculator { box-shadow: 0px #9592921c; border: 1px solid transparent; }
	.disc { width: 50%; }
	.cal-wrap {  padding: 20px; }
}





/* ========== ========== ========== ========== ========== ==========
														CONTACT PAGE
========== ========== ========== ========== ========== ========== */

.section-contact { display: block; padding: 100px 16px; }
.contact_row { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 24px; }
.contact_col { display: block; width: 100%; }

.contact_text { display: block; }
.contact_text h2 { font-size: 32px; margin-top: 12px; }
.contact_text p { margin-top: 16px; }
.contact_text p:first-child { font-weight: 600; }
.contact_text p+p { margin-top: 6px; }
.contact_box { display: block; margin-top: 24px; }
.contact_box ul { display: flex; align-items: center; gap: 24px; }
.contact_box ul li i { font-size: 42px; color: var(--c1); }
.contact_box ul li h3 { font-size: 18px; }
.contact_box ul li p { font-size: 15px; margin-top: 8px; }
.contact_box ul li p a:hover { color: var(--c1); }

.contact_form { display: block; padding: 32px; background: #fff; border-radius: 6px; box-shadow: 0px 7px 24px 0px #0000001f; }
.contact_form h2 { font-size: 32px; }
.contact_form p { margin-top: 16px; }
.contact_form form { display: block; }
.form_group { display: flex; gap: 16px; margin-top: 16px; }
.form_group input,
.form_group select,
.form_group textarea { width: 100%; padding: 16px; background: #f3f5fd; border: 1px solid #f3f5fd; outline: 0; }
.form_group button { padding: 16px 48px; border: 0; outline: 0; border-radius: 4px; background: var(--c1); color: #fff; }

@media all and (max-width: 480px) {
	.section-contact { padding: 60px 16px; }
	.contact_row { grid-template-columns: repeat(1, 1fr); }

	.contact_form { padding: 32px 16px; }
	.form_group { flex-direction: column; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.contact_row { grid-template-columns: repeat(1, 1fr); }
}


/* ----- MAP ----- */
.map_area { display: block; width: 100%; height: 40vh; box-shadow: var(--bs); overflow: hidden;  }
.map_area iframe { display: block; width: 100%; height: 100%; border: 0; }

@media all and (max-width: 480px) {
	.map_area { height: 40vh; }
}



/* ========== ========== ========== ========== ========== ==========
														FOOTER
========== ========== ========== ========== ========== ========== */
.footer { background: var(--c1); }
.upper_footer { display: block; width: 100%; padding: 60px 16px;  position: relative; background: #f1f1f8; }
.footer_row { max-width: 1140px; margin: auto; display: grid; grid-template-columns: 25% 15% 25% 25%; grid-gap: 3.2%; }
.footer_col { display: block; width: 100%; }
.footer_col h3 { font-size: 22px; text-transform: uppercase; color: var(--c1); margin-bottom: 16px; }

.footer_logo { display: block; max-width: 280px; }
.footer_logo img { width: 100%; height: auto; }
.footer_text { margin-top: 16px; }
.footer_text p { text-align: justify; }

.footer_social { display: flex; gap: 9px; margin-top: 12px; }
.footer_social a { display: block; width: 38px; height: 38px; line-height: 38px; text-align: center; border-radius: 50px; background: var(--c1); color: #fff; }

.footer_links {  }
.footer_links li+li { margin-top: 9px; }
.footer_links li a { display: block; position: relative; transition: var(--ts); font-weight: 500; }
.footer_links li a:before { content: '\f101'; margin-right: 6px; font-family: var(--fa); font-weight: 600; color: var(--c1); }
.footer_links li a:hover { color: var(--c1); }

.footer_link { display: flex; gap: 9px; }
.footer_link+.footer_link { margin-top: 12px; }
.footer_icon { display: block; font-size: 38px; color: var(--c1); line-height: 0; }
.footer_info { display: block; }
.footer_info h4 { font-size: 17px; font-weight: 500; }
.footer_info a { display: block; transition: var(--ts); padding-left: 12px; }

.lower_footer { background: var(--c1); color: #fff; padding: 18px 16px;  }
.footer_row_ { max-width: 1140px; margin: auto; display: flex; justify-content: space-between; }
.footer_col_ { font-weight: 500; }
.footer_col_ p {  }
.footer_col_ p a {  }
.footer_col_ ul { display: flex; gap: 8px; }
.footer_col_ ul li a {  }

.footer_form {  }
.footer_form form { display: flex; flex-direction: column; justify-content: space-evenly; gap: 12px; width: 100%; }
.footer_form input { display: block; width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; outline-color: var(--c1); }
.footer_form button { display: inline-block; padding: 12px 32px; background: var(--c1); color: #fff; }

@media all and (max-width:480px) {
	.footer_row { grid-template-columns: repeat(1, 1fr); grid-gap: 16px; }
	.footer_row_ { flex-direction: column; gap: 16px; text-align: center; }
	.footer_col_ ul li { display: block; width: 100%; }
	.footer_col_ ul li a { display: block; }
}

@media (min-width: 500px) and (max-width: 992px) {
	.footer_row { grid-template-columns: repeat(2, 1fr); grid-gap: 32px; }
}