@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	background-color: #fff;
}

.container {
	max-width: 1320px;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

@font-face {
	font-family: "bootstrap-icons";
	src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
	url("../fonts/bootstrap-icons.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	transition: .6s;
	-webkit-transition: .6s;
	display: inline-block;
	text-decoration: none;
	color: #000;
}

a:hover {
	color: #f97b08;
}

h1,
h2,
h3,
h4 {
	font-weight: bold;
}

p:last-child {
	margin-bottom: 0;
}

.fs14 {
	font-size: 14px;
	line-height: 18px;
}

.fs12 {
	font-size: 12px;
	line-height: 16px;
}

.btn {
	background-color: #f97b08;
	border-radius: 7px;
	padding: 8px 20px;
	border: 1px solid #f97b08;
	outline: none;
	box-shadow: none;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	transition: .6s;
	-webkit-transition: .6s;
	font-size: 14px;
	line-height: 20px;
}

.btn:hover {
	background-color: #D94F00;
	color: #fff;
}

.btn2 {
	background-color: #fff;
	border-radius: 7px;
	padding: 8px 20px;
	border: 1px solid #008b8f;
	outline: none;
	box-shadow: none;
	color: #008b8f;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	transition: .6s;
	-webkit-transition: .6s;
	font-size: 14px;
	line-height: 20px;
}

.btn2:hover {
	background-color: #028387;
	color: #fff;
}

.tx-orange{
	color: #f97b08;
}

.tx-green{
	color: #008b8f;
}

/*PAGE CSS START*/

.hero-listing li i {
	width: 25px;
	height: 25px;
	border: 1px solid #008b8f;
	color: #008b8f;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.solutions-item > i {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.ReadyGrow {
	background: #056c71;
	padding: 20px;
	border-radius: 10px;
}

.hover-eff{
	transition: .6s;
}

.hover-eff:hover{
	transform: translateY(-5px);
}

.scroll-margin{
	scroll-margin-top: 60px;
}

.login-box {
	max-width: 400px;
	margin: 100px auto;
}

.login-box .form-control {
	height: 45px;
	padding-left: 40px;
}

.mv-100 {
	min-height: 100vh;
}

.circle-shape1 {
	animation: fadeX 5s linear infinite;
}

.circle-shape2 {
	animation: fadeY 5s linear infinite;
}

@keyframes fadeX{
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(30px);
	}
	100% {
		transform: translateX(0px);
	}
}

@keyframes fadeY{
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(30px);
	}
	100% {
		transform: translateY(0px);
	}
}

.grid-2 {
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}


/******Responsive Css Start******/
@media (max-width: 1199px) {

	/*Header Menu Css Start*/
	.menuToggle {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		display: flex;
		align-items: center;
		z-index: 9;
	}

	.header-menu.active {
		opacity: 1;
		visibility: visible;
		transform: translateX(0%);
	}

	.header-menu {
		position: fixed !important;
		left: 0;
		top: 0;
		right: 0;
		height: 100vh;
		background: #fff;
		z-index: 9;
		opacity: 0;
		visibility: hidden;
		transition: .6s;
		transform: translateX(-105%);
		width: 80%;
	}

	.menuToggle i {
		font-size: 30px;
	}

	.menuToggle .closeBtn,
	.menuToggle.active .toggleBtn {
		display: none;
	}

	.menuToggle.active .closeBtn {
		display: block;
	}

	.menu-item {
		border-top: 1px solid #e1e1e1;
		padding: 15px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header-menu li:first-child .menu-item {
		border-top: 0;
	}

	body.active {
		overflow: hidden;
	}

	body.active:before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000;
		z-index: 2;
		opacity: .8;
	}

	/*Header Menu Css End*/

	.logo {
		width: 100px;
	}

	.grid-2 {
		grid-template-columns: auto;
	}
}


