/* @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://fonts.googleapis.com/css2?family=Poppins&display=swap');  */

/* @font-face {
	font-family: 'Weissenhofbold';
	src: local('weissenhofgrotesk-bold'), url(img/weissenhofgrotesk-bold.otf) format("opentype");
} */

@font-face {
	font-family: 'weissenhofregular';
	src: local('weissenhofgrotesk-regular'), url(font/weissenhofgrotesk-regular.otf) format("opentype");
}

/* @font-face {
	font-family: 'Weissenhofbold';
	src: local('Weissenhofbold'), url(fonts/Weissenhofbold.otf)format("opentype"); 
 } */

/* Styles defined for the desktop or the bigger screen devices  local('WeissenhofGrotesk-Medium'),   */


:root {
	--teal: #19988b;
	--midteal: #187e6c;
	--darkteal: #204d4c;
	--black: #0B0B0B;
	--white: #ffffff;
	--gray: #58595b;
	--lightgary: #d1d3d4;
	--blue: #1966ff;
}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'weissenhofregular', sans-serif;
}

/* Header Navbar Styles */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	height: auto;
	width: 100%;
	background-color: var(--white);
	z-index: 1000;
}

.logo {
	padding: 0 5rem;
	/* width: 30%; */
}

.logo img {
	color: #fff;
	width: 160px;
	padding: 5px;
}

.dropdown {
	position: relative;
	text-transform: uppercase;
	color: var(--black);
	text-decoration: none;
	font-weight: 600;
	/* padding: 40px; */
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: var(--white);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 10000;

}

.dropdown-content a {
	color: var(--black);
	text-transform: uppercase;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-weight: 500;
}

.dropdown-content a:hover {
	background-color: var(--teal);
	color: var(--white);
}



.dropdown:hover .dropdown-content {
	display: block;
}

.menu {
	padding-right: 1.3rem;
	/* padding: 0 5rem; */
}

.hamburger {
	display: none;
	color: var(--midteal);
	font-size: 25px;
}

.cross-icon {
	display: none;
}

.menu .menu-list {
	display: flex;
	list-style: none;
}

.menu-list .menu-list-items {
	padding: 0.5rem 1rem;

}

/* other pages banner */
.banner {
	width: 100vw;
	height: 100vh;
}

.banner img {
	width: 100%;
	object-fit: cover;
}

/* Main Hero Section Styles */
.hero {
	width: 100%;
	height: 87vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4rem;

}

.slider {
	position: relative;
	/* background: var(--lightgary);	 */
	width: 100%;
	height: 82vh;
	min-height: 500px;
	overflow: hidden;
	margin-top: 2.5rem;
	/* margin: 20px;	 */
}

.slider .slide {
	position: absolute;
	width: 100%;
	height: 100%;
	clip-path: circle(0% at 0 50%);
}

.slider .slide.active {
	clip-path: circle(150% at 0 50%);
	transition: 2s;
}

.slider .slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit:cover;
}

.slider .slide .info {
	position: absolute;
	color: #222;
	background: rgba(255, 255, 255, 0.6);
	width: 50%;
	margin-top: 50px;
	margin-left: 50px;
	padding-left: 20px;
	border-radius: 5px;
	box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
}

.slider .slide .info h2 {
	font-size: 4em;
	font-weight: 800;
	margin: 8px;
	text-transform: uppercase;
}

.slider .slide .info p {
	font-size: 1em;
	font-weight: 400;
}

