/********** Template CSS **********/
:root {
	--primary: #003E7B;
	--light: #EFF5FF;
	--dark: #1B2C51;
}

body {
	font-family: 'Maven Pro', sans-serif;
}

.navbar {
	background: #ffffff;
	    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
}

.mt-80{
    margin-top:80px;
}

.mt-165{
    margin-top:165px !important;
}

.mt-150{
    margin-top:150px;
}

.navbar-brand {
	color: #0f4c81;
	font-weight: bold;
}

.footer {
	background-color: white;
	padding: 20px;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.fw-black {
	font-weight: 900 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}


/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
}

/*
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}*/

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Fira Sans", sans-serif;
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
	padding: 15px 15px;
	color: #FFFFFF;
	outline: none;
	font: 500 16px/24px 'Manrope';
	text-decoration: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: white;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	/*.navbar .navbar-nav {*/
	/*    border-top: 1px solid #EEEEEE;*/
	/*}*/
}

/*
.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}*/

.navbar .navbar-nav .nav-link {
	color: #FFFFFF;
	font: 600 17px / 28.9px "Barlow", sans-serif;
	text-transform: uppercase;
}

.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.header-carousel .owl-carousel-text {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 3rem;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.header-carousel .owl-nav {
	position: absolute;
	width: 200px;
	height: 45px;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: transparent;
	border: 1px solid #FFFFFF;
	border-radius: 45px;
	font-size: 22px;
	transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.header-carousel .owl-dots {
	position: absolute;
	height: 45px;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	background: transparent;
	border: 1px solid #FFFFFF;
	border-radius: 15px;
	transition: .5s;
}

.header-carousel .owl-dot::after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	top: 4px;
	left: 4px;
	background: #FFFFFF;
	border-radius: 5px;
}

.header-carousel .owl-dot.active {
	background: var(--primary);
	border-color: var(--primary);
}

.page-header {
	background: url(../img/banner.png) top center no-repeat;
	background-size: cover;
	text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}


/*** Service ***/
.service-item {
	transition: .5s;
}

.service-item:hover {
	margin-top: -10px;
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	background: #FFFFFF;
	border-radius: 40px;
	white-space: nowrap;
	overflow: hidden;
	transition: .5s;
}

.service-item:hover .btn {
	width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
	.container.feature {
		max-width: 100% !important;
	}

	.feature-text {
		padding-left: calc(((100% - 960px) / 2) + .75rem);
	}
}

@media (min-width: 1200px) {
	.feature-text {
		padding-left: calc(((100% - 1140px) / 2) + .75rem);
	}
}

@media (min-width: 1400px) {
	.feature-text {
		padding-left: calc(((100% - 1320px) / 2) + .75rem);
	}
}


/*** Team ***/
.team-item img {
	position: relative;
	top: 0;
	transition: .5s;
}

.team-item:hover img {
	top: -30px;
}

.team-item .team-text {
	position: relative;
	height: 100px;
	transition: .5s;
}

.team-item:hover .team-text {
	margin-top: -60px;
	height: 160px;
}

.team-item .team-text .team-social {
	opacity: 0;
	transition: .5s;
}

.team-item:hover .team-text .team-social {
	opacity: 1;
}

.team-item .team-social .btn {
	display: inline-flex;
	color: var(--primary);
	background: #FFFFFF;
	border-radius: 40px;
}

.team-item .team-social .btn:hover {
	color: #FFFFFF;
	background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
	top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
	border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
	font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	padding: 10px;
	border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
	background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
	border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

.testimonial-carousel::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

@media (min-width: 768px) {

	.testimonial-carousel::before,
	.testimonial-carousel::after {
		width: 200px;
	}
}

@media (min-width: 992px) {

	.testimonial-carousel::before,
	.testimonial-carousel::after {
		width: 300px;
	}
}

.testimonial-carousel .owl-item .testimonial-text {
	background: var(--light);
	transform: scale(.8);
	transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
	background: var(--primary);
	transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
	transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
	color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
	background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
	position: absolute;
	width: 350px;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
	width: 300px;
	opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
	position: relative;
	color: var(--primary);
	font-size: 45px;
	transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
	color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border: 3px solid white;
	transition: .3s;
	background: #2286A2;
}

/*.footer .btn.btn-social:hover {*/
/*    color: var(--primary);*/
/*}*/

.footer .btn.btn-link {
	display: block;
	margin-bottom: 10px;
	padding: 0;
	text-align: left;
	color: #FFFFFF;
	transition: .3s;
	font: 600 17px / 28.9px "Barlow", sans-serif;
}

/*
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}*/

/*.footer .btn.btn-link:hover {*/
/*    color: var(--primary);*/
/*    letter-spacing: 1px;*/
/*    box-shadow: none;*/
/*}*/

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
	color: var(--light);
}

.footer .copyright a:hover {
	color: var(--primary);
}


.display-3 {
	font: 600 48px/60.48px "Outfit", sans-serif;
}

.display-4 {
	font: 600 36px / 45.36px "Outfit", sans-serif;
}

.display-5 {
	font: 500 24px / 30.24px "Outfit", sans-serif;
}

.display-6 {
	font: 500 20px / 25.02px "Outfit", sans-serif;
}

.display-7 {
	font: 700 24px / 30.24px "Outfit", sans-serif;
}

p {
	font: 500 16px/24px 'Manrope';
}

.text1 {
	font: 800 14px/19.12px 'Manrope';
	color: #2A2A2A;
	letter-spacing: 1px;
}

.text-b {
	color: #4F4F4F;
}


.text-blue1 {
	color: #2286A2;
}

.text-blue2 {
	color: #294190;
}

.id-text {
	font: 700 18px/22.68px 'Plus Jakarta Sans';
	color: #294190;
}


.rotate1 {
	rotate: -40deg;
}

.btn1 {
	border: none;
	background: none;
	font: 500 16px/24px 'Manrope';
}

h5 {
	font: 800 18px/24.59px 'Manrope';
}

.jc {
	justify-content: center !important;
}


.info-block {
	background: #EEF1FB;
	padding: 20px;
	font: 700 18px/22.68px 'Plus Jakarta Sans';
	color: #2A2A2A;
}

/* 
h3{
	font: 700 18px/22.68px 'Plus Jakarta Sans';
}

h4{
	font: 700 24px/30.24px 'Plus Jakarta Sans';
} */


ul {
	padding-left: 1rem;
}

div li {
	font: 500 16px/24px 'Manrope';
	color: #4F4F4F;
}

.mtr-1 {
	margin-top: 1px;
}


.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
	position: absolute;
	margin-top: 4px\9;
	margin-left: -20px;
}

