@charset "utf-8";

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Afacad", sans-serif;
	--body-font-Size: 18px;
	--body-color: #000;
	--primary-color: #006a8e;
	--secondary-color: #e6a60a;
	--black: #000;
	--white: #fff;
	--gradient: linear-gradient(to right, rgba(239, 167, 7, 1) 0%, rgba(41, 150, 89, 1) 49%, rgba(0, 106, 142, 1) 100%);


}

body {
	font-family: var(--body-font);
	font-size: var(--body-font-Size);
	font-style: normal;
	line-height: normal;
	font-weight: 400;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	font-optical-sizing: auto;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
	background: #000;
	color: #fff;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0 0 30px 0;
	clear: left;
	padding: 0;
}

ul {
	padding: 0px;
	margin: 0 0 25px;
}

ul li {
	list-style: none;
}

/******* Headings Style *******/
h1 {
	font-size: 42px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: normal;
}

hr {
	margin: 40px 0 60px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid #c1c1c1;
	border-bottom: 1px solid #c1c1c1;
	width: 100%;
	position: relative;
}

img {
	border: 0;
	max-width: 100%;
}

a img {
	border: 0;
}

/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
	width: 100%;
	height: 100%;
	background-image: url(../images/loader.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size:100px;
	
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

/*************** COLUMS AND ROWS ***************/
main {
	position: relative;
}

.row {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.justify-content-center {
	justify-content: center;
}

.space-between {
	justify-content: space-between;
}

.justify-content-flex-end {
	justify-content: flex-end
}

.section-spacing {
	padding: 100px 0;
}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width: 100%;
}

.clearfix {
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	display: block;
}

.container {
	width: 1480px;
	margin: 0 auto;
}

.fullwidth {
	width: 100%;
	display: block;
}

.two-col {
	flex: 0 0 48%;
}

.three-col {
	flex: 0 0 31%;
}

.four-col {
	flex: 0 0 22%;
}
.boxy{
	background-color:#F3F3F3;
	padding:80px;
	background-image: url(../images/texture.png);
	}
section {
	width: 100%;
	display: block;
	position: relative;
}

aside {
	flex: 0 0 25%;
	margin: 0;
	padding: 0;
}

summary {
	flex: 0 0 70%;
	margin: 0;
	padding: 0;
}

.list {
	padding: 0px;
	margin: 0 0 25px;
	display: flex;
	width: 100%;
	flex-direction: column;
}

.list li {
	list-style: none;
	color: #3a4455;
	padding-left: 22px;
	margin-bottom: 6px;
	line-height: 24px;
	position: relative;
	padding: 2px 0 2px 30px;
}

.list li:after {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 14px;
	color: var(--secondary-color);
}

.list li a {
	color: #3a4455;
}

.text-center {
	text-align: center;
}

.scrollwrap {
	width: calc(50vw + 692px);
	overflow: hidden;
}

.scrollwrap-left {
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
}

.gap-1 {
	gap: 1%
}

.gap-2 {
	gap: 2%
}

.gap-3 {
	gap: 3%
}

.gap-4 {
	gap: 4%
}

.gap-5 {
	gap: 5%
}

.gap-10,
.gap-20,
.gap-30,
.gap-40,
.gap-50,
.gap-60,
.gap-70,
.gap-80,
.gap-90,
.gap-100 {
	display: flex;
	width: 100%;
	height: 10px;
}

.gap-20 {
	height: 20px;
}

.gap-30 {
	height: 30px;
}

.gap-40 {
	height: 40px;
}

.gap-50 {
	height: 50px;
}

.gap-60 {
	height: 60px;
}

.gap-70 {
	height: 70px;
}

.gap-80 {
	height: 80px;
}

.gap-90 {
	height: 90px;
}

.gap-100 {
	height: 100px;
}

.m-b-0 {
	margin-bottom: 0px;
}

.m-b-5 {
	margin-bottom: 5px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-15 {
	margin-bottom: 15px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-25 {
	margin-bottom: 25px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-35 {
	margin-bottom: 35px;
}

.m-b-40 {
	margin-bottom: 40px;
}

.m-b-45 {
	margin-bottom: 45px;
}

.m-b-50 {
	margin-bottom: 50px;
}

.button-style a,
.button-style-span {
	position: relative;
	background: linear-gradient(to right, #e8a609, #20955d, #006a8e);
	background-size: 100% 100%;
	background-position: left center;
	color: var(--white);
	font-weight: 700;
	font-size: 18px;
	min-width: 200px;
	padding: 12px 60px 14px 25px;
	display: inline-block;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.button-style a:after,
.button-style-span:after {
	color: var(--white);
	content: "\f061";
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	right: 20px;
	position: absolute;
	top: 10px;
	line-height: 28px;
	border-radius: 50px;
	text-align: center;
	transition: .3s ease-in-out;
	transform: rotate(1deg);
	font-size: 16px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.button-style a:hover,
.button-style-span:hover {
	background-position: right center;
	color: var(--white);
	background-size: 200% 100%;
}

.button-style a:hover:after,
.button-style-span:after {
	transform: rotate(328deg);
}


/*************** PAGE CSS ***************/
header {
	top: -100px;
	background-color: var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	padding:0 25px;
}

.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}


.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	line-height: 0px;
}

.call-us {
	display: flex;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--black);
	line-height: 20px;
	border-left: 1px solid #e2e2e2;
	padding: 30px 0 30px 25px;
}

.call-us i {
	width: 40px;
	height: 40px;
	background: var(--gradient);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}



.call-us span {
	font-size: 20px;
	display: block;
}

.neway-logo {
	border-left: 1px solid #e2e2e2;
	min-height: 100px;
	display: flex;
	align-items: center;
	padding-left: 15px;
}

.scroll-right-left {
	-webkit-animation: scroll 16s linear infinite;
	-moz-animation: scroll 16s linear infinite;
	animation: scroll 16s linear infinite;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.scroll-right-left h2 {
	color: var(--white);
	font-size: 40px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	font-weight: 700;
}

.scroll-animation {
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
}

.scroll-right-left h2 span {
	display: inline-block;
	margin: 0 25px;
	width: 5px;
	height: 5px;
	border-radius: 50px;
	background-color: var(--white);
}

.text-sliding {
	overflow: hidden;
	padding: 15px 0px;
	background-image: var(--gradient);
}

.counter-section {
	padding: 25px 0px;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	gap: 20px 3%;
}



.counter-section li {
	list-style: none;
	flex: 0 0 22.75%;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	border-top: 1px solid #c3c3c3;
	padding-top: 35px;
}


.counter-section li h2 {
	color: var(--primary-color);
	font-size: 68px;
	margin-bottom: 0;
	font-weight: 700;
	background: -webkit-linear-gradient(20deg, var(--secondary-color), var(--primary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.counter-section h6 {
	font-size: 22px;
	font-weight: 600;
}

.counter-section p {
	margin-bottom: 0;
	color: #5a5a5a;
}

.overview {
	padding: 100px 0px 60px;
}

.heading-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.heading-left {
	flex: 0 0 45%;
}

.heading-wrap p {
	flex: 0 0 46%;
	font-size: 20px;
}

.heading {
	font-size: 54px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 30px;
}

.head-cap {
	position: relative;
	font-size: 16px;
	color: #7e7e7e;
	font-weight: 700;
	text-transform: uppercase;
	padding-left: 16px;
 
}

.head-cap::after {
	position: absolute;
	content: '';
	width: 9px;
	height: 9px;
	background-image: var(--gradient);
	left: 0px;
	top: 6px;
	border-radius: 50px;
}

/* Company Profile Section */
.company-profile-wrap {
	display: flex;
	gap: 25px 0;
}

.align-items-center {
	align-items: center;
}

.company-profile {
	position: relative;
	padding: 80px 0;
}

.company-profile:before {
	position: absolute;
	content: '';
	width: 30%;
	height: 100%;
	right: 0px;
	top: 0px;
	background-image: url(../images/bg-1.png);
	background-repeat: no-repeat;
	background-position: right top;
	z-index: -1;
}

.profile-left {
	padding-right: 90px;
	flex: 0 0 50%;
}


.company-profile p {
	color: #333;
	line-height: 28px;
	margin-bottom: 30px;
}

.profile-right {
	position: relative;
	/* padding-left: 20px; */
	/* padding-bottom: 50px; */
	flex: 0 0 50%;
}

.profile-img-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
	clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%, 0 80px);
	-webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.profile-img-wrap:hover {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.profile-img-wrap:before {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 56%);
	z-index: 1;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.profile-img-wrap:hover:before {
	opacity: 0.8;
}

.profile-img-wrap img.main-img {
	width: 100%;
	display: block;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.profile-img-wrap:hover img.main-img {
	transform: scale(1.08) rotate(1deg);
}

.rotating-logo-wrap {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}


.rotating-logo-inn {
	background-image: var(--gradient);
	padding: 12px;
	border-radius: 100px;
}

.rotating-logo-inn span {
	background-color: var(--white);
	width: 95px;
	height: 95px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
}

.rotating-logo-wrap:after {
	width: 159px;
	height: 159px;
	position: absolute;
	content: '';
	background-image: url(../images/round-text.png);
	background-position: center;
	background-repeat: no-repeat;
	left: auto;
	top: auto;
	animation: rotateText 15s linear infinite;
}

@keyframes rotateText {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.products {
	padding: 100px 0px;
	background-color: #f0f0f0;
}

.products-wrap {
	display: flex;
	gap: 25px 2%;
}

.product-left {
	flex: 0 0 30%;
	padding-right: 118px;
}

.product-left p {
	font-size: 20px
}

.product-right {
	flex: 0 0 68%;
	overflow: hidden;
}

.product-box {
	position: relative;
}



.product-box:after {
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background-image: var(--gradient);
	bottom: 0px;
	left: 50%;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.product-box:hover:after {
	width: 100%;
	left: 0px;
}

.product-box h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--black);
	padding: 10px 0px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.product-box:hover h3 {
	color: var(--primary-color);
}
.fix-side-bg{
	width:30%;
	height:70%;
	position:fixed;
	left:0;
	top:0;
	z-index:-1;
	background-image: linear-gradient(to top, rgba(239, 167, 7, 1) 0%, rgba(41, 150, 89, 1) 49%, rgba(0, 106, 142, 1) 100%);
 
}
/* ===== Product Detail Page Styles ===== */
.product-wrap {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	
}

.product-gallery {
	flex: 0 0 48%;
	position: sticky;
	top: 120px;
	 
}

.product-main-img-wrap {
	width: 100%;
	overflow: hidden;
	/*clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);*/
	margin-bottom: 12px;
	position: relative;
	background-color:#fff;border:1px solid #ccc;
}

.product-main-img-wrap img {
	width: 100%;
	height: 450px;
	object-fit: cover;        
    object-position: center;   
	display: block;
	transition: opacity 0.3s ease;
	
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: rgba(0, 0, 0, 0.45);
	color: var(--white);
	border: none;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	transition: background 0.3s ease;
}

.gallery-arrow:hover {
	background-image: var(--gradient);
}

.gallery-prev {
	left: 0;
}

.gallery-next {
	right: 0;
}

.product-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.thumb-item {
	flex: 1;
	cursor: pointer;
	overflow: hidden;
	opacity: 0.55;
	border: 2px solid transparent;
	transition: opacity 0.3s ease, border-color 0.3s ease;
}

.thumb-item img {
	width: 100%;
	height: 80px;
	object-fit: cover;        
    object-position: center;
	display: block;
}

.thumb-item.active,
.thumb-item:hover {
	opacity: 1;
	border-color: var(--primary-color);
}

.product-content {
	flex: 1;
	padding-top: 10px;
}

/******* Product Name Overlay *******/
.product-name-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), transparent);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	padding: 40px 20px 20px;
	text-align: center;
	z-index: 3;
	transition: all 0.3s ease-in-out;
}





/* ===== End Product Detail Page Styles ===== */


.services {
	padding: 100px 0px;
}

.services-wrap {
	display: flex;
	gap: 40px 4%;
	flex-wrap: wrap;
	-webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.12));
	filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.12));
}

.serv-box {
	flex: 0 0 48%;
	background-color: var(--white);
	clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%, 0 45px);
	padding: 60px;
	display: flex;
	gap: 20px;
	position: relative;
	z-index: 1;
	-webkit-transition: all 800ms ease-in-out;
	transition: all 800ms ease-in-out;
}

.serv-box::before {
	content: '';
	position: absolute;
	top: -20%;
	bottom: -20%;
	right: -10%;
	width: 140%;
	background-image: linear-gradient(to right, rgba(239, 167, 7, 1) 0%, rgba(41, 150, 89, 1) 49%, rgba(0, 106, 142, 1) 100%);
	border-top-left-radius: 250px;
	border-bottom-left-radius: 250px;
	transform: translateX(100%);
	-webkit-transition: transform 800ms ease-in-out;
	transition: transform 800ms ease-in-out;
	z-index: -1;
}

.serv-box:hover::before {
	transform: translateX(0);
}

.serv-icon {
	flex: 0 0 109px;
}

.serv-icon img {
	-webkit-transition: all 800ms ease-in-out;
	transition: all 800ms ease-in-out;
}

.serv-content {}

.serv-content h3 {
	font-size: 30px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 5px;
	-webkit-transition: all 800ms ease-in-out;
	transition: all 800ms ease-in-out;
}

.serv-content p {
	font-size: 20px;
	color: var(--black);
	margin-bottom: 0px;
	-webkit-transition: all 800ms ease-in-out;
	transition: all 800ms ease-in-out;
}


.serv-box:hover .serv-content h3,
.serv-box:hover .serv-content p {
	color: var(--white);
}

.serv-box:hover .serv-icon img {
	filter: brightness(0) invert(1);
}













/* Industries Section */
.industries {
	padding: 100px 0 0 0;
	margin-bottom: 80px;
}

.ind-list-wrap {
	width: 100%;
	display: block;
}

.ind-list-item {
	width: 100%;
	border-bottom: 1px solid #e1e1e1;
	padding: 15px 0;
	text-align: center;
	position: relative;
	transition: border-color 500ms ease;
	cursor: pointer;
	z-index: 1;
}

.ind-list-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--gradient);
	clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
	-webkit-transition: clip-path 500ms cubic-bezier(0.25, 1, 0.5, 1);
	transition: clip-path 500ms cubic-bezier(0.25, 1, 0.5, 1);
	z-index: -1;
}

