@import url('../fonts/font.css');
:root {
	--shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
body {
	font-family: "DM Sans", sans-serif!important;
	background: #f8f9fa;
	color: #696969;
	margin-top: 110px;
}
*, *::before, *::after {
	font-family: "DM Sans", sans-serif!important;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	box-shadow: none!important;
}
a {
	color: #3a4252;
	text-decoration: none;
}

.form-control,
.form-control:hover,
.form-control:focus,
.form-control:active {
	border-color: #ddd;
}
.footer {
	background-color: #fff;
	box-shadow: var(--shadow)!important;
	padding: 30px 0 15px;
}
.footer h3::after {
	margin-top: 8px;
	content: '';
	background: linear-gradient(90deg, #FF8D35, #FF1B3F);
	width: 25%;
	height: 3px;
	display: block;
}
.footer .footer-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 15px;
}
.footer .info {
	background: #f8f9fa;
	color: #3a4252;
	border-radius: 10px;
	padding: 10px 20px;
	margin-bottom: 25px;
	font-weight: 500;
	text-align: justify;
}
.footer .divider {
	background-color: #eeeff0;
	width: 100%;
	height: 2px;
	margin-top: 10px;
}
.footer .copyright {
	text-align: right;
	font-weight: 500;
	font-size: 17px;
	margin-top: 15px;
}
.dropdown-menu>a {
	display: block;
	font-weight: 300!important;
	clear: both;
	color: var(--bs-dropdown-link-color);
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	border-radius: var(--bs-dropdown-item-border-radius, 0);
	width: 100%;
	padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
}
.dropdown-menu>a:focus,
.dropdown-menu>a:hover {
	color: var(--bs-dropdown-link-hover-color);
	background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-menu>a.active,
.dropdown-menu>a:active {
	color: var(--bs-dropdown-link-active-color);
	text-decoration: none;
	background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-menu.show {
	min-width: 180px;
}
.pagination {
	display: block;
	text-align: center;
	margin-bottom: 25px;
}
.pagination>* {
	background: #EFF1F7;
	padding: 4px 16px;
	color: #000;
	border-radius: 6px;
}
.pagination>*:hover {
	background: linear-gradient(90deg, #FF1B3F, #FF8D35);
}
.pagination .current.active {
	background: linear-gradient(90deg, #FF8D35, #FF1B3F);
}
.custom-fixed-nav {
	position: fixed;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1030;
	background-color: #fff;
	border-radius: 70px;
	width: calc(100% - 40px);
	max-width: 1300px;
	box-shadow: var(--shadow) !important;
}
.navbar-toggler,.navbar-toggler:hover,.navbar-toggler:active,.navbar-toggler:focus {
	border: 0!important;
}
.mobile-menu {
	position: fixed;
	top: 0;
	right: -65%;
	width: 65%;
	height: 100vh;
	background-color: #fff;
	z-index: 1050;
	transition: right 0.3s ease;
}
.mobile-menu.show {
	right: 0;
}
.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1040;
	display: none;
}
.mobile-overlay.show {
	display: block;
}
.no-scroll {
	overflow: hidden;
	height: 100vh;
}
.spinner-grow {
	margin-top: 25px;
	display: flex;
	margin-left: auto;
	margin-right: auto;
}
.breadcrumbx {
	display: flex;
    justify-content: center;
	margin-bottom: 25px;
}
@media (max-width: 992px) {
	.navbar-brand {
		margin-left: 15px!important;
	}
}