input[type=checkbox],
input[type=radio] {
	margin: 5px 0px;
	line-height: normal;
	color: #4F4F4F;
}

.checkbox-inline,
.radio-inline {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: 400;
	vertical-align: middle;
	cursor: pointer;
	font: 500 16px/24px 'Manrope';
	color: #4F4F4F;
}

.abstract-form {
	color: #2286A2;
	padding: 0px 0px 10px 0px;
	font: 700 18px/22.68px 'Plus Jakarta Sans';
}

.bg-b1 {
	background-color: #F9F9F9;
	border: none !important;
	color: #373737 !important;
	font: 500 22px / 30.24px "Outfit", sans-serif !important;
}

.bg-b2 {
	background-color: #FFF9F2;
	border: none !important;
	color: #F39D25 !important;
	font: 500 22px / 30.24px "Outfit", sans-serif !important;
}

.bg-b3 {
	background-color: #F6FFEF;
	border: none !important;
	color: #6FAD41 !important;
	font: 500 22px / 30.24px "Outfit", sans-serif !important;
}

/*
.bg-b1{
	background-color:#DAF0F6;
}

.bg-b2{
	background-color:#EEF1FB;
}

.bg-b3{
	background-color:#EBE8FA;
}*/

.bg-b4 {
	background-color: #F3F3F3;
}

.column1 {
	flex: 32%;
	border: 1px solid #2A2A2A;
	text-align: center;
	padding: 20px;
	color: #2A2A2A;
	font: 500 16px/24px 'Manrope';
}

.column2 {
	flex: 23%;
	border: 1px solid #2A2A2A;
	text-align: center;
	padding: 20px;
	color: #2A2A2A;
	font: 500 16px/24px 'Manrope';
}

.column3 {
	flex: 48%;
	padding: 20px;
	color: #2A2A2A;
	font: 500 16px/24px 'Manrope';
}

.column4 {
	flex: 25%;
	color: #2A2A2A;
	font: 500 16px/24px 'Manrope';
}

.row1 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}


.text-right {
	text-align: right;
}


.row2:after {
	content: "";
	display: table;
	clear: both;
}

.column-1 {
	float: left;
	width: 50%;
}