.ind-list-item:first-child {
	border-top: 1px solid #e1e1e1;
}

.ind-list-item h2 {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	color: var(--black);
	transition: all 500ms ease;
	position: relative;
	z-index: 2;
}

.ind-list-item:hover {
	border-color: transparent;
}

.ind-list-item:hover::before {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.ind-list-item:hover h2 {
	color: var(--white);
}

.ind-img {
	position: absolute;
	top: 50%;
	left: calc(50% + 320px);
	transform: translateY(-50%) translateX(30px);
	width: 224px;
	height: 250px;
	opacity: 0;
	visibility: hidden;
	z-index: 10;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
	pointer-events: none;
}

.ind-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ind-list-item:hover .ind-img {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

/* Latest News */
.latest-news {
	padding: 100px 0;
	background-color: var(--white);
}

.news-main-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.news-left {
	flex: 0 0 35%;
	position: sticky;
	top: 120px;
}

.news-left .button-style {
	margin-top: 40px;
}



.news-right {
	flex: 0 0 60%;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.news-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--black);
}

.news-img {
	flex: 0 0 40%;
	position: relative;
	overflow: hidden;
	clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
	display: block;
}

.news-img img {
	width: 100%;
	display: block;
	-webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-item:hover .news-img img {
	transform: scale(1.08) rotate(1deg);
}

.news-content {
	flex: 0 0 54%;
}

.news-date {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 12px;
	color: var(--black);
}

.news-content h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}

.news-content h3 a {
	color: var(--black);
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.news-item:hover h3 a {
	color: var(--primary-color);
}

.news-content p {
	font-size: 20px;
	margin-bottom: 25px;
	color: var(--black);
}

.news-more {
	font-size: 20px;
	color: var(--black);
	position: relative;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	padding-top: 20px;
	border-top: 1px solid #e1e1e1;
	width: 100%;
}

.news-more:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

/********************/

 .address-box{
	padding:30px;	 
	border:1px solid #ccc;
	 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 80px;
	min-height:30px;
	margin-bottom:40px;	 
	vertical-align:top;
	font-size:32px;
	line-height:34px; 
 
	 
	 
}
.add p{
	font-size:16px; 
	line-height:24px;
}
 .add h2{
 	font-size:18px;
	line-height:20px;
	margin:0 0 5px 0;
	line-height:normal;
 }
  .add h3{
 	font-size:20px;
	line-height:20px;
	margin:0 0 10px 0;
	line-height:normal;
 }
 
   .add h4{
 	font-size:14px;
	line-height:14px;
	margin:0 0 15px 0;
	padding:0 0 15px 0;
	border-bottom:1px solid #ccc;
 
 }
.add i{
	width:50px;
	height:50px;
	line-height:50px;
	border:1px solid #ccc;
	border-radius: 50%;
	color:#000;
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:#000;
	}
.add a:hover{
	color:#ddd;
	}
/* Footer */
footer {
	background-color: #050505;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.footer-top {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.footer-col {
	position: relative;
	padding: 100px 40px 70px 40px;
}

.col-logo {
	flex: 0 0 20%;
	padding-left: 0;
}

.footer-logo {
	display: inline-block;
	margin-top: 15px;
}

.footer-logo img {
	max-width: 100%;
}

.col-cta {
	flex: 0 0 45%;
}

.col-links {
	flex: 0 0 15%;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 40px;
}

.col-contact {
	flex: 0 0 20%;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 40px;
	padding-right: 40px;
}

.footer-heading {
	color: var(--white);
}

.col-cta p {
	font-size: 20px;
	color: var(--white);
	margin-bottom: 35px;
}

.footer-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 25px;
}

.col-links ul {
	margin: 0;
	padding: 0;
}

.col-links li {
	list-style: none;
	margin-bottom: 8px;
}

.col-links a {
	color: var(--white);
	font-size: 18px;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
	text-decoration: none;
}

.col-links a:hover {
	color: var(--secondary-color);
}

.col-contact p {
	color: var(--white);
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-info {
	margin-bottom: 20px;
}

.footer-info span {
	display: block;
	color: var(--white);
	font-size: 18px;
	margin-bottom: 0;
}

.footer-info a {
	color: var(--white);
	font-size: 22px;
	text-decoration: none;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.footer-info a:hover {
	color: var(--secondary-color);
}

.footer-bottom {
	padding: 30px 0;
}

.footer-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright p,
.powered p {
	color: var(--white);
	font-size: 16px;
	margin: 0;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: transparent;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
	text-decoration: none;
}

.social-links a:hover {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

header.smaller {
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
	z-index: 10;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

.about-wrap {
	display: flex;
	gap: 25px 4%;
}

.about-left {
	flex: 0 0 40%;
}

.about-right {
	flex: 0 0 56%;
}

.about-fun-fact {
	background-color: #0a0a0a;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.fact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 2%;
	justify-content: center;
}

.fact-card {
	flex: 0 0 calc(20% - 24px);
	background-color: #282828;
	padding: 40px 30px;
	position: relative;
	border-radius: 0;
	clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.fact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-image: var(--gradient);
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.fact-card:hover {
	transform: translateY(-8px);
	background-color: #3e3e3e;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fact-card:hover::before {
	opacity: 1;
}

.fact-number {
	font-size: 62px;
	font-weight: 700;
	margin-bottom: 15px;
	background: -webkit-linear-gradient(20deg, var(--secondary-color), var(--primary-color));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	line-height: 1;
}

.fact-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 12px;
}

.fact-card p {
	font-size: 16px;
	color: #888;
	margin-bottom: 0;
	line-height: 24px;
}

/*************** Mission & Vision ***************/
.mv-section {
	display: flex;
	min-height: 500px;
}

.mv-panel {
	flex: 0 0 50%;
	padding: 100px 80px;
	position: relative;
	overflow: hidden;
}

.mv-mission {
	background-color: #006691;
	color: var(--white);
}

.mv-vision {
	background-color: #008c6f;
	color: var(--white);
}

.mv-panel-inner {
	position: relative;
	z-index: 2;
}

.mv-serial {
	font-size: 180px;
	font-weight: 800;
	position: absolute;
	right: 40px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	line-height: 1;
	opacity: 0.04;
	color: var(--white);
}

.mv-vision .mv-serial {
	color: var(--white);
	opacity: 0.08;
}

.mv-mission .heading,
.mv-vision .heading {
	color: var(--white);
}

.mv-mission .head-cap {
	color: #aadbef;
}

.mv-vision .head-cap {
	color: #9effeb;
}

.mv-panel p {
	font-size: 20px;
	line-height: 32px;
	max-width: 520px;
}

.mv-mission p,
.mv-vision p {
	color: rgba(255, 255, 255, 0.8);
}

.cv-section {
	padding-bottom: 100px;
}

/*************** Core Values ***************/
.cv-header {
	text-align: center;
	margin-bottom: 60px;
}

.cv-header .head-cap {
	display: inline-block;
}

.cv-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 3%;
}

.cv-card {
	flex: 0 0 31.33%;
	padding: 40px 35px 40px 40px;
	position: relative;
	background-color: #f1f1f1;
	border-left: 3px solid transparent;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.cv-card:hover {
	border-left-color: var(--secondary-color);
	background-color: #fff;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.cv-num {
	display: block;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 20px;
	background: -webkit-linear-gradient(20deg, var(--secondary-color), var(--primary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	line-height: 1;
}

.cv-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--black);
}

.cv-card p {

	color: #484848;
	line-height: 26px;
	margin-bottom: 0;
}


/***************sectoors ***************/
.gen-row {
	display: flex;
	gap: 0 1%; 
	justify-content: space-between;
	margin:15px 0;
 
}

.gen-cl-35 {
	flex: 0 0 30%;
	 
}
.gen-cl-70 {
	flex: 1;
	/*background-image: var(--gradient);
	color:var(--white);*/
	padding:50px;
	background-color:rgba(0, 0, 0, 0.1);
	 
}
/*************** Chairman's Message ***************/
.ch-msg-wrap {
	display: flex;
	gap: 0 4%;
	align-items: flex-start;
}

.ch-msg-img {
	flex: 0 0 35%;
	position: relative;
	overflow: hidden;
}

.ch-msg-img img {
	width: 100%;
	display: block;
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
	-webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ch-msg-img:hover img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	transform: scale(1.03);
}

.ch-msg-content {
	flex: 1;
	position: relative;
	padding-left: 40px;
	border-left: 3px solid var(--secondary-color);
	 
}

.ch-msg-content::before {
	content: '\201C';
	font-size: 120px;
	font-weight: 700;
	position: absolute;
	top: -30px;
	right: 0;
	line-height: 1;
	background: -webkit-linear-gradient(20deg, var(--secondary-color), var(--primary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.15;
}

.ch-msg-content p {
	font-size: 18px;
	line-height: 30px;
	color: #444;
	margin-bottom: 20px;
}

.ch-msg-content p:first-of-type {
	font-size: 20px;
	color: #222;
	font-weight: 500;
}

.ch-msg-content p:last-of-type {
	margin-bottom: 0;
}

/*************** Product Page ***************/
.product-wrap {
	display: flex;
	gap: 0 5%;
	align-items: flex-start;
}

.product-gallery {
	flex: 0 0 40%;
	position: sticky;
	top: 120px;
}

.gallery-img img {
	width: 100%;
	display: block;
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
	-webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#main-slider {
	margin-bottom: 20px;
}

#thumb-slider .item {
	cursor: pointer;
	margin: 5px;
	padding: 5px;
	border: 1px solid #ddd;
	clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

#thumb-slider .item img {
	width: 100%;
	display: block;
}

#thumb-slider .current .item {
	border-color: var(--secondary-color);
	background-color: #f9f9f9;
}

#thumb-slider .item:hover {
	border-color: var(--primary-color);
}

/* responsive fix for the new gallery */
@media only screen and (max-width: 800px) {
	.product-gallery {
		position: relative;
		top: auto;
		flex: 0 0 100%;
		margin-bottom: 40px;
	}
}

.product-content {
	flex: 1;
}

.product-content p {
	font-size: 18px;
	line-height: 30px;
	color: #444;
	margin-bottom: 20px;
}

.product-content h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 35px;
	color: var(--primary-color);
	position: relative;
	padding-left: 18px;
	margin: 25px 0 12px 0;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
}

.product-content h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 4px;
	height: 24px;
	background-color: #179361;
	border-radius: 3px;
}





/*************** sticky image with content ***************/



/*************** sticky image with content ***************/
.sticky-wrapper {
	display: flex;
	min-height: 100vh;
	padding: 100px 0;
}

.sticky-image {
	width: 50%;
	position: sticky;
	top: 0;
	height: 100vh;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.sticky-image img {
	width: 100%;
	height: auto;
	transition: opacity 0.4s ease;
}

.scroll-content {
	width: 50%;
	padding: 250px 100px;
}

.content-block {
	min-height: 100vh;
	padding: 40px 0;
	/* border-bottom: 1px solid #eee; */
}
.h-auto{
	min-height:inherit;
	padding:20px  0;
	border-bottom:1px solid #ccc;
}
.content-block h3 {
	font-size: 34px;
	margin-bottom: 20px;
	line-height: 50px;
	font-weight: 700;
}

.content-block p {
	font-size: 24px;

}

.content-block a {
	position: relative;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #1d1d1d;
	margin-left: 25px;
}

.content-block a:after {
	position: absolute;
	content: '';
	width: 50px;
	height: 50px;
	background: #1d1d1d;
	position: absolute;
	top: 50%;
	left: -25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: .05;
	border-radius: 50px;
}

.acred-logos {
	display: flex;
	align-items: center;
	gap: 5%;
	margin-top: 30px;
}

.mob-img-stk {
	display: none;
}




/*************** inner banner ***************/
.banner {
	width: 100%;
	height: 170px;
	display: flex;
	flex-direction: column;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/banner.jpg);
	background-color: var(--primary-color);
	justify-content: center;
	text-align: center;
}

.banner:after {
	position: absolute;
	content: '';
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
	/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%); */
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 50%;
}


.banner h2 {
	color: var(--white);
	font-size: 42px;
	margin: 0 0 15px;
	padding: 0;
	position: relative;
	z-index: 1;
	font-weight: 700;
	line-height: 48px;
}

.breadcrumb {
	display: flex;
	color: var(--white);
	margin: 0;
	position: relative;
	z-index: 1;
	text-align: center;
	justify-content: center;
}

.breadcrumb ul {

	display: flex;

	flex-wrap: wrap;

	list-style: none;

	margin: 0;
}

.breadcrumb li {
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--white);
}

