@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');
:root{
	/* --text-color : #2c2c46; */
	/* --text-color :#54151a; */
	--text-color :#406a89;
}
.text-primary{
color: var(--text-color) !important;
}
.btn-primary{
background-color: var(--text-color) !important;
}
.bg-primary{
background-color: var(--text-color) !important;
}
body{
	font-family: "Poppins", sans-serif;
}
p, li{
	font-size: 15px;
	text-align: justify;
	color: #666;
	line-height: 24px;
}
body {
  scroll-behavior: smooth;
}
.section {
  padding: 60px 0;
}
.feature-icon {
  font-size: 40px;
  color: #0d6efd;
}
footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}
.card img {
  object-fit: cover;
}
a{
	text-decoration: none;
}
.section-title{
	position: relative;
	display: inline-block;
}
.text-primary{
	color: var(--text-color) !important;
}
.section-title::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--text-color);
	height: 2px;
	width: 50px;
}
.nav-item .nav-link{
	position: relative;
	overflow: hidden;
}
.nav-item .nav-link::before{
	content: '';
	transition: .7s;
	position: absolute;
	bottom: 0;
	left: -100%;
	background: var(--text-color);
	width: 100%;
	height: 2px;
}
.nav-item .nav-link.active::before,
.nav-item .nav-link:hover::before{
	left: 0;
}
.nav-item .nav-link.active{
	color: var(--text-color);
}
.btn-primary{
	background: var(--text-color) !important;
	border-color:var(--text-color) !important;
}
footer{
	background-color:  #034373;
}
body{
overflow-x: clip;
}