.column-2 {
	float: left;
	width: 80%;
	padding: 20px;
}

.column-3 {
	float: left;
	width: 20%;
	padding: 20px;
}

.column-4 {
	float: left;
	width: 60%;
	padding: 20px;
}

.column-5 {
	float: left;
	width: 40%;
	padding: 20px;
}


@media screen and (max-width: 600px) {

	.column-1,
	.column-2,
	.column-3,
	.column-4,
	.column-5 {
		width: 100%;
	}

	.column1 {
		flex: 100%;
	}

	.position-absolute {
		position: relative !important;
	}

	.pbm-4 {
		padding-bottom: 1.5rem !important;
	}


	.righthm {
		justify-content: end !important;
		padding-top: 10px !important;
		padding-bottom: 10px !important;
		display: block !important;
	}


}


table {
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
}


table td {
	font: 600 17px / 28.9px "Barlow", sans-serif;
	color: #5D5D5D;
	padding: .625em;
}

table th {
	border-bottom: 1px solid #373737;
	font: 500 16px / 24px 'Manrope';
	font: 600 17px / 28.9px "Barlow", sans-serif;
	color: #373737;
	padding: .625em;
}


table .btn-secondary1 {
	color: #2A2A2A;
	background-color: transparent;
	border: 1px solid #2A2A2A;
	font: 400 12px/16.39px 'Manrope';
}

/*
table th,
table td:nth-child(5) {
    text-align:center;
  }

table th,
table td:nth-child(6) {
    text-align:center;
  }  
 
table th,
table td:nth-child(7) {
    text-align:center;
  } 
*/


@media screen and (max-width: 600px) {
	table {
		border: 0;
	}


	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	table tr {
		border-bottom: 1px solid #2A2A2A;
		display: block;
		margin-bottom: .625em;
	}

	table td {
		border-bottom: 1px solid #2A2A2A;
		display: block;
		font-size: .8em;
		text-align: right;
	}

	table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	table td:last-child {
		border-bottom: 0;
	}

	.pxm-5 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}
}


.register-li {
	list-style-type: auto;
}

.text-purple {
	color: #4F428F;
}


.box {
	clear: both;
}

.left {
	float: left;
}

.right {
	float: right;
}


.btn2 {
	background: none;
	font: 500 16px / 24px 'Manrope';
	background: #20A1CB;
	color: #FFFFFF;
	border-radius: 20px;
	font: 600 17px / 28.9px "Barlow", sans-serif;
	text-transform: uppercase;
}


.pxm-5 {
	padding-right: 3rem;
	padding-left: 3rem;
}


* {
	box-sizing: border-box;
}


.row-head {
	display: flex;
}


.column-head {
	flex: 33.33%;
	padding: 20px;
}


@media screen and (max-width: 992px) {
	.column-head {
		flex: 50%;
	}
}


@media screen and (max-width: 600px) {
	.row-head {
		flex-direction: column;
	}

	.dropdown-menu1 {
		min-width: 10rem !important;
	}


	table td:nth-child(1) {
		width: 100% !important;
	}

	table td:nth-child(2) {
		width: 100% !important;
	}

	table td:nth-child(3) {
		width: 100% !important;
	}

	table td:nth-child(4) {
		width: 100% !important;
	}

	table td:nth-child(5) {
		width: 100% !important;
	}

	table td:nth-child(6) {
		width: 100% !important;
	}

	table td:nth-child(7) {
		width: 100% !important;
	}

	.wm-1 {
		width: 100%;
	}

	.mm-2 {
		margin-left: 0rem !important;
		margin-top: 10px;
	}

	.wm-15 {
		width: 100% !important;
	}

	.wm-20 {
		width: 100% !important;
	}

	.wm-35 {
		width: 100% !important;
	}

	.wm-25 {
		width: 100% !important;
	}

	.wm-50 {
		width: 100% !important;
	}

	.jec {
		justify-content: center;
	}


	.mob-dis {
		display: none;
	}

	.mtm-0 {
		margin-top: 0px;
	}

}


.mm-2 {
	margin-left: 0.5rem;
}


@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		left: 50%;
		transform: translateX(-50%);
	}


}


.dropdown-item1 {
	white-space: wrap !important;
}


.dropdown-menu1 {
	min-width: 40rem;
}


.hide {
	display: none;
}

.radio {
	float: left;
	clear: none;
	display: block;
	padding: 0px 2em 0px 8px;
}