.breadcrumb li:not(:last-child)::after {
	display: inline-flex;
	margin: 0 8px;
	content: "  ";
	width: 10px;
	height: 1px;
	background-color: var(--white);
	position: relative;
	top: -3px;
}

.breadcrumb a {
	color: var(--white);
}

.breadcrumb a:hover {
	color: #cccccc;

}

.big-heading {
	font-size: 84px;
	font-weight: 700;
	line-height: 90px;
	margin-bottom: 30px;
	color: var(--primary-color);
}

:root { --thumb-gap: 12px; }

        .product-thumbs {
            display: flex;
            align-items: center;
            gap: var(--thumb-gap);
            margin-top: 14px;
        }

        .thumbs-window {
            overflow: hidden;
            flex: 1;
        }

        .thumb-track {
            display: flex;
            gap: var(--thumb-gap);
            transition: transform 0.35s ease;
            will-change: transform;
			 
        }

        .thumb-item {
            flex: 0 0 calc((100% - (3 * var(--thumb-gap))) / 4);
        }

        .thumb-item img {
            width: 100%;
            height: auto;
            display: block;
			
        }

        .thumb-nav {
            width: 38px;
            height: 38px;
           /* border-radius: 50%;*/
            border: none;
			background-color:rgba(0, 0, 0, 0.2);
            color: #fff;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .thumb-nav:hover { background: #0b6990; transform: translateY(-1px); }
        .thumb-nav:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

      

/*** animatins ***/
@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(-webkit-calc(-250px * 7));
		transform: translateX(-1750px);
	}
}

