@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXpsog.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXpsog.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXpsog.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXpsog.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root{
  --blueColor: #034a9a;
  --mainColor: rgba(117, 161, 54, 1);
  --footerColor:  #3d5503;
  --greenColor:  #304302;
  --darkGreen: #1a2501;
  --redColor: #ff0000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --grayColor: #f1f1f1;
  --fontFamily:'Montserrat', sans-serif;
  --centerAlign: center;
  --borderRadius: 5px;
  --textDecorationNone: none;
}
body{
  font-family: var(--fontFamily)
}
.navigation{
  background: var(--whiteColor);
}
.navigation div a.navbar-brand{
  font-size: 20px;
  font-weight: bold !important;
  color: var(--blackColor);
}
.navigation div ul li a.active{
  border-bottom: 3px solid var(--greenColor);
  color: var(--blackColor);
  font-weight: bold !important;
}
.navigation div ul li a {
  background-image: linear-gradient(
    to right,
    var(--mainColor),
    var(--mainColor) 50%,
    #000 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.navigation div ul li a:before{
  content: '';
  background: var(--mainColor);
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.navigation div ul li a:hover {
 background-position: 0;
}

.navigation div ul li a:hover::before{
  width: 100%;
}
.navigation div ul li ul li{
  padding: 0px 10px;
}


h1, h2, h3{
  font-family: var(--fontFamily)
}
.hero_section{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero_section h1{
  font-size: 70px;
  color: var(--whiteColor);
  font-weight: bold;
}
.hero_section p{
  font-size: 30px;
  color: var(--whiteColor);
  font-weight: bold;
}
.hero_section .content .application_form_request{
  padding: 20px 0px;
}
.hero_section .content .application_form_request a{
  padding: 20px 30px;
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
  background: var(--mainColor);
  text-decoration: var(--textDecorationNone);
}

/* about */
.about{
  padding: 100px 0px;
  text-align: var(--centerAlign)
}
.about h2{
  font-size: 150px;
  color: var(--blackColor);
  opacity: 0.1;
  font-weight: bold !important;
}
.about .content h1{
  margin-top: -130px;
  color: var(--blackColor);
  font-size: 70px;
  font-weight: bold !important;
}
.about .content p{
  color: var(--blackColor);
  font-size: 18px;
}
.content .read_more_button{
  padding: 20px 0px;
}
.read_more_button a{
  padding: 20px 30px;
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
  background: var(--mainColor);
  text-decoration: var(--textDecorationNone);
}

.about_loan{
  background: var(--grayColor);
  padding: 100px 0px;
}
.about_loan .content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.about_loan .content .box_item{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  /* border-radius: var(--borderRadius); */
  border-left: 5px solid var(--mainColor);
}
.about_loan .content .box_item h2{
  font-size: 30px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.about_loan .content .box_item p{
  font-size: 18px;
  color: var(--blackColor);
}

/* program */
.program{
  padding: 100px 0px
}
.program h3{
  font-size: 130px;
  font-weight: bold !important;
  text-align: var(--centerAlign);
  opacity: 0.1;
}
.program h1{
  margin-top: -100px;
  color: var(--blackColor);
  font-size: 70px;
  font-weight: bold !important;
  text-align: var(--centerAlign);
  margin-bottom: 40px;
}
.program .content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.program .content .program_box{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  border-left: 2px solid var(--mainColor);
  border-top-left-radius: 100px;
}
.program .content .program_box .program_icon{
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 2px solid var(--mainColor);
  display: flex;
  justify-content: var(--centerAlign);
  align-items: var(--centerAlign);
  margin-bottom: 20px;
}
.program .content .program_box .program_icon i{
  font-size: 50px;
  color: var(--mainColor);
}
.program .content .program_box h2{
  font-size: 20px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.program .read_more_button{
  margin-top: 40px;
  text-align: var(--centerAlign);
}



/* quotation */
.quotation{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.quotation .content h1{
  font-size: 70px;
  color: var(--whiteColor);
  font-weight: bold !important;
}
.quotation .content h2{
  font-size: 30px;
  color: var(--whiteColor);
  font-weight: bold !important;
  font-style: italic;
}
.divider_horizontal{
  height: 5px;
  width: 25%;
  background: var(--mainColor);
  margin-bottom: 10px;
}
.quotation .content p{
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold !important;
}


/* ceo_message */
.ceo_message{
  padding: 100px 0px;
}
.ceo_message .content{
  text-align: var(--centerAlign);
}
.ceo_message .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: var(--centerAlign);
}
.ceo_message .content img{
  border-radius: 50%;
  height: 180px;
  width: 180px;
  margin-bottom: 40px;
}
.ceo_message .content p{
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: var(--centerAlign);
}

/* professional_team_section */
.professional_team_section{
  padding: 100px 0px;
  background: var(--grayColor);
}
.professional_team_section .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: var(--centerAlign);
}
.professional_team_section .content p{
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: var(--centerAlign);
}

/* how_to_apply */
.how_to_apply .content{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.how_to_apply .content .colmn_left{
  background-image:url('../images/bg2.jpg');
  padding: 200px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.how_to_apply .content .colmn_right{
  padding: 100px 50px;
  /* text-align: var(--centerAlign); */
}
.how_to_apply .content .colmn_right h3{
  font-size: 130px;
  color: var(--blackColor);
  opacity: 0.1;
  font-weight: bold !important;
}
.how_to_apply .content .colmn_right h1{
  margin-top: -90px;
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  /* font-style: italic; */
}
.how_to_apply .content .colmn_right h2{
  font-size: 25px;
  color: var(--whiteColor);
  font-weight: bold !important;
}
.how_to_apply .content .colmn_right .modal .modal-content{
  background: var(--mainColor);
  padding: 30px;
}
.how_to_apply .content .colmn_right .modal form label{
  display: block;
  font-size: 18px;
  color: var(--whiteColor) !important;
  margin-bottom: 10px;
  font-weight: bold !important;
}
.how_to_apply .content .colmn_right .modal form input[type="text"]{
  display: block;
  width: 100%;
  height: 50px;
  background: var(--whiteColor);
  font-size: 16px;
  font-weight: bold !important;
  color: var(--blackColor);
  border: none;
  padding: 10px;
  border-radius: 0px;
  outline: none;
}
.how_to_apply .content .colmn_right .modal form input[type="email"]{
  display: block;
  width: 100%;
  height: 50px;
  background: var(--whiteColor);
  font-size: 16px;
  font-weight: bold !important;
  color: var(--blackColor);
  border: none;
  padding: 10px;
  border-radius: 0px;
  outline: none;
}
.how_to_apply .content .colmn_right .modal form select{
  display: block;
  width: 100%;
  height: 50px;
  background: var(--whiteColor);
  font-size: 16px;
  font-weight: bold !important;
  color: var(--blackColor);
  border: none;
  padding: 10px;
  border-radius: 0px;
  outline: none;
}
.how_to_apply .content .colmn_right .modal form .this_phone_section_group{
  margin-bottom: 10px;
}
.how_to_apply .content .colmn_right .modal form .phone_section{
  display: flex;
}
.how_to_apply .content .colmn_right .modal form .action_button_ button.close_btn{
  height: 50px;
  padding: 10px;
  color: var(--whiteColor);
}
.how_to_apply .content .colmn_right .modal form .action_button_ button.submit_btn{
  height: 50px;
  padding: 10px;
  background: var(--blackColor);
  color: var(--whiteColor);
}

/* testimonial */
.testimonial{
  padding: 100px 0px;
}
.testimonial .content{
  text-align: var(--centerAlign);
}
.testimonial .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  margin-bottom: 20px;
}
.testimonial .content p{
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
}


/* beneficiary */
.beneficiary{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.beneficiary h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.beneficiary .content{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
  /* text-align: var(--centerAlign); */
}
.beneficiary .content .beneficiary_counter{
  text-align: var(--centerAlign);
}
.beneficiary .content .beneficiary_counter .image_section{
  margin: auto;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: var(--centerAlign);
  align-items: var(--centerAlign);
  border-radius: 100px;
  border: 1px solid var(--mainColor);
}
.beneficiary .content .beneficiary_counter .image_section i{
  font-size: 75px;
  color: var(--mainColor);
  transition: 0.3s ease-in-out;
}
.beneficiary .content .beneficiary_counter .image_section:hover i{
  font-size: 75px;
  color: var(--blueColor);
}
.beneficiary .content .beneficiary_counter h2{
  font-size: 30px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 10px;
}
.beneficiary .content .beneficiary_counter p{
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 20px;
}


/* loan_page */
.loan_page{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.loan_page .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  /* margin-bottom: 10px; */
}
.loan_section_one{
  padding: 100px 0px;
}
.loan_section_one .content{
  text-align: var(--centerAlign);
}
.loan_section_one .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 10px;
}
.loan_section_one .content p{
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 20px;
}

.tmln {
	--bdc: hsl(200, 40%, 60%);
	--bdc-a: hsl(200, 40%, 40%);
	--bdc-h: hsl(200, 30%, 90%);
	--bgc: hsl(200, 40%, 80%);
	--bdrs: 0.25rem;
	--bdw: 2px;
	--bullet-bdrs: 50%;
	--bullet-sz: 1.2em;
	--bullet-sz-a: 6px;
	--c: hsl(200, 40%, 1%);
	--box-item-bdrs: 0.25rem;
	--box-item-bgc: rgba(255, 255, 255, .15);
	--box-item-dark-bgc: hsl(200, 40%, 40%);
	--box-item-dark-c: hsl(200, 40%, 95%);
	--box-item-lght-bgc: hsl(200, 30%, 90%);
	--gap: 1rem;
	--scroll-bgc: hsl(200, 40%, 85%);
	--scroll-tmb-bgc: hsl(200, 40%, 70%);
	--scroll-w: 10px;
	--trsdu: .3s;
	--trstf: ease-out;

	/* Modifier-specific properties */
	--sl-mbe: 2em;
	--bi-miw: 85%;
	--bi-miw-tablet: 30%;

	background-color: var(--bgc, transparent);
	border-radius: var(--bdrs, 0);
	color: var(--c, currentColor);
	font-family: var(--ff, ui-sans-serif, system-ui, sans-serif);
	padding-block: var(--gap) 0;
	padding-bottom: var(--gap); /* Safari */
	padding-top: var(--gap); /* Safari */
	width: var(--w, 100%);
	-webkit-tap-highlight-color: transparent;
}

.tmln:not(.tmln--hr) {
	padding-inline-start: var(--gap);
}

.tmln__header {
	margin-block-start: 0;
}

.tmln__item {
	color: inherit;
	display: block;
	margin-block-end: var(--mbe, var(--gap));
	padding-inline-start: calc(var(--gap) + var(--bullet-sz));
	position: relative;
	text-decoration: none;
}

/* Circle */
.tmln__item::after {
	border: var(--bdw) solid var(--bdc);
	border-radius: var(--bullet-bdrs);
	box-sizing: border-box;
	content: "";
	block-size: var(--bullet-sz);
	inline-size: var(--bullet-sz);
	inset-block-start: 0;
	inset-inline-start: 0;
	position: absolute;
	transition: all var(--trsdu) var(--trstf);
}

/* Line */
.tmln__item::before {
	background-color: var(--bdc);
	content: "";
	block-size: calc(100% + var(--mbe, var(--gap)) - var(--bullet-sz));
	inline-size: var(--bdw);
	inset-block-start: var(--bullet-sz);
	inset-inline-start: calc((var(--bullet-sz) - var(--bdw)) / 2);
	position: absolute;
}

/* Hide last line */
.tmln:not(.tmln--hr) .tmln__item:last-child::before {
	display: none;
}

.tmln__item-headline {
	margin-block: 0;
}

.tmln__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-block: 0 var(--gap);
	padding-inline: 0;
}

/*
====================
Modifiers and States
====================
*/

/* Active Circle */
.tmln__item--active::after {
	--bdc: var(--bdc-a);
	box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bgc, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc-a);
	background-color: var(--bdc-a);
}

/* :focus, :focus-within, :focus-visible */
.tmln__item--active:focus-visible::after,
.tmln__item--active:focus-within::after {
	box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bdc-h, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
}

.tmln__item--active [data-title],
.tmln__item:focus-visible [data-title] {
	text-shadow: 0.75px 0px 0px currentColor;
}

.tmln__item:not(.tmln__item--active):focus-visible::after,
.tmln__item:not(.tmln__item--active):focus-within::after {
	background-color: var(--bdc-h);
	box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bgc, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
}

.tmln--box .tmln__item:focus-within {
	box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tmln__item:focus-visible {
	outline: none;
}

.tmln__item:focus-visible [data-title],
.tmln__item:focus-within a {
	outline: 1px dotted currentColor;
	outline-offset: 6px;
}

/* Horizontal */
.tmln--hr .tmln__header {
	margin-inline-start: var(--gap);
}

.tmln--hr .tmln__list {
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-block-start: var(--bullet-sz-a); /* Add room for box-shadow transition in horizontal mode */
	padding-inline-start: var(--gap);
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.tmln--hr .tmln__item {
	align-self: flex-start;
	margin-block-end: 0;
	min-width: var(--miw, 6rem);
	padding-block-start: calc(var(--bullet-sz) + var(--gap));
	padding-inline-end: var(--gap);
	padding-inline-start: 0;
	scroll-snap-align: start;
	scroll-margin-inline-start: var(--gap);
	scroll-margin-left: var(--gap); /* Safari */
}

.tmln--hr .tmln__item::before {
	block-size: var(--bdw);
	inline-size: calc(100% - var(--bullet-sz));
	inset-block-start: calc((var(--bullet-sz) - var(--bdw)) / 2);
	inset-inline-start: calc(0% + var(--bullet-sz));
}

/* Item Box */
.tmln--box .tmln__item {
	background-color: var(--box-item-bgc);
	border-radius: var(--box-item-bdrs);
	margin-block-end: 0;
	margin-inline-start: calc(var(--bullet-sz) + var(--gap));
	padding: var(--gap);
	transition: box-shadow var(--trsdu) var(--trstf);
}

.tmln--box .tmln__item [data-title] {
	display: block;
	font-size: small;
	text-transform: uppercase;
}

.tmln--box:not(.tmln--hr) .tmln__item::after {
	inset-inline-start: calc(0px - var(--bullet-sz) - var(--gap));
}

.tmln--box:not(.tmln--hr) .tmln__item::before {
	inset-inline-start: calc(0px - var(--gap) - ((var(--bullet-sz) + var(--bdw)) / 2));
}

.tmln--box .tmln__item--bg-dark {
	background-color: var(--box-item-dark-bgc);
	color: var(--box-item-dark-c);
}

.tmln--box:not(.tmln--hr) .tmln__item--bg-dark a {
	outline-color: var(--box-item-dark-bgc);
}

.tmln--box .tmln__item--bg-lght {
	background-color: var(--box-item-lght-bgc);
}

.tmln--box .tmln__list {
	gap: var(--gap);
	padding-inline-end: var(--gap);
}

/* Item Box AND Horizontal */
.tmln--box.tmln--hr .tmln__item {
	--miw: var(--bi-miw);
	margin-block-end: 0;
	margin-block-start: calc(var(--bullet-sz) + var(--gap));
	margin-inline-start: 0;
}

.tmln--box.tmln--hr .tmln__item::after {
	inset-block-start: calc(0px - var(--bullet-sz) - var(--gap));
}
.tmln--box.tmln--hr .tmln__item::before {
	inset-block-start: calc(0px - var(--gap) - ((var(--bullet-sz) + var(--bdw)) / 2));
	inline-size: calc(100% - var(--bullet-sz) + var(--gap));
}

/* Single Line, center text to bullet */
.tmln--sl .tmln__item {
	--mbe: var(--sl-mbe, var(--gap));
	line-height: var(--bullet-sz);
}

/* Media Queries */

/* :hover */
@media (hover: hover) {
	.tmln__item--active:hover::after {
		box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bdc-h, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
	}
	.tmln__item:hover [data-title] {
		text-shadow: 0.75px 0px 0px currentColor;
	}
	.tmln__item:not(.tmln__item--active):hover::after {
		background-color: var(--bdc-h);
		box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bgc, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
	}
	.tmln--box .tmln__item:hover {
		box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
	}
}

@media (min-width: 768px) {
	.tmln--box.tmln--hr .tmln__item {
		--miw: var(--bi-miw-tablet);
	}
}

/* Show scrollbars on devices without touch  */
@media (pointer: fine) {
	.tmln--hr {
		/* Add space between scrollbar and bottom of container */
		padding-block-end: var(--gap);
	}
	.tmln--hr .tmln__list {
		scrollbar-width: var(--scroll-w);
	}
	.tmln--hr .tmln__list {
		scrollbar-color: var(--scroll-tmb-bgc) var(--scroll-bgc);
		scrollbar-width: thin;
	}
	.tmln--hr .tmln__list::-webkit-scrollbar {
		background: var(--scroll-bgc);
		height: var(--scroll-w);
		width: var(--scroll-w);
	}
	.tmln--hr .tmln__list::-webkit-scrollbar-button {
    background: var(--bgc);
	}
	.tmln--hr .tmln__list::-webkit-scrollbar-thumb {
		/* Hide scrollbar-button-area, so scrollbar appears smaller than container */
		background-color: var(--scroll-tmb-bgc);
	}
}

/*
		body {
			font: 100% / 1.5 ui-sans-serif, system-ui, sans-serif;
			margin: 0;
			padding: max(env(safe-area-inset-top), 0.75rem)
				max(env(safe-area-inset-right), 0.75rem)
				max(env(safe-area-inset-bottom), 0.75rem)
				max(env(safe-area-inset-left), 0.75rem);
		}
		body * {
			box-sizing: border-box;
		}
		html {
			scroll-behavior: smooth;
		}
		.tmln__item a {
			color: currentColor;
		}

		.block-link {
			inset: 0;
			overflow: hidden;
			position: absolute;
			text-indent: 200%;
			white-space: nowrap;
		} */
.loan_section_two{
  padding: 100px 0px;
}
.loan_section_two .content{
  text-align: var(--centerAlign);
}
.loan_section_two .content h2{
  font-size: 130px;
  font-weight: bold !important;
  opacity: 0.1;
  text-align: var(--centerAlign);
}
.loan_section_two .content h1{
  font-size: 70px;
  font-weight: bold !important;
  text-align: var(--centerAlign);
  color: var(--blackColor);
  margin-top: -200px;
  margin-bottom: 40px;
}
.loan_section_two .content p{
  font-size: 30px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.loan_section_three{
  padding: 0px 0px 100px 0px;
}
.loan_section_three .content{
  text-align: var(--centerAlign);
}
.loan_section_three .content h2{
  font-size: 130px;
  font-weight: bold !important;
  opacity: 0.1;
  text-align: var(--centerAlign);
}
.loan_section_three .content h1{
  font-size: 50px;
  font-weight: bold !important;
  text-align: var(--centerAlign);
  color: var(--blackColor);
  margin-top: -100px;
  margin-bottom: 40px;
}
.loan_section_three .content p{
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
}



/* footer_section */
.footer_section{
  text-align: var(--centerAlign);
  padding: 50px 0px;
  background: var(--darkGreen);
}
.footer_section .content p{
  color: var(--whiteColor);
  font-weight: bold !important;
  font-size: 18px;
}
.footer_section .social_media{
  padding: 20px 0px;
}
.footer_section ul {
  /* position:absolute; */
  /* top:50%;
  left:50%; */
  text-align: var(--centerAlign);
  /* transform:translate(-50%,-50%); */
  /* margin:0; */
  padding:0;
  display:flex;
  justify-content: var(--centerAlign);
}
.footer_section ul li {
  list-style:none;
}
.footer_section ul li a {
  display:block;
  position:relative;
  width:100px;
  height:100px;
  line-height:100px;
  font-size:40px;
  text-align:center;
  text-decoration:none;
  color:#404040;
  margin: 0 30px;
  transition:.5s;
}
.footer_section ul li a span {
  position:absolute;
  transition: transform .5s;
}
.footer_section ul li a span:nth-child(1),
.footer_section ul li a span:nth-child(3){
  width:100%;
  height:3px;
  background:#404040;
}
.footer_section ul li a span:nth-child(1) {
  top:0;
  left:0;
  transform-origin: right;
}
.footer_section ul li a:hover span:nth-child(1) {
  transform: scaleX(0);
  transform-origin: left;
  transition:transform .5s;
}

.footer_section ul li a span:nth-child(3) {
  bottom:0;
  left:0;
  transform-origin: left;
}
.footer_section ul li a:hover span:nth-child(3) {
  transform: scaleX(0);
  transform-origin: right;
  transition:transform .5s;
}

.footer_section ul li a span:nth-child(2),
.footer_section ul li a span:nth-child(4){
  width:3px;
  height:100%;
  background:#404040;
}
.footer_section ul li a span:nth-child(2) {
  top:0;
  left:0;
  transform:scale(0);
  transform-origin: bottom;
}
.footer_section ul li a:hover span:nth-child(2) {
  transform: scale(1);
  transform-origin: top;
  transition:transform .5s;
}
.footer_section ul li a span:nth-child(4) {
  top:0;
  right:0;
  transform:scale(0);
  transform-origin: top;
}
.footer_section ul li a:hover span:nth-child(4) {
  transform: scale(1);
  transform-origin: bottom;
  transition:transform .5s;
}

.facebook:hover {
  color: #3b5998;
}
.facebook:hover span {
  background: #3b5998;
}
.twitter:hover {
  color: #1da1f2;
}
.twitter:hover span {
  background: #1da1f2;
}
.instagram:hover {
  color: #c32aa3;
}
.instagram:hover span {
  background: #c32aa3;
}
.google:hover {
  color: #dd4b39;
}
.google:hover span {
  background: #dd4b39;
}
ul li a .twitter {
  color: #1da1f2;
}
ul li a:hover:nth-child(3) {
  color: #c32aa3;
}
ul li a:hover:nth-child(4) {
  color: #dd4b39;
}




/* program page */
.program_top{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.program_top .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.program_second_section{
  padding: 50px 0px;
}
.program_second_section .content{
  border-left: 5px solid var(--mainColor);
  border-right: 5px solid var(--mainColor);
  padding: 50px;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.program_second_section .content p{
  color: var(--blackColor);
  font-size: 30px;
  font-weight: bold !important
}

.program_eligibility{
  padding: 100px 0px;
}
.program_eligibility .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.program_eligibility ul{
  width: min(100%, 60rem);
  overflow: hidden;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 4rem);
  list-style: none;
  perspective: 1000px;
  display: grid;
  row-gap: 0.5rem;
}
.program_eligibility ul li.card{
  position: relative;
  padding-block: 1.5rem;
  padding-inline: 2rem;
  background-color: var(--bg-color);
  background-image: linear-gradient(to right, rgb(0 0 0 / .15), transparent);
  transform-style: preserve-3d;
  color: var(--color);

  display: grid;
  grid-template: 'icon' 'title' 'content';
  row-gap: 0.5rem;
  column-gap: 2rem;
}
.program_eligibility ul li.card::before, ul li.card::after {
  --side-rotate: 60deg;
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  transform-origin: calc(50% - (50% * var(--ry))) 50%  ;
  transform: rotateY(calc(var(--side-rotate) * var(--ry)));
  background-color: inherit;
  background-image: linear-gradient(calc(90deg * var(--ry)), rgb(0 0 0 / .25), rgb(0 0 0 / .5));
}
.program_eligibility ul li.card::before {--ry: -1; right: 100% }
.program_eligibility ul li.card::after {--ry: 1; left: 100% }

.program_eligibility ul li.card .icon {
  grid-area: icon;
  display: grid;
  place-items: center;
}
.program_eligibility ul li.card .icon i {
  font-size: 2rem;
}
.program_eligibility ul li.card .title{
  grid-area: title;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.program_eligibility ul li.card .content{
  grid-area: content;
}

@media (min-width: 30rem){
  .program_eligibility ul li.card {
    grid-template: 'icon title' 'icon content';
    text-align: left;
  }
  .program_eligibility ul li.card .title { text-align: left }
}

.program_section_one{
  padding: 100px 0px;
}
.program_section_one .content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.program_section_one .content .program_one_box_section{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  border-radius: var(borderRadius);
}
.program_section_one .content .program_one_box_section h2{
  font-size: 20px;
  color: var(--blackColor);
  font-weight: bold !important;
  /* text-align: center; */
  margin-bottom: 10px;
}
.program_section_one .content .program_one_box_section p{
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
  /* text-align: center; */
  margin-bottom: 10px;
  opacity: 0.4;
}
.program_section_one .content .program_one_box_section .icon_section{
  width: 150px;
  height: 150px;
  /* margin: auto; */
  border: 1px solid var(--mainColor);
  border-radius: 100px;
  display: flex;
  justify-content: var(--centerAlign);
  align-items: var(--centerAlign);
  margin-bottom: 30px;
}
.program_section_one .content .program_one_box_section .icon_section i{
  font-size: 75px;
  color: var(--mainColor);
}
/* bachelor */
.bachelor{
  /* background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background: var(--blackColor);
  padding: 200px 0px 100px 0px;
}
.bachelor .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.bachelor_section{
  padding: 100px 0px;
}
.bachelor_section .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.bachelor_section .content p{
  font-size: 20px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
}
.bachelor_section .content .download_form_section{
  text-align: center;
  padding: 10px 0px;
}
.bachelor_section .content .download_form_section a{
  text-decoration: var(--textDecorationNone);
  background: var(--mainColor);
  padding: 20px 30px;
  color: var(--whiteColor);
  font-weight: bold !important;
  border-radius: var(--borderRadius);
}




/* faq */
.faq{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.faq .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.faq_section_one{
  padding: 100px 0px;
}
.faq_section_one .accordion .accordion-item{
  border: none !important;
  padding: 20px;
  margin-bottom: 10px;
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.faq_section_one .accordion .accordion-item h2{
  background: var(--mainColor) !important;
  color: var(--whiteColor);
}
.faq_section_one .accordion .accordion-item h2 button{
  background: var(--mainColor) !important;
  color: var(--whiteColor);
  outline: none !important;
}

/* About page */
.about_us{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about_us .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.about_section_one{
  padding: 100px 0px;
}
.about_section_one .content h2{
  font-size: 130px;
  font-weight: bold !important;
  color: var(--blackColor);
  opacity: 0.1;
  text-align: var(--centerAlign);
}
.about_section_one .content h1{
  font-size: 70px;
  margin-top: -100px;
  font-weight: bold !important;
  color: var(--blackColor);
  text-align: var(--centerAlign);
}
.about_section_one .content p{
  font-size: 18px;
  font-weight: bold !important;
  color: var(--blackColor);
  text-align: var(--centerAlign);
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
}
.mission_vision{
  padding: 100px 0px;
}
.mission_vision .content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.mission_vision .content .mission_box{
  padding: 20px;
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.mission_vision .content .mission_box.vision{
  padding: 20px;
  background: var(--mainColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.mission_vision .content .mission_box h1{
  font-size: 20px;
  font-weight: bold !important;
  color: var(--blackColor);
  /* text-align: var(--centerAlign); */
}
.mission_vision .content .mission_box.vision h1{
  font-size: 20px;
  font-weight: bold !important;
  color: var(--whiteColor);
  /* text-align: var(--centerAlign); */
}
.mission_vision .content .mission_box p{
  font-size: 18px;
  color: var(--blackColor);
  /* text-align: var(--centerAlign); */
}
.mission_vision .content .mission_box.vision p{
  font-size: 18px;
  color: var(--whiteColor);
  /* text-align: var(--centerAlign); */
}

/* Contact page */
.contact{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.contact_section_one{
  padding: 100px 0px;
}
.contact_section_one .content{
  display: grid;
  grid-template-columns: 3fr 5fr;
  grid-gap: 1rem;
}
.contact_section_one .content .left_section .item_section{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: var(--centerAlign);
  border-radius: var(--borderRadius);
}
.contact_section_one .content .left_section .item_section .icon_section{
  width: 80px;
  height: 80px;
  border-radius: 50px;
  /* border: 1px solid var(--blueColor); */
  display: flex;
  justify-content: var(--centerAlign);
  background: var(--mainColor);
  align-items: var(--centerAlign);
}
.contact_section_one .content .left_section .item_section .icon_section i{
  font-size: 30px;
  color: var(--darkGreen);
}
.contact_section_one .content .left_section .item_section .other_content{
  margin-left: 30px;
}
.contact_section_one .content .left_section .item_section .other_content h2{
  color: var(--blackColor);
  font-size: 20px;
  font-weight: bold !important;
}
.contact_section_one .content .right_section{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px 40px;
}
.contact_section_one .content .right_section h1{
  color: var(--blackColor);
  font-size: 30px;
  font-weight: bold !important;
}
.contact_section_one .content .right_section form input{
  color: var(--blackColor);
  font-size: 16px;
  font-weight: bold !important;
  height: 50px;
  width: 100%;
  border: 1px solid var(--mainColor);
  border-radius: var(--borderRadius);
  margin-bottom: 10px;
  padding: 10px;
  outline: none;
}
.contact_section_one .content .right_section form textarea{
  color: var(--blackColor);
  font-size: 16px;
  font-weight: bold !important;
  width: 100%;
  border: 1px solid var(--mainColor);
  border-radius: var(--borderRadius);
  margin-bottom: 10px;
  padding: 10px;
  resize: none;
  outline: none;
}
.contact_section_one .content .right_section form button{
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: bold !important;
  height: 50px;
  /* width: 100%; */
  background: var(--mainColor);
  border: none;
  border-radius: var(--borderRadius);
  padding: 10px 20px;
}


/* career */
.career{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.career .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.career_section{
  padding: 100px 0px;
}
.career_section h2{
  color: var(--blackColor);
  font-size: 135px;
  opacity: 0.1;
  text-align: var(--centerAlign);
  font-weight: bold !important;
}
.career_section .content h1{
  color: var(--blackColor);
  font-size: 50px;
  margin-top: -100px;
  text-align: var(--centerAlign);
  font-weight: bold !important;
  margin-bottom: 50px;
}
.career_section .content .job_item{
  border: 2px solid var(--grayColor);
  padding: 20px;
  margin-bottom: 10px;
}
.career_section .content .job_item p.date_posted{
  color: var(--blackColor);
  opacity: 0.3;
  font-style: italic;
  font-weight: bold !important;
}
.career_section .content .job_item h3{
  color: var(--blackColor);
  font-size: 20px;
  text-align: left;
  font-family: var(--fontFamily);
  font-weight: bold !important;
}
.career_section .content .job_item p.job_decsription{
  color: var(--blackColor);
  font-size: 16px;
  font-weight: bold !important;
  opacity: 0.7;
}
.career_section .content .job_item .read_more_job{
  padding: 20px 0px;
}
.career_section .content .job_item .read_more_job a{
  padding: 20px 30px;
  text-decoration: var(--textDecorationNone);
  color: var(--whiteColor);
  background: var(--mainColor);
  border-radius: var(--borderRadius);
}


/* event */
.event{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.event .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.event_section{
  padding: 100px 0px;
}
.event_section .content .no_event{
  border: 5px dotted var(--grayColor);
  padding: 100px 10px;
  text-align: var(--centerAlign);
  font-weight: bold !important;
  font-size: 30px;
  color: var(--mainColor);
}
.event_section .content .event_item{
  display: flex;
  align-items: var(--centerAlign);
}
.event_section .content .event_item .date_section{
  background: var(--mainColor);
  flex: 1;
  padding: 10px;
  border-radius: var(--borderRadius);
}
.event_section .content .event_item .date_section h2{
  font-size: 30px;
  color: var(--whiteColor);
  font-weight: bold !important;
  margin-bottom: 40px;
}
.event_section .content .event_item .date_section h3{
  font-size: 20px;
  color: var(--whiteColor);
  font-weight: bold !important;
  font-family: var(--fontFamily);
  margin-bottom: 40px;
}
.event_section .content .event_item .right_section{
  flex: 4;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 1rem;
  /* border: 2px solid var(--grayColor); */
  padding: 10px;
}
.event_section .content .event_item .right_section .image_section img{
  height: 200px;
  width: 100%;
  border-radius: var(--borderRadius);
}
.event_section .content .event_item .right_section .description h2{
  font-size: 20px;
  color: var(--blackColor);
  font-weight: bold !important;
  margin-bottom: 10px;
}
.event_section .content .event_item .right_section .description p{
  font-size: 16px;
  color: var(--blackColor);
  font-weight: bold !important;
  margin-bottom: 5px;
}
.event_section .content .event_item .right_section .description .read_more_event a{
  padding: 20px 30px;
  background: var(--darkGreen);
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
  text-decoration: var(--textDecorationNone);
}
.event_section .content .event_item .right_section .description .read_more_event{
  padding: 20px 0px;
}
/* event_details */
.event_details .content .event_title{
  margin-top: -100px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--whiteColor);
  border-left: 5px solid var(--mainColor);
}
.event_details .content .event_title h2{
  font-size: 30px;
  font-weight: bold !important;
  color: var(--blackColor);
}
.event_details .content .event_title h3{
  font-size: 18px;
  font-style: italic;
  font-weight: bold !important;
  color: var(--blackColor);
}
.event_details .content .event_title p{
  font-size: 16px;
  font-weight: bold !important;
  color: var(--blackColor);
}


/* blog */
.blog{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blog .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
.blog_list{
  padding: 100px 0px;
}
.blog_list .content .blog_item{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.blog_list .content .blog_item .other_details{
  padding: 20px;
}
.blog_list .content .blog_item .other_details h1{
  font-size: 20px;
  color: var(--blackColor);
  font-weight: bold !important;
  margin-bottom: 10px;
}
.blog_list .content .no_blog_post{
  border: 5px dotted var(--grayColor);
  padding: 100px 10px;
  text-align: var(--centerAlign);
  font-weight: bold !important;
  font-size: 30px;
  color: var(--mainColor);
}


/* gallery_page */
.gallery_page{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gallery_page .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: var(--centerAlign);
  margin-bottom: 40px;
}
.gallery_section .content{
  padding: 100px 0px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery_section .content h1{
  text-align: var(--centerAlign);
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.gallery_section .content .gallery_outer{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}


/* Mentorship_page */
.Mentorship_page{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
  padding: 200px 0px 100px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Mentorship_page .content h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
  text-align: var(--centerAlign);
  margin-bottom: 40px;
}
.mentorship_section_one{
  background: var(--mainColor);
  padding: 100px 0px;
}
.mentorship_section_one .content h1{
  text-align: var(--centerAlign);
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
}
.mentorship_section_one .content p{
  text-align: var(--centerAlign);
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold !important;
}
.mentorship_section_two{
  padding: 100px 0px;
}
.mentorship_section_two .content{
  margin-bottom: 40px;
}
.mentorship_section_two .content h1{
  text-align: var(--centerAlign);
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.mentorship_section_two .content p{
  text-align: var(--centerAlign);
  font-size: 18px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.mentorship_section_two .content_item{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.mentorship_section_two .content_item .item_listed{
  background: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
}
.mentorship_section_two .content_item .item_listed .icon_section{
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: var(--centerAlign);
  align-items: var(--centerAlign);
  border: 2px solid var(--mainColor);
  border-radius: 50px;
  margin-bottom: 20px;
}
.mentorship_section_two .content_item .item_listed .icon_section i{
  color: var(--blackColor);
  font-size: 50px;
}
.mentorship_section_two .content_item .item_listed h3{
  /* text-align: var(--centerAlign); */
  font-size: 30px;
  color: var(--blackColor);
  font-weight: bold !important;
}
.mentorship_section_two .content_item .item_listed p{
  /* text-align: var(--centerAlign); */
  font-size: 16px;
  opacity: 0.5;
  color: var(--blackColor);
  font-weight: bold !important;
}

.mentorship_section_three{
  /* padding: 100px 0px; */
}
.mentorship_section_three .content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.mentorship_section_three .content .left{
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg2.jpg');
  padding: 300px 0px;
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mentorship_section_three .content .left .content_left{
  display: flex;
  justify-content: var(--centerAlign);
  align-items: var(--centerAlign);
}
.mentorship_section_three .content .left .content_left h1{
  font-size: 50px;
  color: var(--whiteColor);
  font-weight: bold !important;
}
.mentorship_section_three .content .right{
  background: var(--blackColor);
}
.mentorship_section_three .content .right .content_right{
  padding: 200px 50px;
}
.mentorship_section_three .content .right .content_right .first_sect h2{
  font-size: 30px;
  color: var(--whiteColor);
  font-weight: bold !important;
}
.mentorship_section_three .content .right .content_right .first_sect p{
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold !important;
}



/* login_page */
.login_page{
  padding: 100px 0px;
}
.login_page .content h1{
  font-size: 50px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
}
/* .login_page .content p{
  font-size: 16px;
  color: var(--blackColor);
  font-weight: bold !important;
  text-align: center;
  margin-bottom: 40px;
} */
.login_page .content form input{
  width: 100%;
  height: 50px;
  padding: 10px;
  outline: none;
  border-radius: var(--borderRadius);
  border: 2px solid var(--grayColor);
}
.login_page .content form button{
  padding: 10px 20px;
  outline: none;
  margin-top: 10px;
  border: none;
  color: var(--whiteColor);
  font-weight: bold !important;
  border-radius: var(--borderRadius);
  background: var(--mainColor)
}
.login_page .content form ul{
  list-style: none;
  padding-left: 0px;
}
.login_page .content form ul li{
  border: 2px solid var(--redColor);
  padding: 10px;
  color: var(--blackColor);
  font-weight: bold !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .navigation div ul li{
    text-align: var(--centerAlign);
  }
  .hero_section h1{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold;
  }
  .hero_section p{
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: bold;
  }
  .about h2{
    font-size: 100px;
    color: var(--blackColor);
    opacity: 0.1;
    font-weight: bold !important;
  }
  .about .content h1{
    margin-top: -100px;
    color: var(--blackColor);
    font-size: 30px;
    font-weight: bold !important;
  }
  .about_loan .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .about_loan .content .box_item{
    border-left: none;
    text-align: var(--centerAlign);
  }
  .about_loan .content .box_item h2{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .program h3{
    font-size: 70px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    opacity: 0.1;
  }
  .program h1{
    margin-top: -70px;
    color: var(--blackColor);
    font-size: 30px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    margin-bottom: 40px;
  }
  .program .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .program .content .program_box{
    /* background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px; */
    border-left: none;
    border-top-left-radius: 0px;
  }
  .ceo_message .content h1{
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }
  .professional_team_section .content h1{
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }
  .how_to_apply .content{
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
  .how_to_apply .content .colmn_right h3{
    font-size: 70px;
    color: var(--blackColor);
    opacity: 0.1;
    font-weight: bold !important;
  }
  .how_to_apply .content .colmn_right h1{
    margin-top: -70px;
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
    /* font-style: italic; */
  }
  .beneficiary .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
    /* text-align: var(--centerAlign); */
  }
  .footer_section ul li a {
    display:block;
    position:relative;
    width:80px;
    height:80px;
    line-height:100px;
    font-size:40px;
    text-align:center;
    text-decoration:none;
    color:#404040;
    margin: 0 0px;
    transition:.5s;
  }
  .footer_section ul li a span:nth-child(1),
  .footer_section ul li a span:nth-child(3){
    width:0%;
    height:3px;
  }
  .footer_section ul li a span:nth-child(2),
  .footer_section ul li a span:nth-child(4){
    width:0px;
    height:0%;
    background:#404040;
  }

  /* about_us page */
  .about_section_one .content h2{
    font-size: 70px;
  }
  .about_section_one .content h1{
    font-size: 30px;
    margin-top: -70px;
  }
  .about_section_one .content p{
    font-size: 16px;
  }
  .mission_vision .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  /* program page */
  .program_second_section .content{
    border-left: none;
    border-right: none;
    padding: 20px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .program_second_section .content p{
    color: var(--blackColor);
    font-size: 20px;
    font-weight: bold !important
  }
  .program_section_one .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }

  /* loan page */
  .loan_section_two{
    padding: 0px 0px 100px 0px;
  }
  .loan_section_two .content h2{
    font-size: 50px;
    font-weight: bold !important;
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .loan_section_two .content h1{
    font-size: 30px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    color: var(--blackColor);
    margin-top: -70px;
    margin-bottom: 40px;
  }
  .loan_section_two .content p{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .loan_section_three .content h2{
    font-size: 70px;
    font-weight: bold !important;
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .loan_section_three .content h1{
    font-size: 30px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    color: var(--blackColor);
    margin-top: -70px;
    margin-bottom: 40px;
  }

  /* mentorship program */
  .mentorship_section_two .content_item{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .mentorship_section_three .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .mentorship_section_three .content .left{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg2.jpg');
    padding: 100px 0px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mentorship_section_three .content .left .content_left h1{
    font-size: 50px;
    color: var(--whiteColor);
    text-align: var(--centerAlign);
    font-weight: bold !important;
  }
  .mentorship_section_three .content .right .content_right{
    padding: 20px;
  }
  .career_section h2{
    color: var(--blackColor);
    font-size: 70px;
    opacity: 0.1;
    text-align: var(--centerAlign);
    font-weight: bold !important;
  }
  .career_section .content h1{
    color: var(--blackColor);
    font-size: 50px;
    margin-top: -70px;
    text-align: var(--centerAlign);
    font-weight: bold !important;
    margin-bottom: 50px;
  }

  /* contact page */
  .contact_section_one .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .navigation div ul li{
    text-align: var(--centerAlign);
  }
  .hero_section h1{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold;
  }
  .hero_section p{
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: bold;
  }
  .about h2{
    font-size: 100px;
    color: var(--blackColor);
    opacity: 0.1;
    font-weight: bold !important;
  }
  .about .content h1{
    margin-top: -100px;
    color: var(--blackColor);
    font-size: 30px;
    font-weight: bold !important;
  }
  .about_loan .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .about_loan .content .box_item{
    border-left: none;
    text-align: var(--centerAlign);
  }
  .about_loan .content .box_item h2{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .program h3{
    font-size: 70px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    opacity: 0.1;
  }
  .program h1{
    margin-top: -70px;
    color: var(--blackColor);
    font-size: 30px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    margin-bottom: 40px;
  }
  .program .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .program .content .program_box{
    /* background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px; */
    border-left: none;
    border-top-left-radius: 0px;
  }
  .ceo_message .content h1{
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }
  .professional_team_section .content h1{
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }
  .how_to_apply .content{
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
  .how_to_apply .content .colmn_right h3{
    font-size: 70px;
    color: var(--blackColor);
    opacity: 0.1;
    font-weight: bold !important;
  }
  .how_to_apply .content .colmn_right h1{
    margin-top: -70px;
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
    /* font-style: italic; */
  }
  .beneficiary .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
    /* text-align: var(--centerAlign); */
  }
  .footer_section ul li a {
    display:block;
    position:relative;
    width:80px;
    height:80px;
    line-height:100px;
    font-size:40px;
    text-align:center;
    text-decoration:none;
    color:#404040;
    margin: 0 0px;
    transition:.5s;
  }
  .footer_section ul li a span:nth-child(1),
  .footer_section ul li a span:nth-child(3){
    width:0%;
    height:3px;
  }
  .footer_section ul li a span:nth-child(2),
  .footer_section ul li a span:nth-child(4){
    width:0px;
    height:0%;
    background:#404040;
  }

  /* about_us page */
  .about_section_one .content h2{
    font-size: 70px;
  }
  .about_section_one .content h1{
    font-size: 30px;
    margin-top: -70px;
  }
  .about_section_one .content p{
    font-size: 16px;
  }
  .mission_vision .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  /* program page */
  .program_second_section .content{
    border-left: none;
    border-right: none;
    padding: 20px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .program_second_section .content p{
    color: var(--blackColor);
    font-size: 20px;
    font-weight: bold !important
  }
  .program_section_one .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }

  /* loan page */
  .loan_section_two{
    padding: 0px 0px 100px 0px;
  }
  .loan_section_two .content h2{
    font-size: 50px;
    font-weight: bold !important;
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .loan_section_two .content h1{
    font-size: 30px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    color: var(--blackColor);
    margin-top: -50px;
    margin-bottom: 40px;
  }
  .loan_section_two .content p{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .loan_section_three .content h2{
    font-size: 70px;
    font-weight: bold !important;
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .loan_section_three .content h1{
    font-size: 30px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    color: var(--blackColor);
    margin-top: -70px;
    margin-bottom: 40px;
  }

  /* mentorship program */
  .mentorship_section_two .content_item{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
  .mentorship_section_three .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .mentorship_section_three .content .left{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg2.jpg');
    padding: 100px 0px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mentorship_section_three .content .left .content_left h1{
    font-size: 50px;
    color: var(--whiteColor);
    text-align: var(--centerAlign);
    font-weight: bold !important;
  }
  .mentorship_section_three .content .right .content_right{
    padding: 20px;
  }
  .career_section h2{
    color: var(--blackColor);
    font-size: 70px;
    opacity: 0.1;
    text-align: var(--centerAlign);
    font-weight: bold !important;
  }
  .career_section .content h1{
    color: var(--blackColor);
    font-size: 50px;
    margin-top: -70px;
    text-align: var(--centerAlign);
    font-weight: bold !important;
    margin-bottom: 50px;
  }

  /* contact page */
  .contact_section_one .content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .navigation{
    background: var(--whiteColor);
  }
  .navigation div a.navbar-brand{
    font-size: 20px;
    font-weight: bold !important;
    color: var(--blackColor);
  }
  .navigation div ul li a.active{
    border-bottom: 3px solid var(--greenColor);
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .navigation div ul li a {
    background-image: linear-gradient(
      to right,
      var(--mainColor),
      var(--mainColor) 50%,
      #000 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
  }

  .navigation div ul li a:before{
    content: '';
    background: var(--mainColor);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
  }

  .navigation div ul li a:hover {
   background-position: 0;
  }

  .navigation div ul li a:hover::before{
    width: 100%;
  }
  .navigation div ul li ul li{
    padding: 0px 10px;
  }


  h1, h2, h3{
    font-family: var(--fontFamily)
  }
  .hero_section{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero_section h1{
    font-size: 70px;
    color: var(--whiteColor);
    font-weight: bold;
  }
  .hero_section p{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold;
  }
  .hero_section .content .application_form_request{
    padding: 20px 0px;
  }
  .hero_section .content .application_form_request a{
    padding: 20px 30px;
    color: var(--whiteColor);
    border-radius: var(--borderRadius);
    background: var(--mainColor);
    text-decoration: var(--textDecorationNone);
  }

  /* about */
  .about{
    padding: 100px 0px;
    text-align: var(--centerAlign)
  }
  .about h2{
    font-size: 150px;
    color: var(--blackColor);
    opacity: 0.1;
    font-weight: bold !important;
  }
  .about .content h1{
    margin-top: -130px;
    color: var(--blackColor);
    font-size: 70px;
    font-weight: bold !important;
  }
  .about .content p{
    color: var(--blackColor);
    font-size: 18px;
  }
  .content .read_more_button{
    padding: 20px 0px;
  }
  .read_more_button a{
    padding: 20px 30px;
    color: var(--whiteColor);
    border-radius: var(--borderRadius);
    background: var(--mainColor);
    text-decoration: var(--textDecorationNone);
  }

  .about_loan{
    background: var(--grayColor);
    padding: 100px 0px;
  }
  .about_loan .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .about_loan .content .box_item{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    /* border-radius: var(--borderRadius); */
    border-left: 5px solid var(--mainColor);
  }
  .about_loan .content .box_item h2{
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .about_loan .content .box_item p{
    font-size: 18px;
    color: var(--blackColor);
  }

  /* program */
  .program{
    padding: 100px 0px
  }
  .program h3{
    font-size: 130px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    opacity: 0.1;
  }
  .program h1{
    margin-top: -100px;
    color: var(--blackColor);
    font-size: 70px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    margin-bottom: 40px;
  }
  .program .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .program .content .program_box{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    border-left: 2px solid var(--mainColor);
    border-top-left-radius: 100px;
  }
  .program .content .program_box .program_icon{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--mainColor);
    display: flex;
    justify-content: var(--centerAlign);
    align-items: var(--centerAlign);
    margin-bottom: 20px;
  }
  .program .content .program_box .program_icon i{
    font-size: 50px;
    color: var(--mainColor);
  }
  .program .content .program_box h2{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .program .read_more_button{
    margin-top: 40px;
    text-align: var(--centerAlign);
  }



  /* quotation */
  .quotation{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .quotation .content h1{
    font-size: 70px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }
  .quotation .content h2{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold !important;
    font-style: italic;
  }
  .divider_horizontal{
    height: 5px;
    width: 25%;
    background: var(--mainColor);
    margin-bottom: 10px;
  }
  .quotation .content p{
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }


  /* ceo_message */
  .ceo_message{
    padding: 100px 0px;
  }
  .ceo_message .content{
    text-align: var(--centerAlign);
  }
  .ceo_message .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }
  .ceo_message .content img{
    border-radius: 50%;
    height: 180px;
    width: 180px;
    margin-bottom: 40px;
  }
  .ceo_message .content p{
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }

  /* professional_team_section */
  .professional_team_section{
    padding: 100px 0px;
    background: var(--grayColor);
  }
  .professional_team_section .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }
  .professional_team_section .content p{
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
  }

  /* how_to_apply */
  .how_to_apply .content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .how_to_apply .content .colmn_left{
    background-image:url('../images/bg2.jpg');
    padding: 200px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .how_to_apply .content .colmn_right{
    padding: 100px 50px;
    /* text-align: var(--centerAlign); */
  }
  .how_to_apply .content .colmn_right h3{
    font-size: 130px;
    color: var(--blackColor);
    opacity: 0.1;
    font-weight: bold !important;
  }
  .how_to_apply .content .colmn_right h1{
    margin-top: -90px;
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    /* font-style: italic; */
  }
  .how_to_apply .content .colmn_right h2{
    font-size: 25px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }
  .how_to_apply .content .colmn_right .modal .modal-content{
    background: var(--mainColor);
    padding: 30px;
  }
  .how_to_apply .content .colmn_right .modal form label{
    display: block;
    font-size: 18px;
    color: var(--whiteColor) !important;
    margin-bottom: 10px;
    font-weight: bold !important;
  }
  .how_to_apply .content .colmn_right .modal form input[type="text"]{
    display: block;
    width: 100%;
    height: 50px;
    background: var(--whiteColor);
    font-size: 16px;
    font-weight: bold !important;
    color: var(--blackColor);
    border: none;
    padding: 10px;
    border-radius: 0px;
    outline: none;
  }
  .how_to_apply .content .colmn_right .modal form input[type="email"]{
    display: block;
    width: 100%;
    height: 50px;
    background: var(--whiteColor);
    font-size: 16px;
    font-weight: bold !important;
    color: var(--blackColor);
    border: none;
    padding: 10px;
    border-radius: 0px;
    outline: none;
  }
  .how_to_apply .content .colmn_right .modal form select{
    display: block;
    width: 100%;
    height: 50px;
    background: var(--whiteColor);
    font-size: 16px;
    font-weight: bold !important;
    color: var(--blackColor);
    border: none;
    padding: 10px;
    border-radius: 0px;
    outline: none;
  }
  .how_to_apply .content .colmn_right .modal form .this_phone_section_group{
    margin-bottom: 10px;
  }
  .how_to_apply .content .colmn_right .modal form .phone_section{
    display: flex;
  }
  .how_to_apply .content .colmn_right .modal form .action_button_ button.close_btn{
    height: 50px;
    padding: 10px;
    color: var(--whiteColor);
  }
  .how_to_apply .content .colmn_right .modal form .action_button_ button.submit_btn{
    height: 50px;
    padding: 10px;
    background: var(--blackColor);
    color: var(--whiteColor);
  }

  /* testimonial */
  .testimonial{
    padding: 100px 0px;
  }
  .testimonial .content{
    text-align: var(--centerAlign);
  }
  .testimonial .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    margin-bottom: 20px;
  }
  .testimonial .content p{
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
  }


  /* beneficiary */
  .beneficiary{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .beneficiary h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .beneficiary .content{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem;
    /* text-align: var(--centerAlign); */
  }
  .beneficiary .content .beneficiary_counter{
    text-align: var(--centerAlign);
  }
  .beneficiary .content .beneficiary_counter .image_section{
    margin: auto;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: var(--centerAlign);
    align-items: var(--centerAlign);
    border-radius: 100px;
    border: 1px solid var(--mainColor);
  }
  .beneficiary .content .beneficiary_counter .image_section i{
    font-size: 75px;
    color: var(--mainColor);
    transition: 0.3s ease-in-out;
  }
  .beneficiary .content .beneficiary_counter .image_section:hover i{
    font-size: 75px;
    color: var(--blueColor);
  }
  .beneficiary .content .beneficiary_counter h2{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 10px;
  }
  .beneficiary .content .beneficiary_counter p{
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 20px;
  }


  /* loan_page */
  .loan_page{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .loan_page .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    /* margin-bottom: 10px; */
  }
  .loan_section_one{
    padding: 100px 0px;
  }
  .loan_section_one .content{
    text-align: var(--centerAlign);
  }
  .loan_section_one .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 10px;
  }
  .loan_section_one .content p{
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 20px;
  }

  .tmln {
  	--bdc: hsl(200, 40%, 60%);
  	--bdc-a: hsl(200, 40%, 40%);
  	--bdc-h: hsl(200, 30%, 90%);
  	--bgc: hsl(200, 40%, 80%);
  	--bdrs: 0.25rem;
  	--bdw: 2px;
  	--bullet-bdrs: 50%;
  	--bullet-sz: 1.2em;
  	--bullet-sz-a: 6px;
  	--c: hsl(200, 40%, 1%);
  	--box-item-bdrs: 0.25rem;
  	--box-item-bgc: rgba(255, 255, 255, .15);
  	--box-item-dark-bgc: hsl(200, 40%, 40%);
  	--box-item-dark-c: hsl(200, 40%, 95%);
  	--box-item-lght-bgc: hsl(200, 30%, 90%);
  	--gap: 1rem;
  	--scroll-bgc: hsl(200, 40%, 85%);
  	--scroll-tmb-bgc: hsl(200, 40%, 70%);
  	--scroll-w: 10px;
  	--trsdu: .3s;
  	--trstf: ease-out;

  	/* Modifier-specific properties */
  	--sl-mbe: 2em;
  	--bi-miw: 85%;
  	--bi-miw-tablet: 30%;

  	background-color: var(--bgc, transparent);
  	border-radius: var(--bdrs, 0);
  	color: var(--c, currentColor);
  	font-family: var(--ff, ui-sans-serif, system-ui, sans-serif);
  	padding-block: var(--gap) 0;
  	padding-bottom: var(--gap); /* Safari */
  	padding-top: var(--gap); /* Safari */
  	width: var(--w, 100%);
  	-webkit-tap-highlight-color: transparent;
  }

  .tmln:not(.tmln--hr) {
  	padding-inline-start: var(--gap);
  }

  .tmln__header {
  	margin-block-start: 0;
  }

  .tmln__item {
  	color: inherit;
  	display: block;
  	margin-block-end: var(--mbe, var(--gap));
  	padding-inline-start: calc(var(--gap) + var(--bullet-sz));
  	position: relative;
  	text-decoration: none;
  }

  /* Circle */
  .tmln__item::after {
  	border: var(--bdw) solid var(--bdc);
  	border-radius: var(--bullet-bdrs);
  	box-sizing: border-box;
  	content: "";
  	block-size: var(--bullet-sz);
  	inline-size: var(--bullet-sz);
  	inset-block-start: 0;
  	inset-inline-start: 0;
  	position: absolute;
  	transition: all var(--trsdu) var(--trstf);
  }

  /* Line */
  .tmln__item::before {
  	background-color: var(--bdc);
  	content: "";
  	block-size: calc(100% + var(--mbe, var(--gap)) - var(--bullet-sz));
  	inline-size: var(--bdw);
  	inset-block-start: var(--bullet-sz);
  	inset-inline-start: calc((var(--bullet-sz) - var(--bdw)) / 2);
  	position: absolute;
  }

  /* Hide last line */
  .tmln:not(.tmln--hr) .tmln__item:last-child::before {
  	display: none;
  }

  .tmln__item-headline {
  	margin-block: 0;
  }

  .tmln__list {
  	display: flex;
  	flex-direction: column;
  	margin: 0;
  	padding-block: 0 var(--gap);
  	padding-inline: 0;
  }

  /*
  ====================
  Modifiers and States
  ====================
  */

  /* Active Circle */
  .tmln__item--active::after {
  	--bdc: var(--bdc-a);
  	box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bgc, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc-a);
  	background-color: var(--bdc-a);
  }

  /* :focus, :focus-within, :focus-visible */
  .tmln__item--active:focus-visible::after,
  .tmln__item--active:focus-within::after {
  	box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bdc-h, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
  }

  .tmln__item--active [data-title],
  .tmln__item:focus-visible [data-title] {
  	text-shadow: 0.75px 0px 0px currentColor;
  }

  .tmln__item:not(.tmln__item--active):focus-visible::after,
  .tmln__item:not(.tmln__item--active):focus-within::after {
  	background-color: var(--bdc-h);
  	box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bgc, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
  }

  .tmln--box .tmln__item:focus-within {
  	box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .tmln__item:focus-visible {
  	outline: none;
  }

  .tmln__item:focus-visible [data-title],
  .tmln__item:focus-within a {
  	outline: 1px dotted currentColor;
  	outline-offset: 6px;
  }

  /* Horizontal */
  .tmln--hr .tmln__header {
  	margin-inline-start: var(--gap);
  }

  .tmln--hr .tmln__list {
  	flex-direction: row;
  	flex-wrap: nowrap;
  	overflow-x: auto;
  	padding-block-start: var(--bullet-sz-a); /* Add room for box-shadow transition in horizontal mode */
  	padding-inline-start: var(--gap);
  	scrollbar-width: none;
  	scroll-snap-type: x mandatory;
  }

  .tmln--hr .tmln__item {
  	align-self: flex-start;
  	margin-block-end: 0;
  	min-width: var(--miw, 6rem);
  	padding-block-start: calc(var(--bullet-sz) + var(--gap));
  	padding-inline-end: var(--gap);
  	padding-inline-start: 0;
  	scroll-snap-align: start;
  	scroll-margin-inline-start: var(--gap);
  	scroll-margin-left: var(--gap); /* Safari */
  }

  .tmln--hr .tmln__item::before {
  	block-size: var(--bdw);
  	inline-size: calc(100% - var(--bullet-sz));
  	inset-block-start: calc((var(--bullet-sz) - var(--bdw)) / 2);
  	inset-inline-start: calc(0% + var(--bullet-sz));
  }

  /* Item Box */
  .tmln--box .tmln__item {
  	background-color: var(--box-item-bgc);
  	border-radius: var(--box-item-bdrs);
  	margin-block-end: 0;
  	margin-inline-start: calc(var(--bullet-sz) + var(--gap));
  	padding: var(--gap);
  	transition: box-shadow var(--trsdu) var(--trstf);
  }

  .tmln--box .tmln__item [data-title] {
  	display: block;
  	font-size: small;
  	text-transform: uppercase;
  }

  .tmln--box:not(.tmln--hr) .tmln__item::after {
  	inset-inline-start: calc(0px - var(--bullet-sz) - var(--gap));
  }

  .tmln--box:not(.tmln--hr) .tmln__item::before {
  	inset-inline-start: calc(0px - var(--gap) - ((var(--bullet-sz) + var(--bdw)) / 2));
  }

  .tmln--box .tmln__item--bg-dark {
  	background-color: var(--box-item-dark-bgc);
  	color: var(--box-item-dark-c);
  }

  .tmln--box:not(.tmln--hr) .tmln__item--bg-dark a {
  	outline-color: var(--box-item-dark-bgc);
  }

  .tmln--box .tmln__item--bg-lght {
  	background-color: var(--box-item-lght-bgc);
  }

  .tmln--box .tmln__list {
  	gap: var(--gap);
  	padding-inline-end: var(--gap);
  }

  /* Item Box AND Horizontal */
  .tmln--box.tmln--hr .tmln__item {
  	--miw: var(--bi-miw);
  	margin-block-end: 0;
  	margin-block-start: calc(var(--bullet-sz) + var(--gap));
  	margin-inline-start: 0;
  }

  .tmln--box.tmln--hr .tmln__item::after {
  	inset-block-start: calc(0px - var(--bullet-sz) - var(--gap));
  }
  .tmln--box.tmln--hr .tmln__item::before {
  	inset-block-start: calc(0px - var(--gap) - ((var(--bullet-sz) + var(--bdw)) / 2));
  	inline-size: calc(100% - var(--bullet-sz) + var(--gap));
  }

  /* Single Line, center text to bullet */
  .tmln--sl .tmln__item {
  	--mbe: var(--sl-mbe, var(--gap));
  	line-height: var(--bullet-sz);
  }

  /* Media Queries */

  /* :hover */
  @media (hover: hover) {
  	.tmln__item--active:hover::after {
  		box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bdc-h, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
  	}
  	.tmln__item:hover [data-title] {
  		text-shadow: 0.75px 0px 0px currentColor;
  	}
  	.tmln__item:not(.tmln__item--active):hover::after {
  		background-color: var(--bdc-h);
  		box-shadow: 0 0 0 calc(var(--bullet-sz-a) - var(--bdw)) var(--bgc, #FFF), 0 0 0 var(--bullet-sz-a) var(--bdc);
  	}
  	.tmln--box .tmln__item:hover {
  		box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  	}
  }

  @media (min-width: 768px) {
  	.tmln--box.tmln--hr .tmln__item {
  		--miw: var(--bi-miw-tablet);
  	}
  }

  /* Show scrollbars on devices without touch  */
  @media (pointer: fine) {
  	.tmln--hr {
  		/* Add space between scrollbar and bottom of container */
  		padding-block-end: var(--gap);
  	}
  	.tmln--hr .tmln__list {
  		scrollbar-width: var(--scroll-w);
  	}
  	.tmln--hr .tmln__list {
  		scrollbar-color: var(--scroll-tmb-bgc) var(--scroll-bgc);
  		scrollbar-width: thin;
  	}
  	.tmln--hr .tmln__list::-webkit-scrollbar {
  		background: var(--scroll-bgc);
  		height: var(--scroll-w);
  		width: var(--scroll-w);
  	}
  	.tmln--hr .tmln__list::-webkit-scrollbar-button {
      background: var(--bgc);
  	}
  	.tmln--hr .tmln__list::-webkit-scrollbar-thumb {
  		/* Hide scrollbar-button-area, so scrollbar appears smaller than container */
  		background-color: var(--scroll-tmb-bgc);
  	}
  }

  /*
  		body {
  			font: 100% / 1.5 ui-sans-serif, system-ui, sans-serif;
  			margin: 0;
  			padding: max(env(safe-area-inset-top), 0.75rem)
  				max(env(safe-area-inset-right), 0.75rem)
  				max(env(safe-area-inset-bottom), 0.75rem)
  				max(env(safe-area-inset-left), 0.75rem);
  		}
  		body * {
  			box-sizing: border-box;
  		}
  		html {
  			scroll-behavior: smooth;
  		}
  		.tmln__item a {
  			color: currentColor;
  		}

  		.block-link {
  			inset: 0;
  			overflow: hidden;
  			position: absolute;
  			text-indent: 200%;
  			white-space: nowrap;
  		} */
  .loan_section_two{
    padding: 100px 0px;
  }
  .loan_section_two .content{
    text-align: var(--centerAlign);
  }
  .loan_section_two .content h2{
    font-size: 130px;
    font-weight: bold !important;
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .loan_section_two .content h1{
    font-size: 70px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    color: var(--blackColor);
    margin-top: -200px;
    margin-bottom: 40px;
  }
  .loan_section_two .content p{
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .loan_section_three{
    padding: 0px 0px 100px 0px;
  }
  .loan_section_three .content{
    text-align: var(--centerAlign);
  }
  .loan_section_three .content h2{
    font-size: 130px;
    font-weight: bold !important;
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .loan_section_three .content h1{
    font-size: 50px;
    font-weight: bold !important;
    text-align: var(--centerAlign);
    color: var(--blackColor);
    margin-top: -100px;
    margin-bottom: 40px;
  }
  .loan_section_three .content p{
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
  }



  /* footer_section */
  .footer_section{
    text-align: var(--centerAlign);
    padding: 50px 0px;
    background: var(--darkGreen);
  }
  .footer_section .content p{
    color: var(--whiteColor);
    font-weight: bold !important;
    font-size: 18px;
  }
  .footer_section .social_media{
    padding: 20px 0px;
  }
  .footer_section ul {
    /* position:absolute; */
    /* top:50%;
    left:50%; */
    text-align: var(--centerAlign);
    /* transform:translate(-50%,-50%); */
    /* margin:0; */
    padding:0;
    display:flex;
    justify-content: var(--centerAlign);
  }
  .footer_section ul li {
    list-style:none;
  }
  .footer_section ul li a {
    display:block;
    position:relative;
    width:100px;
    height:100px;
    line-height:100px;
    font-size:40px;
    text-align:center;
    text-decoration:none;
    color:#404040;
    margin: 0 30px;
    transition:.5s;
  }
  .footer_section ul li a span {
    position:absolute;
    transition: transform .5s;
  }
  .footer_section ul li a span:nth-child(1),
  .footer_section ul li a span:nth-child(3){
    width:100%;
    height:3px;
    background:#404040;
  }
  .footer_section ul li a span:nth-child(1) {
    top:0;
    left:0;
    transform-origin: right;
  }
  .footer_section ul li a:hover span:nth-child(1) {
    transform: scaleX(0);
    transform-origin: left;
    transition:transform .5s;
  }

  .footer_section ul li a span:nth-child(3) {
    bottom:0;
    left:0;
    transform-origin: left;
  }
  .footer_section ul li a:hover span:nth-child(3) {
    transform: scaleX(0);
    transform-origin: right;
    transition:transform .5s;
  }

  .footer_section ul li a span:nth-child(2),
  .footer_section ul li a span:nth-child(4){
    width:3px;
    height:100%;
    background:#404040;
  }
  .footer_section ul li a span:nth-child(2) {
    top:0;
    left:0;
    transform:scale(0);
    transform-origin: bottom;
  }
  .footer_section ul li a:hover span:nth-child(2) {
    transform: scale(1);
    transform-origin: top;
    transition:transform .5s;
  }
  .footer_section ul li a span:nth-child(4) {
    top:0;
    right:0;
    transform:scale(0);
    transform-origin: top;
  }
  .footer_section ul li a:hover span:nth-child(4) {
    transform: scale(1);
    transform-origin: bottom;
    transition:transform .5s;
  }

  .facebook:hover {
    color: #3b5998;
  }
  .facebook:hover span {
    background: #3b5998;
  }
  .twitter:hover {
    color: #1da1f2;
  }
  .twitter:hover span {
    background: #1da1f2;
  }
  .instagram:hover {
    color: #c32aa3;
  }
  .instagram:hover span {
    background: #c32aa3;
  }
  .google:hover {
    color: #dd4b39;
  }
  .google:hover span {
    background: #dd4b39;
  }
  ul li a .twitter {
    color: #1da1f2;
  }
  ul li a:hover:nth-child(3) {
    color: #c32aa3;
  }
  ul li a:hover:nth-child(4) {
    color: #dd4b39;
  }




  /* program page */
  .program_top{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .program_top .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .program_second_section{
    padding: 50px 0px;
  }
  .program_second_section .content{
    border-left: 5px solid var(--mainColor);
    border-right: 5px solid var(--mainColor);
    padding: 50px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .program_second_section .content p{
    color: var(--blackColor);
    font-size: 30px;
    font-weight: bold !important
  }

  .program_eligibility{
    padding: 100px 0px;
  }
  .program_eligibility .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .program_eligibility ul{
    width: min(100%, 60rem);
    overflow: hidden;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 4rem);
    list-style: none;
    perspective: 1000px;
    display: grid;
    row-gap: 0.5rem;
  }
  .program_eligibility ul li.card{
    position: relative;
    padding-block: 1.5rem;
    padding-inline: 2rem;
    background-color: var(--bg-color);
    background-image: linear-gradient(to right, rgb(0 0 0 / .15), transparent);
    transform-style: preserve-3d;
    color: var(--color);

    display: grid;
    grid-template: 'icon' 'title' 'content';
    row-gap: 0.5rem;
    column-gap: 2rem;
  }
  .program_eligibility ul li.card::before, ul li.card::after {
    --side-rotate: 60deg;
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    transform-origin: calc(50% - (50% * var(--ry))) 50%  ;
    transform: rotateY(calc(var(--side-rotate) * var(--ry)));
    background-color: inherit;
    background-image: linear-gradient(calc(90deg * var(--ry)), rgb(0 0 0 / .25), rgb(0 0 0 / .5));
  }
  .program_eligibility ul li.card::before {--ry: -1; right: 100% }
  .program_eligibility ul li.card::after {--ry: 1; left: 100% }

  .program_eligibility ul li.card .icon {
    grid-area: icon;
    display: grid;
    place-items: center;
  }
  .program_eligibility ul li.card .icon i {
    font-size: 2rem;
  }
  .program_eligibility ul li.card .title{
    grid-area: title;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
  }
  .program_eligibility ul li.card .content{
    grid-area: content;
  }

  @media (min-width: 30rem){
    .program_eligibility ul li.card {
      grid-template: 'icon title' 'icon content';
      text-align: left;
    }
    .program_eligibility ul li.card .title { text-align: left }
  }

  .program_section_one{
    padding: 100px 0px;
  }
  .program_section_one .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .program_section_one .content .program_one_box_section{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    border-radius: var(borderRadius);
  }
  .program_section_one .content .program_one_box_section h2{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
    /* text-align: center; */
    margin-bottom: 10px;
  }
  .program_section_one .content .program_one_box_section p{
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
    /* text-align: center; */
    margin-bottom: 10px;
    opacity: 0.4;
  }
  .program_section_one .content .program_one_box_section .icon_section{
    width: 150px;
    height: 150px;
    /* margin: auto; */
    border: 1px solid var(--mainColor);
    border-radius: 100px;
    display: flex;
    justify-content: var(--centerAlign);
    align-items: var(--centerAlign);
    margin-bottom: 30px;
  }
  .program_section_one .content .program_one_box_section .icon_section i{
    font-size: 75px;
    color: var(--mainColor);
  }
  /* bachelor */
  .bachelor{
    /* background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    background: var(--blackColor);
    padding: 200px 0px 100px 0px;
  }
  .bachelor .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .bachelor_section{
    padding: 100px 0px;
  }
  .bachelor_section .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .bachelor_section .content p{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
  }
  .bachelor_section .content .download_form_section{
    text-align: center;
    padding: 10px 0px;
  }
  .bachelor_section .content .download_form_section a{
    text-decoration: var(--textDecorationNone);
    background: var(--mainColor);
    padding: 20px 30px;
    color: var(--whiteColor);
    font-weight: bold !important;
    border-radius: var(--borderRadius);
  }




  /* faq */
  .faq{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .faq .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .faq_section_one{
    padding: 100px 0px;
  }
  .faq_section_one .accordion .accordion-item{
    border: none !important;
    padding: 20px;
    margin-bottom: 10px;
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .faq_section_one .accordion .accordion-item h2{
    background: var(--mainColor) !important;
    color: var(--whiteColor);
  }
  .faq_section_one .accordion .accordion-item h2 button{
    background: var(--mainColor) !important;
    color: var(--whiteColor);
    outline: none !important;
  }

  /* About page */
  .about_us{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .about_us .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .about_section_one{
    padding: 100px 0px;
  }
  .about_section_one .content h2{
    font-size: 130px;
    font-weight: bold !important;
    color: var(--blackColor);
    opacity: 0.1;
    text-align: var(--centerAlign);
  }
  .about_section_one .content h1{
    font-size: 70px;
    margin-top: -100px;
    font-weight: bold !important;
    color: var(--blackColor);
    text-align: var(--centerAlign);
  }
  .about_section_one .content p{
    font-size: 18px;
    font-weight: bold !important;
    color: var(--blackColor);
    text-align: var(--centerAlign);
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
  }
  .mission_vision{
    padding: 100px 0px;
  }
  .mission_vision .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .mission_vision .content .mission_box{
    padding: 20px;
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .mission_vision .content .mission_box.vision{
    padding: 20px;
    background: var(--mainColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .mission_vision .content .mission_box h1{
    font-size: 20px;
    font-weight: bold !important;
    color: var(--blackColor);
    /* text-align: var(--centerAlign); */
  }
  .mission_vision .content .mission_box.vision h1{
    font-size: 20px;
    font-weight: bold !important;
    color: var(--whiteColor);
    /* text-align: var(--centerAlign); */
  }
  .mission_vision .content .mission_box p{
    font-size: 18px;
    color: var(--blackColor);
    /* text-align: var(--centerAlign); */
  }
  .mission_vision .content .mission_box.vision p{
    font-size: 18px;
    color: var(--whiteColor);
    /* text-align: var(--centerAlign); */
  }

  /* Contact page */
  .contact{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .contact .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .contact_section_one{
    padding: 100px 0px;
  }
  .contact_section_one .content{
    display: grid;
    grid-template-columns: 3fr 5fr;
    grid-gap: 1rem;
  }
  .contact_section_one .content .left_section .item_section{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: var(--centerAlign);
    border-radius: var(--borderRadius);
  }
  .contact_section_one .content .left_section .item_section .icon_section{
    width: 80px;
    height: 80px;
    border-radius: 50px;
    /* border: 1px solid var(--blueColor); */
    display: flex;
    justify-content: var(--centerAlign);
    background: var(--mainColor);
    align-items: var(--centerAlign);
  }
  .contact_section_one .content .left_section .item_section .icon_section i{
    font-size: 30px;
    color: var(--darkGreen);
  }
  .contact_section_one .content .left_section .item_section .other_content{
    margin-left: 30px;
  }
  .contact_section_one .content .left_section .item_section .other_content h2{
    color: var(--blackColor);
    font-size: 20px;
    font-weight: bold !important;
  }
  .contact_section_one .content .right_section{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px 40px;
  }
  .contact_section_one .content .right_section h1{
    color: var(--blackColor);
    font-size: 30px;
    font-weight: bold !important;
  }
  .contact_section_one .content .right_section form input{
    color: var(--blackColor);
    font-size: 16px;
    font-weight: bold !important;
    height: 50px;
    width: 100%;
    border: 1px solid var(--mainColor);
    border-radius: var(--borderRadius);
    margin-bottom: 10px;
    padding: 10px;
    outline: none;
  }
  .contact_section_one .content .right_section form textarea{
    color: var(--blackColor);
    font-size: 16px;
    font-weight: bold !important;
    width: 100%;
    border: 1px solid var(--mainColor);
    border-radius: var(--borderRadius);
    margin-bottom: 10px;
    padding: 10px;
    resize: none;
    outline: none;
  }
  .contact_section_one .content .right_section form button{
    color: var(--whiteColor);
    font-size: 16px;
    font-weight: bold !important;
    height: 50px;
    /* width: 100%; */
    background: var(--mainColor);
    border: none;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }


  /* career */
  .career{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .career .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .career_section{
    padding: 100px 0px;
  }
  .career_section h2{
    color: var(--blackColor);
    font-size: 135px;
    opacity: 0.1;
    text-align: var(--centerAlign);
    font-weight: bold !important;
  }
  .career_section .content h1{
    color: var(--blackColor);
    font-size: 50px;
    margin-top: -100px;
    text-align: var(--centerAlign);
    font-weight: bold !important;
    margin-bottom: 50px;
  }
  .career_section .content .job_item{
    border: 2px solid var(--grayColor);
    padding: 20px;
    margin-bottom: 10px;
  }
  .career_section .content .job_item p.date_posted{
    color: var(--blackColor);
    opacity: 0.3;
    font-style: italic;
    font-weight: bold !important;
  }
  .career_section .content .job_item h3{
    color: var(--blackColor);
    font-size: 20px;
    text-align: left;
    font-family: var(--fontFamily);
    font-weight: bold !important;
  }
  .career_section .content .job_item p.job_decsription{
    color: var(--blackColor);
    font-size: 16px;
    font-weight: bold !important;
    opacity: 0.7;
  }
  .career_section .content .job_item .read_more_job{
    padding: 20px 0px;
  }
  .career_section .content .job_item .read_more_job a{
    padding: 20px 30px;
    text-decoration: var(--textDecorationNone);
    color: var(--whiteColor);
    background: var(--mainColor);
    border-radius: var(--borderRadius);
  }


  /* event */
  .event{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .event .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .event_section{
    padding: 100px 0px;
  }
  .event_section .content .no_event{
    border: 5px dotted var(--grayColor);
    padding: 100px 10px;
    text-align: var(--centerAlign);
    font-weight: bold !important;
    font-size: 30px;
    color: var(--mainColor);
  }
  .event_section .content .event_item{
    display: flex;
    align-items: var(--centerAlign);
  }
  .event_section .content .event_item .date_section{
    background: var(--mainColor);
    flex: 1;
    padding: 10px;
    border-radius: var(--borderRadius);
  }
  .event_section .content .event_item .date_section h2{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold !important;
    margin-bottom: 40px;
  }
  .event_section .content .event_item .date_section h3{
    font-size: 20px;
    color: var(--whiteColor);
    font-weight: bold !important;
    font-family: var(--fontFamily);
    margin-bottom: 40px;
  }
  .event_section .content .event_item .right_section{
    flex: 4;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 1rem;
    /* border: 2px solid var(--grayColor); */
    padding: 10px;
  }
  .event_section .content .event_item .right_section .image_section img{
    height: 200px;
    width: 100%;
    border-radius: var(--borderRadius);
  }
  .event_section .content .event_item .right_section .description h2{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
    margin-bottom: 10px;
  }
  .event_section .content .event_item .right_section .description p{
    font-size: 16px;
    color: var(--blackColor);
    font-weight: bold !important;
    margin-bottom: 5px;
  }
  .event_section .content .event_item .right_section .description .read_more_event a{
    padding: 20px 30px;
    background: var(--darkGreen);
    color: var(--whiteColor);
    border-radius: var(--borderRadius);
    text-decoration: var(--textDecorationNone);
  }
  .event_section .content .event_item .right_section .description .read_more_event{
    padding: 20px 0px;
  }
  /* event_details */
  .event_details .content .event_title{
    margin-top: -100px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--whiteColor);
    border-left: 5px solid var(--mainColor);
  }
  .event_details .content .event_title h2{
    font-size: 30px;
    font-weight: bold !important;
    color: var(--blackColor);
  }
  .event_details .content .event_title h3{
    font-size: 18px;
    font-style: italic;
    font-weight: bold !important;
    color: var(--blackColor);
  }
  .event_details .content .event_title p{
    font-size: 16px;
    font-weight: bold !important;
    color: var(--blackColor);
  }


  /* blog */
  .blog{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .blog .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  .blog_list{
    padding: 100px 0px;
  }
  .blog_list .content .blog_item{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .blog_list .content .blog_item .other_details{
    padding: 20px;
  }
  .blog_list .content .blog_item .other_details h1{
    font-size: 20px;
    color: var(--blackColor);
    font-weight: bold !important;
    margin-bottom: 10px;
  }
  .blog_list .content .no_blog_post{
    border: 5px dotted var(--grayColor);
    padding: 100px 10px;
    text-align: var(--centerAlign);
    font-weight: bold !important;
    font-size: 30px;
    color: var(--mainColor);
  }


  /* gallery_page */
  .gallery_page{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .gallery_page .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
    margin-bottom: 40px;
  }
  .gallery_section .content{
    padding: 100px 0px;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery_section .content h1{
    text-align: var(--centerAlign);
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .gallery_section .content .gallery_outer{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }


  /* Mentorship_page */
  .Mentorship_page{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg1.jpg');
    padding: 200px 0px 100px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Mentorship_page .content h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
    text-align: var(--centerAlign);
    margin-bottom: 40px;
  }
  .mentorship_section_one{
    background: var(--mainColor);
    padding: 100px 0px;
  }
  .mentorship_section_one .content h1{
    text-align: var(--centerAlign);
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }
  .mentorship_section_one .content p{
    text-align: var(--centerAlign);
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }
  .mentorship_section_two{
    padding: 100px 0px;
  }
  .mentorship_section_two .content{
    margin-bottom: 40px;
  }
  .mentorship_section_two .content h1{
    text-align: var(--centerAlign);
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .mentorship_section_two .content p{
    text-align: var(--centerAlign);
    font-size: 18px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .mentorship_section_two .content_item{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .mentorship_section_two .content_item .item_listed{
    background: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
  }
  .mentorship_section_two .content_item .item_listed .icon_section{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: var(--centerAlign);
    align-items: var(--centerAlign);
    border: 2px solid var(--mainColor);
    border-radius: 50px;
    margin-bottom: 20px;
  }
  .mentorship_section_two .content_item .item_listed .icon_section i{
    color: var(--blackColor);
    font-size: 50px;
  }
  .mentorship_section_two .content_item .item_listed h3{
    /* text-align: var(--centerAlign); */
    font-size: 30px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
  .mentorship_section_two .content_item .item_listed p{
    /* text-align: var(--centerAlign); */
    font-size: 16px;
    opacity: 0.5;
    color: var(--blackColor);
    font-weight: bold !important;
  }

  .mentorship_section_three{
    /* padding: 100px 0px; */
  }
  .mentorship_section_three .content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .mentorship_section_three .content .left{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg2.jpg');
    padding: 300px 0px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mentorship_section_three .content .left .content_left{
    display: flex;
    justify-content: var(--centerAlign);
    align-items: var(--centerAlign);
  }
  .mentorship_section_three .content .left .content_left h1{
    font-size: 50px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }
  .mentorship_section_three .content .right{
    background: var(--blackColor);
  }
  .mentorship_section_three .content .right .content_right{
    padding: 200px 50px;
  }
  .mentorship_section_three .content .right .content_right .first_sect h2{
    font-size: 30px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }
  .mentorship_section_three .content .right .content_right .first_sect p{
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: bold !important;
  }



  /* login_page */
  .login_page{
    padding: 100px 0px;
  }
  .login_page .content h1{
    font-size: 50px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  }
  /* .login_page .content p{
    font-size: 16px;
    color: var(--blackColor);
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 40px;
  } */
  .login_page .content form input{
    width: 100%;
    height: 50px;
    padding: 10px;
    outline: none;
    border-radius: var(--borderRadius);
    border: 2px solid var(--grayColor);
  }
  .login_page .content form button{
    padding: 10px 20px;
    outline: none;
    margin-top: 10px;
    border: none;
    color: var(--whiteColor);
    font-weight: bold !important;
    border-radius: var(--borderRadius);
    background: var(--mainColor)
  }
  .login_page .content form ul{
    list-style: none;
    padding-left: 0px;
  }
  .login_page .content form ul li{
    border: 2px solid var(--redColor);
    padding: 10px;
    color: var(--blackColor);
    font-weight: bold !important;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}