.radio1 {
	float: left;
	clear: none;
	display: block;
	padding: 0px 8px 0px 2px;
}

.pd-0 {
	padding: 0px 1.5em 0px 0px;
}

.tick:before {
	content: url("../img/tick.png");
}

.twitter:before {
	content: url("../img/Twitter.png");
}

.flickr:before {
	content: url("../img/Flickr.png");
}

.youtube:before {
	content: url("../img/Youtube.png");
}


.loc-icon {
	content: url("../img/loc.png");
	vertical-align: sub;
}

.email-icon {
	content: url("../img/email.png");
	vertical-align: sub;
}

.phone-icon {
	content: url("../img/phone.png");
	vertical-align: sub;
}

.Date-icon {
	content: url("../img/Date.png");
	vertical-align: sub;
}

.Location-icon {
	content: url("../img/Location.png");
	vertical-align: sub;
}


/* 

	  	table td:nth-child(1) {
			width:2%;
		}
	  
	    table td:nth-child(2) {
			width:15%;
		}
		
		table td:nth-child(3) {
			width:38%;
		}
		
		table td:nth-child(4) {
			width:5%;
		}
		
		table td:nth-child(5) {
			width:15%;
		}
		
		table td:nth-child(6) {
			width:13%;
		}
		
		table td:nth-child(7) {
			width:12%;
		} */


a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: inherit;
}


.wm-15 {
	width: 15%;
}

.wm-20 {
	width: 20%;
}

.wm-25 {
	width: 25%;
}

.wm-35 {
	width: 35%;
}

.wm-50 {
	width: 50%;
}

.jem {
	justify-content: end;
}

.aa {
	align-items: center;
}

.hr1 {
	margin-block-start: 1.5em;
	margin-block-end: 0.5em;
}


.footer-p {
	font: 400 12px/16.39px 'Manrope';
}


/*.t1 {*/
/*	font: 500 14px / 16.8px "Barlow", sans-serif;*/
/*}*/

/*.t2 {*/
/*	font: 600 17px / 25.9px "Barlow", sans-serif;*/
/*}*/

/*.t3 {*/
/*	font: 700 18px / 21.6px "Barlow", sans-serif;*/
/*}*/

/*.t8 {*/
/*	font: 600 19px / 25.9px "Barlow", sans-serif;*/
/*}*/

/*.color1 {*/
/*	color: #373737 !important;*/
/*}*/

/*.color2 {*/
/*	color: #5D5D5D;*/
/*}*/

/*.color3 {*/
/*	color: #1A83A5;*/
/*}*/

/*.color4 {*/
/*	color: #F39D25 !important;*/
/*}*/


/*.color5 {*/
/*	color: #6FAD41;*/
/*}*/

/*.color6 {*/
/*	color: #1A83A5;*/
/*}*/

/*.color7 {*/
/*	color: #D28821 !important;*/
/*}*/

/*.color8 {*/
/*	color: #5E9A32 !important;*/
/*}*/


.nowrp {
	white-space: nowrap;
}


.lsnone {
	list-style: none;
	margin-bottom: 0 !important;
	padding-left: 0 !important;
}


.bg-blue {
	background-color: #1A83A5;
}


.m-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}


.bg-lblue {
	background-color: #EBFAFF;
}


.tagbtn {
	border: 0px;
	border-radius: 10px;
	color: white;
	font: 700 14px / 16.8px "Barlow", sans-serif;
	padding: 8px 12px;
	cursor: unset !important;
}

.gap1 {
	gap: 10px;
}

.gap2 {
	gap: 20px;
}


.w-20 {
	width: 20%;
}


.reg-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.reg-column {
	float: left;
	width: 23%;
	padding: 0px;
}

.reg-row:after {
	content: "";
	display: table;
	clear: both;
}

.mbv {
	display: flex;
}

.mbv .c1 {
	width: 65%;
}


.mbv .c2 {
	width: 35%;
}


.desk-disp {
	display: block;
}


.mob-disp {
	display: none;
}