@-moz-keyframes scroll {
	0% {
		-moz-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-moz-transform: translateX(-moz-calc(-250px * 7));
		transform: translateX(-1750px);
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(-webkit-calc(-250px * 7));
		-moz-transform: translateX(-moz-calc(-250px * 7));
		transform: translateX(-1750px);
	}
}

@-webkit-keyframes scrollLeft {
	0% {
		-webkit-transform: translateX(-webkit-calc(-250px * 7));
		transform: translateX(-1750px);
	}

	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-moz-keyframes scrollLeft {
	0% {
		-moz-transform: translateX(-moz-calc(-250px * 7));
		transform: translateX(-1750px);
	}

	to {
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes scrollLeft {
	0% {
		-webkit-transform: translateX(-webkit-calc(-250px * 7));
		-moz-transform: translateX(-moz-calc(-250px * 7));
		transform: translateX(-1750px);
	}

	to {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
}

/*************** table style ***************/
.responsive-table {
	overflow-x: auto;
}

.table-style {
	border-collapse: collapse;
	width: 100%;
}

td,
th {
	border: 1px solid #ddd;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

tr:hover {
	background-color: #ddd;
}

th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: var(--primary-color);
	color: var(--white);
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	height: 50px;
	padding: 10px 15px;
	background-color: var(--white);
	display: block;
	border: 1px solid #c1c1c1;
	margin: 0 0 10px 0;
	color: #262626;
	font-size: 16px;
 
}

textarea.fieldset,
textarea {
	height: 140px;
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0 5px 0 0;
	float: left;
	color: var(--white);
	font-size: 24px;
	cursor: pointer;
	vertical-align: top;
	padding: 20px 25px;
	text-align: center;
	background-color: var(--secondary-color);
	text-transform: uppercase;
	
 
}

.sendbutton:hover {
	background-color: var(--primary-color);
	
}

::-webkit-input-placeholder {
	color: #262626 !important;
}

:-moz-placeholder {
	color: #262626 !important;
}

::-moz-placeholder {
	color: #262626 !important;
}

:-ms-input-placeholder {
	color: #262626 !important;
}

/*************HOVER EFFECT*******/
.hover-effect {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
	position: relative;
	display: inline-block;
	width: 100%;
	clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%, 0 80px);
	-webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-effect:hover {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.hover-effect i {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--white);
	position: absolute;
	left: 50%;
	top: -100px;
	z-index: 1;
	line-height: 50px;
	text-align: center;
	margin: 0 0 0 -25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
	top: 50%;
	margin: -25px 0 0 -25px;
}

.hover-effect:hover i:hover {
	background-color: var(--secondary-color);
}

.hover-effect img {
	display: block;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	width: 100%;
}

.hover-effect:hover img {
	transform: scale(1.08) rotate(1deg);
}

/*************BACK TO TOP*******/
.progress-wrap {
	position: fixed;
	right: 10px;
	bottom: 10px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: "\f30c";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	color: var(--secondary-color);
	left: 0;
	top: 0;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--secondary-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/************************************* 1500px *************************************/
@media only screen and (max-width: 1500px) {
	.container {
		width: 95%;
	}

	.scrollwrap {
		width: 100% !important;
		padding: 0;
	}
}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
	.header-right {
		gap: 10px;
	}

	.call-us {
		padding: 30px 0 30px 15px;
	}

	.products {
		padding-left: 35px;
	}

	.products .container {
		width: 100%;

	}
}

/************************************* 1366px *************************************/
@media only screen and (max-width: 1366px) {
	header .container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.heading {
		font-size: 50px;

		line-height: 56px;
	}

	.call-us span {
		font-size: 18px;
	}

	.logo img {
		width: 320px;
	}

	.content-block h3 {
		font-size: 48px;
		line-height: 54px;
	}

	.big-heading {
		font-size: 66px;

		line-height: 72px;
	}

}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
	.counter-section li h2 {

		font-size: 60px;
	}

	.heading {
		font-size: 44px;
		line-height: 50px;
	}

	.serv-box {
		padding: 30px;
	}

	.footer-col {

		padding: 100px 15px 70px 15px;
	}

	.ind-list-item {
		text-align: left;
	}

	.ind-list-item h2 {

		font-size: 30px;
	}

	.ind-list-item:hover .ind-img {

		left: auto;
		right: 15px;
	}

	.scroll-content {

		padding: 250px 60px;
	}

	.content-block h3 {
		font-size: 44px;
		line-height: 50px;
	}

	.mv-panel {
		padding: 80px 50px;
	}

	.mv-serial {
		font-size: 140px;
	}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
	.container {
		width: 90%;
	}

	.scroll-right-left h2 {
		font-size: 28px;
	}

	.scroll-right-left h2 span {

		margin: 0 10px;
	}

	.profile-left {
		padding-right: 0px;
	}

	.heading-wrap {

		align-items: flex-start;
		flex-direction: column;
	}

	.company-profile-wrap,
	.products-wrap,
	.services-wrap,
	.news-main-wrap {
		flex-direction: column;
	}

	.counter-section li {

		flex: 0 0 48.5%;
	}

	.services {
		padding-bottom: 0px;
	}

	.news-right {
		margin-top: 40px;
	}

	.heading br {
		display: none;
	}

	.latest-news {
		padding-top: 40px;
	}

	.news-left {

		position: initial;
	}

	.footer-row {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.col-logo {
		padding-left: 0px;
	}

	.col-cta {
		flex: 0 0 80%;
	}

	.footer-heading {
		margin-bottom: 10px;
	}

	.col-cta {
		padding-right: 0px;
	}

	.col-links,
	.col-contact {
		flex: 0 0 50%;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.footer-col {
		padding: 50px 15px 15px 15px;
	}

	.col-cta {
		padding-bottom: 30px;
	}

	.company-profile:before {

		height: 55%;

		top: auto;
		bottom: 0;
	}

	.call-us {
		padding: 20px 0 20px 15px;
	}

	.neway-logo {

		min-height: 80px;
	}

	.product-left {
		padding-right: 0px;
	}

	.about-wrap {
		flex-direction: column;
	}

	.fact-card {
		flex: 0 0 31.1%;
	}

	.content-block p {
		font-size: 20px;
	}

	.mv-section {
		flex-direction: column;
	}

	.mv-panel {
		flex: 0 0 100%;
		padding: 80px 50px;
	}

	.mv-serial {
		font-size: 120px;
	}

	.cv-card {
		flex: 0 0 48%;
	}


}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {
	.neway-logo {
		min-height: 80px;
	}

	.overview {
		padding: 60px 0px 0px;
	}

	.head-cap {
		margin-bottom: 10px;
	}

	.products {
		padding: 60px 0px;
	}

	.services {
		padding-top: 60px;
	}

	.footer-bottom-row {
		flex-direction: column;
		gap: 10px
	}

	.products {
		padding-left: 30px;
	}

	.big-heading {
		font-size: 60px;
		line-height: 66px;
	}

.gen-row {
	gap: 0; 
	flex-direction: column;
	margin:10px 0;
	gap:10px 0;
}

.gen-cl-35 {
	flex: 0 0 100%;
	 
}
.gen-cl-70 {
	 
	padding:20px;
	 
	 
}

.order{
	order:-1;
}
	.ch-msg-wrap {
		flex-direction: column;
		gap: 40px;
	}

	.ch-msg-content::before {
		top: 0px
	}

	.ch-msg-content {
		padding-left: 0;
		border-left: none;
		border-top: 3px solid var(--secondary-color);
		padding-top: 30px;
	}

	.product-wrap {
		flex-direction: column;
		gap: 0px;
	}

	.product-img {
		position: relative;
		top: auto;
	}

}



@media(max-width: 768px) {
	.sticky-wrapper {
		flex-direction: column;
		padding: 0px;
	}

	.sticky-image,
	.scroll-content {
		width: 100%;
	}

	.sticky-image {
		position: relative;
		height: 60vh;
	}

	.sticky-image {
		display: none;
	}

	.mob-img-stk {
		display: block;
	}

	.scroll-content {

		padding: 50px 40px;
	}

	.mob-img-stk {
		margin-bottom: 30px;
	}

	.content-block p {
		margin-bottom: 0px;
	}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {

	.two-col,
	.three-col,
	.four-col,
	aside,
	summary {
		flex: 0 0 100%;
		margin: 0 0 25px 0;
	}

	.ind-list-item h2 {
		font-size: 24px;
	}

	.ind-list-item {
		padding: 10px 0;
	}

	.heading {
		font-size: 38px;
		line-height: 46px;
	}
	header { 
	padding:0;
}

	.header-wrap {
		align-items: normal;
		flex-direction: column;
		padding-top: 10px;
	}

	.call-us {
		padding: 10px 0 10px 0px;
		border-left: none;
		flex: 0 0 50%;

	}

	.neway-logo {
		flex: 0 0 50%;
		justify-content: flex-end;

	}

	.header-right {
		gap: 0px
	}

	.logo {
		border-bottom: 1px solid #e2e2e2;
		padding: 10px;
	}

	.neway-logo {
		min-height: 60px;
	}

	header.smaller .call-us,
	header.smaller .neway-logo {
		display: none;
	}

	header.smaller .logo {
		border-bottom: none;
	}

	.serv-content h3 {
		font-size: 26px;
	}

	.serv-content p {
		font-size: 18px;
	}
	
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
	.gap-50 {
		height: 25px;
	}

	.gap-100 {
		height: 50px;
	}

	.heading {
		font-size: 34px;
		line-height: 40px;
		margin-bottom: 12px;
	}

	.heading-wrap p {
		font-size: 18px;
	}

	.serv-icon {
		flex: 0 0 70px;
	}

	.ind-img {

		width: 94px;
		height: 110px;
		clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
	}

	.news-item {

		align-items: flex-start;

		flex-direction: column;
	}

	.news-img {
		width: 100%;
		margin-bottom: 20px;
	}

	.col-logo,
	.col-cta {
		flex: 0 0 100%;
		padding-left: 0px;
		padding-right: 0px;
		text-align: center;
	}

	.footer-logo img {

		width: 150px;
	}

	.col-cta {
		padding-top: 10px;
	}

	.text-sliding {

		padding: 10px 0px;
	}

	.caption-text {
		display: none;
	}

	.company-profile:before {
		width: 50%;
		height: 50%;
	}

	.heading-wrap p br {
		display: none;
	}

	.hover-effect {
		clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
	}

	.fact-grid {
		flex-direction: column;
	}

	.content-block p {
		font-size: 18px;
	}

	.content-block h3 {
		font-size: 34px;
		line-height: 40px;
		margin-bottom: 10px;
	}

	.spinner {

		background-size: 160px;
	}

	.banner h2 {
		line-height: 40px;
		font-size: 32px;
		margin: 0 0 10px;
	}

	.scroll-content {
		padding: 50px 25px;
	}

	.big-heading {
		font-size: 50px;
		line-height: 56px;
	}

	.mv-panel {
		padding: 60px 25px;
	}

	.mv-serial {
		font-size: 100px;
		right: 20px;
	}

	.mv-panel p {
		font-size: 18px;
		line-height: 28px;
	}

	.cv-card {
		flex: 0 0 100%;
	}

	.cv-section {
		padding-bottom: 60px;
	}

	.cv-header {
		margin-bottom: 30px;
	}
	 .thumb-item { flex-basis: 80px;
	 }
	 
	 .boxy{
	 
	padding:20px;
	}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	.counter-section h6 {
		margin-bottom: 5px;
	}

	.logo img {
		width: 285px;
	}

	.call-us i {
		width: 35px;
		height: 35px;
	}

	.company-profile:before {

		height: 44%;
	}

	.product-box h3 {
		font-size: 18px;
	}

	.col-contact p,
	.footer-info a {

		font-size: 16px;
	}

	.col-cta p br {
		display: none;
	}

	.footer-bottom-row {
		text-align: center;
	}

	.content-block h3 {
		font-size: 28px;
		line-height: 34px;
	}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
	.call-us div {
		display: none;
	}

	.logo img {
		width: 245px;
	}

	.counter-section {
		flex-direction: column;
	}

	.counter-section li {
		padding-top: 2px;
	}

	.counter-section li h2 {
		font-size: 48px;
	}

	.company-profile:before {
		height: 210px;
	}

	.serv-box {
		flex-direction: column;
	}

	.ind-img {
		display: none;
	}

	.footer-col {
		flex: 0 0 100%;
		padding-left: 0px;
		padding-right: 0px;
		border-left: none;
		border-right: none;
	}

	.footer-col {
		padding-top: 30px;
	}

	.heading {
		font-size: 28px;
		line-height: 32px;
	}

	.ind-list-item h2 {
		font-size: 22px;
	}
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}