/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* font-family: "Plus Jakarta Sans", sans-serif; */
:root {
	--lotus-primary: #1e1e1e;
	--lotus-secondary: #f2f1ed;
	--lotus-three: #e5448f;
	--lotus-four: #009136;
	--lotus-white: #fff;
	--lotus-black: #000;
	--lotus-font: 'DM Sans', sans-serif;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/*---------------------------------
	  typography css start 
  ---------------------------------*/
body {
	font-family: var(--lotus-font);
	font-size: 16px;
	font-weight: normal;
	color: var(--lotus-primary);
	line-height: 28px;
}
a {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--lotus-font);
	color: var(--lotus-primary);
	margin: 0px;
	font-weight: 700;
	line-height: normal;
}
h1 {
	font-size: 48px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
p {
	font-family: var(--lotus-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--lotus-primary);
	margin-bottom: 20px;
	line-height: 24px;
}
a {
	text-decoration: none;
	color: var(--lotus-primary);
}
@keyframes tpfadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.section-title h2 {
	line-height: 1.5;
	margin-bottom: 30px;
}
.industial-chemical-area,
.about-us-area,
.our-products-area {
	padding: 60px 0px;
}
/* Off canvas style */
.offcanvas-screen {
	position: fixed;
	z-index: 999;
	background: #fff;
	width: 300px;
	right: 0;
	top: 0;
	padding: 50px 40px;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}
.offcanvas-open-style {
	opacity: 1;
	visibility: visible;
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.offcanvas-overlay-style {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: 0.45s ease-in-out;
	background: rgba(24, 24, 24, 0.4);
}
.offcanvas-overlay-open {
	opacity: 0.7;
	visibility: visible;
}
/* header */
.header-area {
	box-shadow: 0px 20px 30px rgba(167, 167, 167, 0.1);
	position: relative;
	z-index: 5;
}
.header-sticky {
	background-color: var(--lotus-white);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	-webkit-animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
	animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
}
.logo-area a img {
	width: 90px;
}
.header-sticky .logo-area a img {
	width: 70px;
}
.mobile-menu-active ul {
	display: flex;
	gap: 24px;
	justify-content: end;
}
.mobile-menu-active ul li a {
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	padding: 36px 0px;
	display: inline-block;
	transition: 0.3s ease-in-out;
}
.header-sticky .mobile-menu-active ul li a {
	padding: 25px 0px;
}
.mobile-menu-active ul li a:hover {
	color: var(--lotus-four);
}
.header-bar {
	text-align: right;
}
.offcanvas-toggle-btn,
.offcanvas-close-toggle {
	border: none;
	background-color: transparent;
	font-size: 20px;
}
.offcanvas-header {
	margin-bottom: 40px;
}
.offcanvas-logo a img {
	width: 90px;
}
/* Hero section */
.hero-area {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 0px;
}
.hero-area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	width: 100%;
}
.hero-content h3 {
	color: var(--lotus-secondary);
	font-size: 22px;
	line-height: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.hero-content h1 {
	font-size: 72px;
	line-height: 1.2;
	color: var(--lotus-secondary);
	margin-bottom: 20px;
}
.hero-content p {
	color: var(--lotus-secondary);
	font-size: 20px;
	line-height: 1.5;
	max-width: 650px;
	width: 100%;
	margin-bottom: 40px;
}
.call-to-action {
	display: flex;
	align-items: center;
	gap: 20px;
}
.call-to-action a {
	color: #fff;
	background-color: var(--lotus-four);
	padding: 15px 30px;
	display: inline-flex;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 500;
	border-radius: 10px;
	transition: 0.3s ease-in-out;
}
/* industial chemical */
.single-industrial-chemical {
	border: 1px solid var(--lotus-secondary);
	border-radius: 8px;
	overflow: hidden;
	min-height: 390px;
	margin-bottom: 24px;
}
.chemical-content {
	padding: 20px;
}
.chemical-content h3 {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 5px;
}
.chemical-content p {
	margin-bottom: 0px;
	line-height: 23px;
	font-size: 15px;
}
/* our products */
.our-products-area {
	background-color: var(--lotus-secondary);
}
.product-items {
	background-color: var(--lotus-white);
	border-radius: 15px;
	overflow: hidden;
	/* min-height: 386px; */
	margin-bottom: 24px;
}
.product-image {
	text-align: center;
	padding: 4px;
}
.product-image img {
	height: 300px;
	object-fit: scale-down;
}
.product-content {
	padding: 15px;
}
.product-content h3 {
	font-size: 18px;
}
/* About Us */
.about-us-content {
	padding: 0 30px 0 0;
}
.about-us-content h2 {
	line-height: 1.2;
}
.our-mission h3,
.our-vision h3 {
	font-size: 22px;
	line-height: 1.5;
}
.about-us-image img {
	width: 100%;
	border-radius: 10px;
}
/* contact us */
.contact-us-area {
	padding-bottom: 60px;
}
.php-email-form,
.contact-info {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 30px;
}
.contact-form {
	margin-bottom: 24px;
}
.form-group {
	margin-bottom: 10px;
	position: relative;
}
.php-email-form input,
.php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}
.php-email-form input {
	height: 44px;
}
.php-email-form textarea {
	padding: 10px 12px;
	margin-bottom: 20px;
}
.php-email-form input:focus,
.php-email-form textarea:focus {
	border-color: var(--lotus-four);
	box-shadow: none;
}
.php-email-form button[type='submit'] {
	background: var(--lotus-four);
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 5px;
}
.ajax-response {
	margin-bottom: 0;
}
.contact-info h3 {
	font-size: 25px;
	margin-bottom: 10px;
}
.contact-info-item {
	gap: 15px;
	margin-bottom: 20px;
}
.contact-info-item:last-child {
	margin-bottom: 0;
}
.contact-info-item i {
	font-size: 30px;
	color: var(--lotus-four);
}
.contact-info-item p {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
}
.contact-info-item p span {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}
.contact-map iframe {
	width: 100%;
	height: 500px;
}
.footer-area {
	background-color: var(--lotus-primary);
	padding: 20px 0px;
}
.footer-text p {
	margin-bottom: 0px;
	color: var(--lotus-white);
}
/* responsive */
@media (max-width: 575px) {
	.hero-area {
		padding: 100px 0px;
	}
	.hero-content h1 {
		font-size: 50px;
	}
	.contact-map iframe {
		height: 400px;
	}
}
@media (max-width: 480px) {
	.hero-content h3 {
		font-size: 18px;
	}
	.hero-content h1 {
		font-size: 40px;
	}
	.single-industrial-chemical {
		min-height: auto;
	}
}
@media (max-width: 375px) {
	h2 {
		font-size: 25px;
	}
	.hero-area {
		padding: 70px 0px;
	}
	.hero-content h3 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 10px;
	}
	.hero-content h1 {
		font-size: 30px;
	}
	.hero-content p {
		font-size: 16px;
	}
	.section-title h2 {
		margin-bottom: 25px;
	}
	.our-mission h3,
	.our-vision h3,
	.contact-info h3 {
		font-size: 20px;
	}
	.contact-info-item p span {
		font-size: 18px;
	}
	.contact-map iframe {
		height: 300px;
	}
}