@media screen and (max-width: 600px) {


	.desk-disp {
		display: none !important;
	}


	.mob-disp {
		display: block !important;
	}


	.btn-o {
		font-size: 16px !important;
		padding: 10px 15px !important;
	}

	.btn-b {
		font-size: 16px !important;
		padding: 10px 15px !important;
	}


	.mbv {
		display: block !important;
	}

	.mbv .c1 {
		width: 100%;
	}


	.mbv .c2 {
		padding-top: 15px;
		width: 100%;
	}


	.reg-column {
		width: 100%;
		display: block;
		margin-bottom: 20px;
	}

	.reg-row {
		gap: 10px;
	}

	.mw-7 {
		max-width: 100% !important;
	}

	.text-rightm {
		text-align: center !important;
	}

	.text-leftm {
		text-align: center !important;
	}

	.flexm {
		display: block !important;
	}

	.end-2 {
		right: 0px !important;
	}

	.mmt-2 {
		margin-top: 20px !important;
	}

	.reg-column1 {
		width: 100% !important;
	}

	.wm-12,
	.wm-18 {
		width: 100% !important;
	}


}


.reg-card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	padding: 16px;
	border-radius: 12px;
}

.bg-lorange {
	background-color: #FFF9F2;
}

.bg-orange {
	background-color: #D28821;
}


.bg-lgreen {
	background-color: #F6FFEF;
}

.bg-green {
	background-color: #5E9A32;
}

.bg-lgay {
	background-color: #F9F9F9;
}

.bg-lgray1 {
	background-color: #EEE9E9;
}


ul li {
	color: #494949;
	font: 500 16px/24px "Maven Pro", sans-serif;
}

.mw-7 {
	max-width: 70%;
}


.column {
	float: left;
	width: 33.33%;
}

.column-row {
	float: left;
	width: 25%;
}

.btn-secondary3 {
	color: #2A2A2A;
	background-color: transparent;
	border: 1px solid #2A2A2A;
	font: 400 12px / 16.39px 'Manrope';
	font: 500 12px / 14.4px "Barlow", sans-serif;
	border-radius: 0px;
	white-space: nowrap;
	width: 100%;
}

.pb-1 {
	padding-bottom: 10px;
}

.pb-2 {
	padding-bottom: 20px;
}


.ul1 ul li {
	font: 500 14px / 22.8px "Barlow", sans-serif;
	color: #5D5D5D;
}

.bg1 {
	background-color: #5D5D5D;
}

.text-leftm {
	text-align: left;
}

.text-rightm {
	text-align: right;
}


.flexm {
	display: flex;
}


.pr-4 {
	padding-right: 1.5rem !important;
}


.reg-column1 {
	float: left;
	width: 24.33%;
	padding: 0px;
}


.photoblock {
	display: flex;
	align-items: center;
}

.photoblock .upload-box {
	display: flex;
	align-items: center;
	background-color: #F9F9F9;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ccc;
}

.photoblock .upload-button {
	background-color: #0D0D0D;
	color: #fff;
	padding: 10px 15px;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	margin-bottom: 0px !important;
	font: 400 15px / 26px "Barlow", sans-serif;
}

.photoblock .image-name {
	padding: 10px;
	background-color: #F9F9F9;
	color: #373737;
	display: inline-block;
	text-align: center;
	width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 12px;
	font: 400 15px / 26px "Barlow", sans-serif;
}

.photoblock input[type="file"] {
	display: none;
}

.ml-2 {
	margin-left: 20px;
}

.tt1 {
	font: 400 15px / 26px "Barlow", sans-serif;
}

.wm-12 {
	width: 12%;
}

.wm-18 {
	width: 18%;
}


.btn-o {
	background-color: #F39D25;
	font-family: "Fira Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 24px;
	border-radius: 25px 25px 25px 25px;
	padding: 10px 15px 10px 15px;
	color: white;
}


.btn-b {
	background-color: #373737;
	font-family: "Fira Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 24px;
	fill: var(--e-global-color-astglobalcolor5);
	color: white;
	border-radius: 25px 25px 25px 25px;
	padding: 10px 12px 10px 12px;
}


.collapse a:hover {
	color: white !important;
}


.jc-sb {
	justify-content: space-between;
}


.bg-yellow {
	background-color: #FFCC00 !important;
}

.bg-ly {
	background-color: #FFFCEE;
}

.c-div1 {
	width: 100%;
	display: flex;
	justify-content: center;
}


.btext {
	color: #20A1CB !important;
}


.btn-b1 {
	background-color: #20A1CB;
	font-family: "Fira Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	fill: var(--e-global-color-astglobalcolor5);
	color: white;
	border-radius: 25px 25px 25px 25px;
	padding: 8px 12px 8px 12px;
	width: 100%;
	border: 1px solid #20A1CB;
	display: block;
	text-align: center;
}


.btn-b1:hover {
	color: white !important;
}


