@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
	--primary-color: #61a203;
	--secondary-color: #111519;
	--text-color: #111519;
	--bg-color: #F6F8F9;
	--font-family: "Poppins", sans-serif;
}

* {
	font-family: var(--font-family);
}
a {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: normal;
	font-weight: 700;
	color: var(--secondary-color);
}

h1 {
	font-size: 2.4rem;
}

h2 {
	font-size: 2.2rem;
}

p {
	color: #111519;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 30px;
}
.mt-6 {
	margin-top: 5rem
}

.mb-6 {
	margin-bottom: 5rem;
}

.pt-6 {
	padding-top: 5rem
}

.pb-6 {
	padding-bottom: 5rem;
}
button:focus,
.btn:focus-visible,
.btn:first-child:active:focus-visible,
.form-control:focus {
	box-shadow: none !important;
	background: none;
}

:not(.btn-check)+.btn:active {
	background-color: transparent;
}

.gen-btn {
	padding: .65rem 1.3rem;
	background: var(--primary-color);
	border: 1px solid var(--primary-color) !important;
	border-radius: 3rem;
	font-size: 1.125rem;
	color: #fff;
	transition: all .3s ease-in;
}

.gen-btn:hover, .gen-btn:focus {
	background-color: transparent !important;
	color: var(--primary-color);
}

.secondary-btn {
	background: #61a2033d;
	border: 1px solid var(--secondary-color);
	color: var(--primary-color);
	width: 98%;
	font-weight: bold;
	border-radius: 20px;
	height: 40px;
	transition: all 0.2s ease;
}

.secondary-btn:hover, .secondary-btn:focus {
	background: var(--primary-color);
	color: #fff;
}

.secondary:focus {
	outline: 0;
}
.primary-bg {
	background-color: var(--bg-color);
}


/* NavBar */
header {
	box-shadow: 0 4px 17px rgba(0, 0, 0, .1);
}

header .nav-link {
	color: var(--text-color) !important;
	font-weight: 600;
	padding-right: 0.3rem !important;
	position: relative;
	width: fit-content;
}

header .nav-link::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: calc(100% - 12px);
	height: 2px;
	background: var(--primary-color);
	transform: scale(0, 1);
	transition: transform .3s ease;
}

header .nav-btn .genral-btn {
	padding: 0.5rem 1.3rem;
}

header .nav-link .active,
header .nav-link:hover::before {
	transform: scale(1, 1);
}

header .nav-link.active {
	color: var(--primary-color) !important;
}

header .dropdown-menu {
	position: absolute !important;
	box-shadow: 0 4px 17px rgba(0, 0, 0, .1);
}

header .dropdown-toggle {
	cursor: pointer;
}

header .dropdown-toggle:hover .dropdown {
	display: block;
}

header .dropdown-toggle::after {
	margin-left: 0;
}

header .dropdown-item {
	font-weight: 500;
	color: #333;
	padding: 0.5rem 1rem;
}

header .dropdown-item:hover {
	color: var(--primary-color);
	background: none;
}
/* Add dropdown arrow icon */
.menu-arrow-icon::after {
	content: "";
	border: solid var(--secondary-color);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	margin-left: 8px;
	transition: transform 0.3s ease;
	position: relative;
	bottom: 2px;
}

/* Sub-menu dropdown Styling */
.navbar-nav>li>ul {
	position: fixed;
	background: #fff;
	min-width: 250px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	display: none;
	transform: translateY(20px) scale(0.95);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid #e9ecef;
	list-style: none;
	margin: 0;
	padding: 15px 0;
	z-index: 1000;
}

/* Sub-menu Styling */
.navbar-nav ul li a {
	padding: 12px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #000;
	text-transform: none;
	letter-spacing: 0;
	display: block;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.navbar-nav ul li a:hover,
.navbar-nav ul li a:focus {
	color: var(--secondary-color);
	background: rgb(237 245 220);
	border-left-color: var(--secondary-color);
	padding-left: 30px;
	transform: none;
}
@media (min-width: 992px) {
	.navbar-nav>li:hover .menu-arrow-icon::after {
		transform: rotate(225deg);
		border-color: var(--secondary-color);
	}

	.navbar-nav>li:hover>ul {
		opacity: 1;
		visibility: visible;
		transform: translateY(0) scale(1);
		display: block;
		transform: translateX(-50%) translateY(0) scale(1) !important;

	}
}


@media (max-width: 992px) {
    .open-sub-menu .menu-arrow-icon:after {
        transform: rotate(225deg);
        border-color: var(--secondary-color-dark);
    }

    .open-sub-menu ul {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        display: block !important;
    }
    .mega-menu.open-sub-menu ul {
        transform: none !important;
        min-width: 100% !important;
    }

}

/* Show dropdown on hover */
/* Header End */

/* Footer Start */

footer {
	background: #88bb1626;
	border-top: 2px solid var(--primary-color);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

footer img {
	max-width: 100%;
}

footer a {
	text-decoration: none;
	transition: all .3s ease;
}

footer a:hover,
footer a:focus {
	text-decoration: underline;
	outline: none;
	color: #ffffff;
}

footer p {
	font-size: 1.1rem;
	color: var(--text-color);
}

.footer-widget h6 {
	color: var(--text-color);
	font-size: .938rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	width: fit-content;
}

.footer-widget ul li {
	line-height: 36px;
}

.footer-widget ul li a {
	color: var(--text-color);
	font-size: .938rem;
}

.footer-widget ul li a:hover {
	color: var(--primary-color);
}

.bar {
	height: 4px;
	background: var(--primary-color);
	border-radius: 5px;
	overflow: hidden;
	margin: auto;
	position: absolute;
	right: 0;
	width: 100%;
}

.bar::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 5px;
	background: #ffffff;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
	from {left: 0%;}
	to {left: 100%;}
}
/* Footer End */
@media (max-width: 575px) {
	h1, h2 {
		font-size: 2rem;
		line-height: 1.3;
	}
	p {
		font-size: 1.1rem;
	}
	.gen-btn {
		font-size: 1rem;
	}
}