.navigation {
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.slider:hover .navigation {
	opacity: 1;
}

.prev-btn,
.next-btn {
	z-index: 999;
	font-size: 2em;
	color: #222;
	background: rgba(255, 255, 255, 0.8);
	padding: 10px;
	cursor: pointer;
}

.prev-btn {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.next-btn {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.navigation-visibility {
	z-index: 999;
	display: flex;
	justify-content: center;
}

.navigation-visibility .slide-icon {
	z-index: 999;
	background: rgba(255, 255, 255, 0.5);
	width: 20px;
	height: 10px;
	transform: translateY(-50px);
	margin: 0 6px;
	border-radius: 2px;
	box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigation-visibility .slide-icon.active {
	background: #4285F4;
}


/* About section styles */
.about {
	display: flex;
	align-items: center;
	background-color: var(--midteal);
	justify-content: space-between;
	width: 100%;
}

.about .about-text {
	width: 500px;
	color: var(--white);
	padding: 5rem 1rem 5rem 5rem;
}

.about .about-image img {
	/* height: 400px; */
	width: 500px;
	padding: 5rem 5rem 5rem 1rem;
}


/* Product section styles */

.product {
	display: flex;
	align-items: center;
	/* background-color: var(--midteal); */
	justify-content: space-between;
	width: 100%;
}

.product .product-text {
	width: 450px;
	color: var(--darkteal);
	padding: 5rem 1rem 5rem 5rem;
}


.product .product-image img {
	/* height: 400px; */
	width: 600px;
	padding: 5rem 5rem 5rem 1rem;
}


.productinner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 2rem;
}

.productinner-item {
	padding: 2rem;
	text-align: justify;
}

.productinner-item h1 {
	font-size: 2rem;
	color: var(--midteal);
}

.productinner-item img {
	width: 90%;
}

@media (max-width: 768px) {
	.productinner {
		grid-template-columns: 1fr;
	}

	.productinner-item {
		padding: 2rem;
		text-align: left;
	}
}

/* Product Details section styles */

.productbenefits-container {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
	grid-template-columns: repeat(3, 1fr);
	/* gap: 16px; */
	padding: 16px;
}

.productbenefits-item {
	background-color: var(--white);
	/* border: 1px solid var(--gray); */
	height: 500px;
	/* padding: 16px; */
	text-align: center;

}

.productbenefits-item img {
	width: 90%;
	padding-top: 8px;
}

.productbenefits-item-left {
	text-align: left;

}

.productbenefits-item-right {
	text-align: right;

}

@media (max-width: 768px) {
	.productbenefits-container {
		grid-template-columns: 1fr;
	}

	.productbenefits-item {
		background-color: var(--white);
		height: auto;
		text-align: center;

	}

	.productbenefits-item img {
		width: 90%;
	}

	.productbenefits-item-left {
		text-align: left;
	}

	.productbenefits-item-right {
		text-align: left;
	}
}

/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style buttons inside the tab */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}

.tabcontent p {
	font-size: 1.1rem;
	/* width: 50%; */
}

/* Style the close button */
.topright {
	float: right;
	cursor: pointer;
	font-size: 28px;
}

.topright:hover {
	color: red;
}

/* Product inner section styles */

.portfolio {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0rem 2rem;
	/* padding: 16px; */
}


.port-card {
	/* background-color: #ddd; */
	padding: 10px;
	text-align: center;
	flex: 1 1 calc(25% - 32px);
	box-sizing: border-box;
	border: 2px solid var(--midteal);
	border-radius: 10px;
}

.port-card img {
	width: 100%;
}

.port-card h3 {
	color: var(--midteal);
	font-size: 1.5rem;
}

.port-card .product-buttons {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

@media (max-width: 768px) {
	.port-card {
		flex: 1 1 100%;
	}
}

.port-card .image img {
	height: 200px;
	width: 100%;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	padding-top: 20px;
}

/* table style */

table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}

table caption {
	font-size: 1.5em;
	margin: .5em 0 .75em;
}

table tr {
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	padding: .35em;
}

table th,
table td {
	padding: .625em;
	text-align: center;
}

table th {
	font-size: .85em;
	letter-spacing: .1em;
	/* text-transform: uppercase; */
}

@media screen and (max-width: 600px) {
	table {
		border: 0;
	}

	table caption {
		font-size: 1.3em;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	table tr {
		border-bottom: 3px solid #ddd;
		display: block;
		margin-bottom: .625em;
	}

	table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: .8em;
		text-align: right;
	}

	table td::before {
		/*
	  * aria-label has no advantage, it won't be read inside a table
	  content: attr(aria-label);
	  */
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	table td:last-child {
		border-bottom: 0;
	}
}

/* Counter section styles */
.test {
	background-color: var(--midteal);
	text-align: center;
	padding-bottom: 15px;
	display: block;
}

.feature {
	display: flex;
	justify-content: right;
	width: 100%;
	align-items:right;
	color: var(--white);
}

.feature-row {
	display: flex;
	align-items:center;
	justify-content: space-between;
	margin: 2rem 0;
}

.feature img {
	width: 100px;
}

.feature-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items:center;
	justify-content: center;
	border-radius: 20px;
	/* border: solid 2px white; */
	padding: 1rem;
}

.counter {
	display: flex;
	justify-content: left;
	width: 100%;
	align-items:flex-start;
	color: var(--white);
}

.counter img {
	width: 100px;

}

.counter {
	text-align: Left;
}


.counter-card {
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items:flex-start;
	justify-content: left;
	border-radius: 20px;
	/* border: solid 2px white; */
	padding: 1rem;
}

/* technology style start */

.technology {
	padding-left: 40px;
	padding-right: 40px;
	margin: 20px;
	/* display: inline; */
	text-align: justify;

}

.technology h2 {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.technology p {
	margin-top: 0px;
	padding-top: 0px;
}

/* Contact style of Dealers and Branch */

.branch {
	/* background-color: var(--midteal); */
	text-align: center;
	padding-bottom: 15px;
	display: block;
}

.dealer {
	display: flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	/* color: var(--white); */
	text-align: center;
}

.dealer p {
	text-align: left;
}

.dealer h2 {
	text-align: left;
}

.dealer img {

	width: 450px;
}

.branch-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	/* border: solid 2px white; */
	padding: 1rem;
}

.container {
	padding: 0px 20px;
	min-width: 600px;
	height: 100px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	column-gap: 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

label {
	min-width: 250px;
	height: 36px;
	position: relative;
}

label::before {
	content: "";
	width: 22px;
	height: 32px;
	display: block;
	position: absolute;
	top: 2px;
	right: 7px;
	pointer-events: none;
}

label::after {
	content: " ";
	position: absolute;
	right: 15px;
	top: 46%;
	z-index: 2;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6.9px 4px 0 4px;
	border-color: #aaa transparent transparent transparent;
	pointer-events: none;
}

label select {
	min-width: 250px;
	height: 36px;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0 30px 0 10px;
	border: 2px solid var(--midteal);
	border-radius: 3px;
	margin: 0 5px 5px 0;
	font-size: 14px;
	color: var(--gray);
	font-weight: 500;
}

option {
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 20px;
}

select option:checked {
	font-weight: bold;
}

#addresses div {
	display: none;
}

/* about us page style */

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* Two columns of equal width */
	/* gap: 20px;  */
	/* Gap between items */
}

.item {
	text-align: left;
	/* Center-align content */
	background-color: var(--midteal);
	color: var(--white);

}

.item p {
	text-align: left;
	/* Center-align content */
	padding: 0rem 2rem;
}

.item h1 {
	text-align: left;
	/* Center-align content */
	padding: 1rem 2rem;
}

.item img {
	height: 100%;
	max-width: 100%;
	/* images don't exceed their container */
}

@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: 1fr;
		/* Change to a single column layout */
	}
}