.btn-b2 {
	background-color: #F39D25;
	font-family: "Fira Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	fill: var(--e-global-color-astglobalcolor5);
	color: white;
	border-radius: 25px 25px 25px 25px;
	padding: 8px 12px 8px 12px;
	width: 100%;
	border: 1px solid #F39D25;
	display: block;
	text-align: center;
}


.btn-b2:hover {
	color: white !important;
}


.photoblock {
	display: flex;
	align-items: center;
}

.photoblock .upload-box {
	display: flex;
	align-items: center;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ccc;
}

.photoblock .upload-button {
	background-color: #0D0D0D;
	color: #fff;
	padding: 10px 15px;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	margin-bottom: 0px !important;
}

.photoblock .image-name {
	padding: 10px;
	background-color: #F9F9F9;
	color: #373737;
	display: inline-block;
	text-align: center;
	width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
}

.photoblock input[type="file"] {
	display: none;
}


.carousel-caption1 {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	width:60%;
}


.carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.carousel-caption1 h3 {
	font: 700 48px/52px "Gentium Book Plus", serif;
}

.carousel-caption1 p {
	font: 600 18px/24px "Maven Pro", sans-serif;
}


.btn-join {
	background-color: #D1191E;
	color: #fff;
	font: 700 16px / 24px "Maven Pro", sans-serif;
	border-radius: 0px;
	padding: 10px 20px;
}

.stats {
	background-color: #003E7B;
	color: white;
	text-align: center;
	padding: 50px 0;
}

.stats h4 {
	font: 700 30px/34px "Gentium Book Plus", serif;
}

.stats p {
	font: 600 18px/24px "Maven Pro", sans-serif;
}

.mw-60 {
	max-width: 60%;
}


.text-left {
	text-align: left;
}

.jc-center {
	justify-content: center;
}

.jc-sb {
	justify-content: space-between;
}

.tbox {
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.10);
	padding: 20px;
	width: 25%;
}

.tbox1 {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	padding: 20px;
	width: 33.33%;
	text-align: center;
}

.gap4 {
	gap: 40px;
}
.gap5 {
	gap: 5px;
}

.ai-center {
	align-items: center;
}

.btn-join:hover {
    background-color: #D1191E !important;
    color: #fff !important;
    font: 700 16px / 24px "Maven Pro", sans-serif;
    border-radius: 0px;
    padding: 10px 20px;
}

.t1 {
	font: 700 48px/58px "Gentium Book Plus", serif;
}


.t2 {
	font: 500 16px / 24px "Maven Pro", sans-serif;
}

.t3 {
	font: 700 30px/38px "Gentium Book Plus", serif;
}

.t4 {
	font: 700 20px/28px "Gentium Book Plus", serif;
}

.t5{
    font: 700 16px/24px "Maven Pro", sans-serif;
}

p {
	font: 600 18px/24px "Maven Pro", sans-serif;
}

.ninedecadesection {
	background-color: #F3F7FB;
	padding: 50px 0;
}

.ninedecadesection h3 {
	font: 700 30px/38px "Gentium Book Plus", serif;
}

.ninedecadesection p {
	font: 600 18px/24px "Maven Pro", sans-serif;
}

.text-black1 {
	color: #282828;
}


.text-black2 {
	color: #494949;
}


.footer h3 {
	font: 700 14px/24px "Maven Pro", sans-serif;
	color: #7D73B8;
}

.footer p {
	font: 500 14px/24px "Maven Pro", sans-serif;
}

