@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: #61a203;
	--third-color: #126b7e;
	--text-color: #111519;
	--bg-color: #F6F8F9;
	/* --font-family: "Poppins", sans-serif; */
	--font-family: "Inter", sans-serif;
}

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

h1 {
	font-size: 3.75rem;
}

h2 {
	font-size: 3rem;
	font-weight: 700;
}

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-color: var(--primary-color) !important;
	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: 0;
	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;
}

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;
}

/* Header End */

/* Footer Start */

footer {
	background: #e3e3e3;
}

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(--secondary-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 */