/* Manifacturing excellence style */
.benefits-container {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
	grid-template-columns: repeat(3, 1fr);
	/* gap: 16px; */
	padding: 16px;
}

.benefits-item {
	background-color: var(--white);
	/* border: 1px solid var(--gray); */
	height: 300px;
	padding: 16px;
	text-align: center;
}

.benefits-item img {
	width: 30%;
}

.benefits-item-color {
	background-color: var(--teal);
	color: var(--white);
}

@media (max-width: 768px) {
	.benefits-container {
		grid-template-columns: 1fr;
	}

	.benefits-item img {
		width: 90%;
	}
}

/* Services section styles */
.services {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 4.8rem 0;
	padding: 0 5rem;
}

.services img {
	width: 30%;
}

.my-row {
	display: flex;
	align-items:start;
	justify-content: space-between;
	margin: 2rem 0;
}

.my-row .my-col {
	text-align: center;
	width: 30%;
}

.my-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background-color: var(--midteal);
	padding: 1rem;
}

/* Contact section styles */
.contact {
	padding: 0 5rem;
	margin: 3rem 0;
}

.contact-content {
	display: flex;
	margin: 3rem 0;
	justify-content: space-between;
}

.contact-form-container {
	width: 50%;
}

.joinus-form-container {
	width: 70%;

}