.bgsection {
	color: white;
	background-image: url(../images/bgsection.png);
	/*height: 500px;*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


.owl-carousel .item img {
	width: 100%;
	height: auto;
	display: block;
}

.owl-dots {
	text-align: center;
	margin-top: 15px;
}

.owl-dot span {
	width: 12px;
	height: 12px;
	background: #ccc;
	display: block;
	border-radius: 50%;
	margin: 5px;
	transition: background 0.3s;
}

.owl-dot.active span {
	background: #333;
}

.d-flexm{
    display:flex;
}



.text-blue{
    color:#3A2B99 !important
}



    .left-card li {
        margin-bottom: 2px;
    }



    /*.container {*/
    /*    max-width: 1200px;*/
        /*margin: 40px auto;*/
    /*    display: flex;*/
    /*    gap: 24px;*/
    /*    padding: 0 16px;*/
    /*}*/
    .left-card {
        background: #fff;
        padding: 32px;
        flex: 2;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 4px;
    }
    .left-card h2 {
        /*color: #d32f2f;*/
        margin-top: 0;
        font: 700 16px/24px "Maven Pro", sans-serif;
    }
    

    .left-card p {
        font: 500 16px/24px "Maven Pro", sans-serif;
        margin-bottom: 10px;
        color:#494949;
    }
    .highlight-box {
        background-color: #f0f4f8;
        padding: 16px;
        font-size: 14px;
        line-height: 1.6;
        margin: 16px 0;
    }
    
     .highlight-box p {
        font: 500 16px/24px "Maven Pro", sans-serif;
        margin-bottom: 10px;
        color:#494949;
    }
    .highlight-box h5{
        font: 700 16px/24px "Maven Pro", sans-serif;
        color:#494949;
    }
    .left-card ul {
        margin: 8px 0 0 20px;
        padding: 0;
        font-size: 14px;
    }

    .signature {
        font-size: 14px;
        font-weight: 500;
        margin-top: 16px;
    }
    .committee {
        display: flex;
        gap: 40px;
        margin-top: 16px;
        font-size: 14px;
    }
    .committee h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .committee p {
        margin: 4px 0;
    }

    /* Right Column */
    .form-card {
        background: #fff;
        flex: 1;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 4px;
        overflow: hidden;
    }
    .form-image {
        background: url('../images/FormImage.png') center/cover no-repeat;
        height: 140px;
    }
    .form-content {
        padding: 24px;
    }
    .form-content img {
        display: block;
        max-width: 100%;
        width: 100%;
    }
    .form-content h3 {
        text-align: center;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 8px;
    }
    .form-content p {
        text-align: center;
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }
    .form-group {
        margin-bottom: 16px;
    }
    .form-group label {
        font-size: 14px;
        font-weight: 500;
        display: block;
        margin-bottom: 4px;
    }
    .form-group input {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: 'Maven Pro', sans-serif;
    }
    .submit-btn {
        background-color: #d32f2f;
        color: white;
        border: none;
        width: 100%;
        padding: 12px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 16px;
    }
    .submit-btn:hover {
        background-color: #b71c1c;
    }
    .form-footer {
        font-size: 12px;
        color: #666;
        text-align: center;
        line-height: 1.4;
    }

/*        header{*/
/*      background:#fff;*/
/*      border-bottom:1px solid var(--card-border);*/
/*      padding:18px 28px;*/
/*    }*/
/*    header img{ height:56px; display:block; }*/

        /* responsive */
/*@media (max-width:960px){*/
/*      .page{ flex-direction:column; padding:12px; }*/
/*      header img{ height:48px; }*/
/*    }*/





     /** {*/
     /*       margin: 0;*/
     /*       padding: 0;*/
     /*       box-sizing: border-box;*/
     /*   }*/

     /*   body {*/
     /*       font-family: 'Maven Pro', sans-serif;*/
     /*       background-color: #ffffff;*/
     /*       position: relative;*/
     /*       width: 100%;*/
     /*       min-height: 100vh;*/
     /*   }*/

        /*.container1 {*/
        /*    width: 1440px;*/
        /*    height: 100vh;*/
        /*    position: relative;*/
        /*    background-color: #ffffff;*/
        /*}*/

        /* Header Styles */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 1440px;
            height: 120px;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 11px 100px;
            box-shadow: 0px 10px 20px 0px rgba(162, 162, 162, 0.25);
        }

        .logo {
            position: relative;
            width: 157px;
            height: 98px;
        }

        .logo-image {
            width: 157px;
            height: 98px;
            background-image: url('http://localhost:3845/assets/f89392a03f16dbcac9abec80e7a00409ff602a1c.png');
            background-size: 131.14% 131.38%;
            background-position: 54.69% 59.16%;
            background-repeat: no-repeat;
        }

        .join-button {
            background-color: #d1191e;
            color: #ffffff;
            padding: 10px 20px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .join-button p {
            font-family: 'Maven Pro', sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
            white-space: pre;
        }

        /* Main Content */
        .description {
            /*position: absolute;*/
            /*top: 150px;*/
            /*left: 100px;*/
            /*width: 850px;*/
            background-color: #ffffff;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            border: 0.5px solid #c6c6c6;
        }


.description  p {
    font: 500 16px / 24px "Maven Pro", sans-serif !important;
    color:#494949;
}
        .letter-container {
            /*display: flex;*/
            /*flex-direction: column;*/
            /*gap: 14px;*/
            /*width: 751px;*/
        }

        .dear-friend {
            color: #3a2b99;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
        }

        .letter-text {
            color: #494949;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: normal;
        }

        .letter-text p {
            margin-bottom: 0;
        }

        .needs-container {
            background-color: #f3f7fb;
            padding: 26px;
            /*width: 752px;*/
            /*display: flex;*/
            /*flex-direction: column;*/
            /*gap: 19px;*/
            color: #494949;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
        }

        .needs-title {
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
        }

        .needs-list {
            list-style-type: disc;
            margin-left: 20px;
                margin-bottom: 0rem;
        }

        .needs-list li {
            font-size: 16px;
            line-height: normal;
                margin-bottom: 6px;
        }

        .needs-list .bold {
            font-weight: 700;
        }

        .appeal-container {
            /*display: flex;*/
            /*flex-direction: column;*/
            /*gap: 14px;*/
            /*width: 751px;*/
        }

        .appeal-text {
            color: #494949;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: normal;
        }

        .warm-regards {
            color: #3a2b99;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
        }

        .committees-container {
            display: flex;
            gap: 41px;
        }

        .committee {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-top: 20px;
            border-top: 1px solid #c6c6c6;
        }

        .committee-title {
            color: #3a2b99;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
        }

        .committee-members {
            color: #494949;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: normal;
        }

        /* Form Container */
        .form-container {
            /*position: absolute;*/
            /*top: 150px;*/
            /*left: calc(66.667% - 0px);*/
            /*width: 400px;*/
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            gap: 27px;
            align-items: center;
            padding: 20px 11px 30px;
            box-shadow: 0px 10px 20px 0px rgba(162, 162, 162, 0.25);
        }

        .form-image {
            width: 100%;
            height: 191px;
            background-image: url('../images/FormImage.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .form-fields-container {
            /*width: 333px;*/
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .form-header {
            display: flex;
            flex-direction: column;
            /*gap: 6px;*/
            text-align: center;
            width: 100%;
        }

        .form-title {
            font-family: 'Gentium Book Basic', serif;
            font-weight: 700;
            font-size: 20px;
            color: #282828;
            line-height: normal;
        }

        .form-subtitle {
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #494949;
            line-height: normal;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 7px;
            width: 100%;
        }

        .field-label {
            font-family: "Maven Pro", sans-serif;
      font-weight: 700;
    font-size: 16px;
    color: #282828;
            line-height: normal;
        }

        .input-container {
            position: relative;
            background-color: #ffffff;
            height: 48px;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border: 2px solid #eeeeee;
        }

        .input-placeholder {
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #282828;
            opacity: 0.5;
            line-height: normal;
        }

        .submit-button {
            background-color: #d1191e;
            color: #ffffff;
            height: 48px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
        }

        .submit-button-text {
            font-family: 'Maven Pro', sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: normal;
        }

        .contact-info {
            /*width: 333px;*/
            padding-top: 10px;
            border-top: 1px solid #c6c6c6;
            /*display: flex;*/
            /*flex-direction: column;*/
            /*gap: 14px;*/
                font: 500 14px / 24px "Maven Pro", sans-serif;
                text-align:center;
        }

        .contact-text {
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: #494949;
            text-align: center;
            line-height: normal;
        }

        /* Input styles for actual form functionality */
        input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-family: 'Maven Pro', sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #282828;
        }

        input::placeholder {
            color: rgba(40, 40, 40, 0.5);
        }




p {
    font: 500 14px / 24px "Maven Pro", sans-serif;
}


.ckbx{
    background-color:#F3F7FB;
    padding:20px;
}




.ai-baseline {
    align-items: baseline;
}

.border-radius0{
    border:0 !important;
}










@media only screen and (max-width: 600px) {
.d-flexm{
    flex-direction:column;
}

.mw-60 {
    max-width: 100%;
}

.tbox {
    width: 100%;
}

.tbox1 {
    width: 100%;
}

.mgap2{
    gap:20px;
}

.gap4 {
    gap: 0px;
}


.mh1{
    height: 50vh;
}


.carousel-caption1 h3 {
    font: 700 42px / 45px "Gentium Book Plus", serif;
}


.carousel-caption1 {
	width:100%;
	padding:20px;
}

.committees-container {
    gap: 0px;
    flex-direction: column;
}


.ai-baseline {
    align-items: baseline;
}

.rowc {
    display: block;
    margin-bottom:10px;
}

}