.contact-form label {
	padding: 0;
}

label::after {
	border-style: none;
}


.contact-form {
	display: flex;
	flex-direction: column;
}

.contact-form .form-controls {
	width: 80%;
	padding: 10px 0;
	margin: 0.5rem 0;
}

.contact-form .form-btn {
	width: 80%;
}

.contact-details {
	width: 50%;
}

/* Footer Styles */
.footer {
	background-color: var(--gray);
	color: #fff;
	padding: 2rem;
	position: relative;
	z-index: 1000;
}

.footer h4 a{
	text-decoration: none;
	color: var(--white);
}

.footer-list-items {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 50px;
	margin: 1rem 1rem 0 1rem;
	border-radius: 50%;
	background-color: var(--midteal);
}

.footer-links {
	font-size: 24px;
	color: #fff;
	text-decoration: none;
}

.social-links {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-menu {
	padding: 0 5rem;
}

.footer-menu .footer-menu-list {
	display: flex;
	list-style: none;
}

/* Banner Section of all pages */

.banner {
	width: 100%;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4.1rem;
}

.banner img {
	width: 100%;
	height: 90vh;
}


/* utility classes */
.greet-heading {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 0;
	padding-top: 5px;
	letter-spacing: 1px;
}

.my-heading {
	font-size: 3.5rem;
	margin: 0;
	/* color: var(--midteal); */
}

.teal-heading {
	font-size: 3.5rem;
	margin: 0;
	color: var(--midteal);
}

.manifacturing-heading {
	font-size: 2rem;
	margin: 0;
	color: var(--white);

}

.benefits-heading {
	font-size: 2rem;
	margin: 0;
	color: var(--midteal);

}

.product-inner-heading {
	font-size: 2rem;
	margin: 0;
	color: var(--teal);

}

.sub-heading {
	margin: 0;
	font-size: 0.8rem;
	color: var(--white);
	font-weight: lighter;
}

.links:hover {
	border-bottom: 2px solid var(--midteal);
	color: var(--midteal);
}

.links {
	border-bottom: 2px solid transparent;
	transition: all 0.25s;
	/* padding: 5px;  */
	text-decoration: none;
	color: #0B0B0B;
	text-transform: uppercase;
	font-weight: 600;
}

.btn {
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	letter-spacing: 1px;
	border: none;
	font-size: 0.9rem;
	font-weight: bold;
}

.common-btn {
	background-color: var(--midteal);
	color: var(--white);
	border: 2px solid var(--white);
	transition: all 0.25s;
}

.common-btn:hover {
	background-color: var(--white);
	color: var(--midteal);
	border: 2px solid var(--midteal);
	outline: none;
}

.ghost-btn {
	background-color: var(--white);
	color: var(--midteal);
	border: 2px solid var(--midteal);
	outline: none;
}

.ghost-btn:hover {
	background-color: var(--midteal);
	color: var(--white);
	transition: all 0.25s;
	border: 2px solid var(--white);
}

.heading-span {
	font-weight: bolder;
}

.text-center {
	text-align: center;
}

.small-para {
	padding: 10px;
	font-size: 14px;
	color: var(--white);
}

.head-para {
	padding: 15px;
	font-size: 16px;
	color: var(--darkteal);
	text-align: center;
}

.about-para {
	text-align: justify;
}

.manifacturing-para {
	padding: 20px;
	padding-left: 4rem;
	padding-right: 4rem;
	font-size: 16px;
	color: var(--darkteal);
	text-align: center;
}

.white-text {
	color: var(--white);
}

.blue-text {
	color: var(--darkteal);
}

.counter-heading {
	color: var(--white);
	padding-top: 2rem;
	/* padding: 2rem 1rem ;  */
	font-size: 3.5rem;
}

.branch-heading {
	color: var(--teal);
	padding-top: 2rem;
	font-size: 3.5rem;
}

.contact-text {
	margin: 7px;

}

.contact-heading {
	margin: 8px;
	font-weight: bold;
	font-size: 1rem;
}