:root{
/*	--primary-color: #2b2b2b;*/
	--primary-color:#12141D;
	--black-color: #363a42;
	--font-color:#737373;
	--white-color: #ffffff;
	--bg-grey:#f3f5f8;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	list-style: none;
	text-decoration: none !important;
}
html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body{
	overflow-x: hidden;
}
.para{
	font-size: 1.6rem;
	color: var(--font-color);
}
.section-header h1{
	font-size: 5rem;
    color: #010101;
    margin-bottom: 1rem;
}
.section-header p{
	color: #737373;
    font-size: 1.8rem;
    line-height: 3rem;

    font-weight: 300;
    margin-bottom: 5rem;
}
.main-btn{
	display: inline-block;
	background-color: var(--primary-color);
	padding: 1.2rem 2.4rem;
	font-size: 1.7rem;
	color: var(--white-color);
	margin-top: 1.2rem;
	transition: all .3s ease-in;
	border: .1rem solid var(--primary-color);
}
.main-btn:hover{
	background-color: transparent;
	color: var(--primary-color);
}
.padding{
	padding: 9rem 6rem;
}


/*start header*/
#header{
	padding: 2rem 5rem;
	position: relative;
	z-index: 1000;
	background-color: var(--white-color);
}
#header nav li .nav-link{
	padding: 1rem 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 700;
    border-top: .4rem;
    border-bottom: .4rem;
    transition: all 350ms ease-out;
    color: var(--font-color);
    position: relative;
}
#header nav li .nav-link.active,
#header nav li .nav-link:hover{
    color: var(--primary-color);	
}
#header nav li .nav-link::before{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background-color: var(--primary-color);
	transition: all .3s ease-in;
	opacity: 0;
}
#header nav li .nav-link.active::before,
#header nav li .nav-link:hover::before{
	opacity: 1;
}
/*end header*/

/*start banner*/
.banner .carousel-item{
	min-height: 90vh;
	position: relative;
	
	background-size: cover;
}
.banner .carousel-item .container{
	min-height: 90vh;
	display: flex;
	align-items: center;
}
.banner .content{
/*	background-color: red;*/
}
.banner .content span{
	font-size: 1.8rem;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: .8rem 5rem;
    display: inline-block;
    text-align: center;
}
.banner .content h1{
	font-size: 8rem;
	color: #afafaf;
	margin: 2rem 0;
	font-weight: 500;
}
.banner .content .btn{
	font-size: 1.6rem;
	color: #000;
    transition: all .5s ease-out;	
    margin-top: 4rem;
}
.banner .content p{
	color: #999;
	font-size: 1.8rem;
}
.banner .content .btn:hover{
	color: var(--primary-color);
	text-decoration: underline !important;
}
.banner .number{
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 50rem;
	opacity: .1;
	color: var(--font-color);
	margin-left: -12rem;
}
.banner .carousel-control-prev,
.banner .carousel-control-next{
	color: var(--primary-color);
	background-color: rgba(0, 0, 0, .9);
	font-size: 1.2rem;
	height: 5rem;
	width: 5rem;
	top: 35rem;
	transition: all .5s ease-in-out;
}
.banner .carousel-control-prev{
	left: -100%;
}
.banner .carousel-control-next{
	right: -100%;
}
.banner:hover .carousel-control-prev{
	left: 2rem;
}
.banner:hover .carousel-control-next{
	right: 2rem;
}
.banner .main-btn{
	border-color: var(--white-color);
	background-color: transparent;
}
.banner .main-btn:hover{
	background-color: var(--white-color);
	color: var(--black-color);
}
/*end banner*/

/*start why choose us*/
.why-choose-us .box{
	position: relative;
}
.why-choose-us .box::before{
	content: "";
	position: absolute;
	top: .5rem;
	left: 2rem;
	width: 3rem;
	height: 3rem;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 50%;
	z-index: -1;
	transition: all .3s ease-in-out;
}
.why-choose-us .box:hover::before{
	transform: translateX(2rem);
}
.why-choose-us .box h4{
	font-size: 2.3rem;
	font-weight: 600;
	margin: 1.5rem 0;
}
.why-choose-us .img{
	position: relative;
}
.why-choose-us .img::before{
	content: "";
	position: absolute;
	top: -5rem;
	right: -5rem;
	width: 100%;
	height: 100%;
	background: url("../img/dots.svg") no-repeat top right;
	z-index: -1;
	filter: brightness(0);

}
.why-choose-us .img img{
	width: 100%;
	object-fit: cover;
	transition: all .3s ease-in;
}
/*end why choose us*/

/*start normal section*/
.normal-section {
    background: linear-gradient(to right, var(--primary-color), var(--black-color));
    color: #fff;
}

.normal-section-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.normal-section-text {
    font-size: 1.8rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
}
.normal-section-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 .8rem 2rem rgba(0, 0, 0, 0.2);
}
.laboratory .main-btn{
	border-color: var(--white-color);
	background-color: transparent;
}
.laboratory .main-btn:hover{
	background-color: var(--white-color);
	color: var(--black-color);
}
.product-section .normal-section-img{
	width: 40rem;
	height: 40rem;
}
.normal-section-img img{
	width: 100%;
	object-fit: cover;
	transition: all .3s ease-in;
}
.normal-section-img.img-1{
	background: url("../img/products/various-types-of-o-rings-as-per-requirement/various-types-of-o-rings-as-per-requirement-2.jpg") no-repeat center center;
	background-size: cover;
}
.normal-section-img.img-2{
	background: url("../img/products/custom-rubber-solution/custom-rubber-solution-2.png") no-repeat center center;
	background-size: cover;
}

.normal-section-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.normal-section-img:hover img {
    transform: scale(1.08);
    filter: brightness(85%) contrast(115%);
}

.normal-section-img:hover::before {
    opacity: 0.8;
}


.normal-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
}

.normal-section-list {
    list-style: none;
    padding: 0;
}

.normal-section-list li {
    font-size: 1.7rem;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
}

.normal-section-list i {
    color: var(--bg-grey);
    margin-right: 1rem;
}
/*end normal section*/

/*start cross-img*/
.cross-img {
	min-height: 80vh;
}
.cross-img .img{
	position: relative;
	height: 100%;
}
.cross-img .box{
	object-fit: cover;
/*	position: absolute;*/
	border-radius: 2rem;
	border: .1rem solid rgba(0, 0, 0, .1);
}
.cross-img .box img{
	width: 100%;
	object-fit: cover;
}
.cross-img .box.box-1{
	/*top: 0;
	left: 0;
*/	
/*	background: url("../img/products/various-types-of-o-rings-as-per-requirement/various-types-of-o-rings-as-per-requirement-2.jpg") no-repeat center center;*/
	
	background-size: cover;
}
.cross-img .box.box-2{
/*	background: url("../img/products/column-rubber-ring/column-pipe-rubber-ring-1.jpg") no-repeat center center;*/

	background-size: cover;
/*	bottom: -20rem;
	right: -50%;*/
}
.cross-img .para{
}
/*end cross-img*/

/*start offer*/
.offer {
}
.offer .offer-box{
	position: relative;
	overflow: hidden;
	flex-basis: 50%;
	border: .1rem solid rgba(0, 0, 0, .2);
	width: 100%;
	height: 50rem;
}
.offer .offer-box:nth-child(1){
	background: url("../img/products/column-rubber-ring/column-pipe-rubber-ring-4.jpg") no-repeat center center;
	background-size: cover;
}
.offer .offer-box:nth-child(2){
	background: url("../img/products/dwc-pipe-rubber-ring/dwc-pipe-rubber-ring-3.jpg") no-repeat center center;
	background-size: cover;
}
.offer .offer-box:last-child{
	background: url("../img/products/sprinkler-rubber-ring/sprinkler-pipe-rubber-ring-2.jpg") no-repeat center center;
	background-size: cover;
}
.offer .offer-box .overlay{
	position: absolute;
	top: 3rem;
	left: 3rem;
	right: 3rem;
	bottom: 3rem;
	border: .1rem solid rgba(0, 0, 0, .1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, .3);
}
.offer .offer-box .overlay h2{
	font-size: 4rem;
	color: var(--white-color);
}
.offer .offer-box .overlay p{
	color: var(--white-color);
	font-size: 2rem;
}
.offer .offer-box img{
	object-fit: cover;
	width: 100rem;
	height: 50rem;
}
.offer .offer-box::before{
	content: "";
    transform: skew(20deg, 0deg);
    transition: all 0.5s ease 0s;
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: rgba(255, 255, 255, .3);
    top: 0;
    left: -100%;

}
.offer .offer-box::after{
	content: "";
    transform: skew(20deg, 0deg);
    transition: all 0.5s ease 0s;
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: rgba(255, 255, 255, .3);
    top: 0;
    right: -100%;
}
.offer .offer-box:hover::before{
	left: -10%;
}
.offer .offer-box:hover::after{
	right: -10%;
}
/*end offer*/

/*start cta*/
.cta{
	background-color: var(--bg-grey);
	position: relative;
	z-index: 10;
}
.cta-box{
	background-color: var(--primary-color);
	position: relative;
}
.cta-box::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	clip-path: polygon(67% 77%, 100% 34%, 100% 100%, 0 100%, 0 84%);
    background: #1E2029;

}
.cta-box span{
	color: var(--bg-grey);
	font-size: 2.8rem;
	position: relative;
	z-index: 2;
}
.cta-box h1{
	position: relative;
	z-index: 2;
	font-size: 5rem;
	font-weight: 500;
	color: var(--white-color);
	margin: 2rem 0;
}
.cta-box .main-btn{
	border-color: var(--white-color);
		position: relative;
	z-index: 2;
}
.cta-box .main-btn:hover{
	background-color: var(--white-color);
}
/*end cta*/

/*start product detail*/
.product-detail {
  padding: 2rem;
  background-color: #f9f9f9;
}

.product-detail__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.product-detail__description {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #666;
}

.product-detail__price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #27ae60;
}

.product-detail__rating {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #f39c12;
}

.product-detail__btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.product-detail__image {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*end product detail*/

/*start sophisticated*/
.sophisticated{
	padding: 9rem 6rem;
	background-color: var(--bg-grey);
}
.sophisticated span{
    font-size: 1.6rem;
    color: #a5a5a5;
    margin: 0 0 1.5rem;
}
.sophisticated h1{
    font-size: 4.5rem;
    margin: 0 0 2rem;
}
.sophisticated .btn{
    padding: 1.2rem 3rem;
    border-radius: 0;
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    margin-top: 4rem;
}
.sophisticated .btn:hover{
	color: var(--white-color);
	background-color: var(--primary-color);
}
/*end sophisticated*/

/*start featured-products*/
.featured-products{
	background-color: var(--white-color);
	padding: 9rem 6rem;
}
.featured-products .swiper-slide{
	width: 30rem;
	padding: 3rem;
}
.featured-products .product-box{
	position: relative;
}
.featured-products .product-box .img{
	height: 35rem;
	overflow: hidden;
}
.featured-products .product-box img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: .3s ease;
}
.featured-products .product-box:hover img{
	transform: scale(1.3);
}
.featured-products .product-box h6,
.featured-products .product-box .price{
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
}
.featured-products .product-box h4{
	font-size: 3rem;
	color: var(--white-color);
	margin-top: 2rem;
	position: relative;
	z-index: 2;
}
.featured-products .product-box i{
	color: #ccc;
    font-family: "FontAwesome";
    font-size: 1.4rem;
    margin-right: .5rem;
}
.featured-products .product-box .price{
	font-weight: 500;
}
.featured-products .product-box .product-box-details{
	height: 12rem;
	padding-top: 2rem;
	overflow: hidden;
	background-color: var(--primary-color);
	position: relative;
}
.featured-products .product-box .product-box-details::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
    background: var(--black-color);
	z-index: 1;
	transition: all .3s ease-in-out;
}
.featured-products .product-box:hover .product-box-details::before{
	width: 100%;
}
.featured-products .product-box .img-overview{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all .5s ease-in;
}
.featured-products .product-box:hover .img-overview{
	opacity: 1;
}
.featured-products .product-box .img-overview i{
	font-size: 1.2rem;
	color: var(--white-color);
	width: 4rem;
	height: 4rem;
	background-color: transparent;
	border: .1rem solid var(--white-color);
	margin: 0 .5rem;
	text-align: center;
	line-height: 4rem;
	cursor: pointer;
	transition: opacity .3s ease-in, transform .4s ease-in;
	opacity: 0;
}
.featured-products .product-box .img-overview i:hover{
	background-color: var(--white-color);
	color: var(--black-color);
}
.featured-products .product-box .img-overview i:nth-child(even){
	transform: translateY(1.5rem);
}
.featured-products .product-box .img-overview i:nth-child(odd){
	transform: translateY(-1.5rem);
}
.featured-products .product-box:hover .img-overview i{
	opacity: 1;
	transform: translateY(0);
}
.featured-products .product-box .btn-overview{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all .1s linear;
}
.featured-products .product-box:hover .btn-overview{
	opacity: 1;
}
.featured-products .product-box .btn-overview a{
	border: .1rem solid var(--black-color);
	color: var(--black-color);
	font-size: 1.6rem;
	background-color: transparent;
	transition: all .3s ease-in;
	opacity: 0;
	transform: translateY(-5rem);
	padding: 1rem 3rem;
}
.featured-products .product-box .btn-overview a:hover{
	background-color: var(--black-color);
	color: var(--white-color);
}
.featured-products .product-box:hover .btn-overview a{
	transform: translateY(0);
	opacity: 1;
}
.featured-products .swiper-btn{
	z-index: 100;
	background-color: rgba(0, 0, 0, .5);
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	color: var(--white-color);
	text-align: center;
}
/*end featured-products*/

/*start mission*/
.mission{
	background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url("../img/c-2.jpeg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 50vh;
	display: flex;
	align-items: center;
	z-index: 10;
	position: relative;
}
.mission-2{
/*	background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url("../img/c-4.jpeg") no-repeat center center;*/
/*	background-size: cover;*/
/*	background-attachment: fixed;*/
	background: #1E2029;

}
.mission .content{
	background-color: var(--white-color);
	padding: 3rem;
}
.mission .content h2{
	font-size: 3rem;
	color: var(--black-color);
	font-weight: 600;
}
.mission .content ul li{
	font-size: 1.6rem;
	color: var(--font-color);
}
/*end mission*/


/*start counter*/

.counter-wrapper .counter-inner{
	min-height: 60vh;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)),  url("../img/counter-bg-1.jpg") no-repeat center center;
	background-size: cover;
}
.counter-wrapper .box{
	font-size: 1.6rem;
	box-shadow: 0 0 2rem .2rem rgba(0, 0, 0, .1);
	background-size: cover;
	border: .1rem solid rgba(255, 255, 255, .2);
	backdrop-filter: blur(.3rem);
}
.counter-wrapper .box span,
.counter-wrapper .box p{
	font-size: 4rem;
	color: var(--white-color);

}
.counter-wrapper .box .text{
	color: var(--white-color);
}
/*end counter*/

/*start category*/
.category{
	background-color: var(--bg-grey);
}
.category .category-box img{
	width: 100%;
	object-fit: cover;
	height: 40rem;
	position: relative;
}
.category .category-box .active-overview{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.category .category-box .active-overview h2{
	color: var(--white-color);
	font-size: 4rem;
}
.category .category-box:hover .active-overview h2{
	opacity: 0;
}
.category .category-box .overview{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .6);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s ease-in;
	opacity: 0;
}
.category .category-box:hover .overview{
	opacity: 1;
}
.category .category-box .overview a{
	color: var(--white-color);
	font-size: 2.3rem;
	transition: .3s ease-in;
	border-bottom: .2rem solid rgba(255, 255, 255, .2);
}
.category .category-box .overview a:hover{
	border-bottom-color: var(--white-color);
}
/*end category*/


/*about us (2)*/
.about-section{
	position:relative;
	z-index: 10;
	background-color: var(--white-color);
}

.about-section .content-column{
	position:relative;
	margin-bottom:4rem;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-top:5rem;
	padding-right:1rem;
}

.about-section .content-column .text{
	position:relative;
	color: var(--font-color);
	font-size:1.8rem;
	line-height:3rem;
	margin-bottom:40px;
}

.about-section .content-column .email{
	position:relative;
	color:var(--black-color);
	font-size: 2rem;
	font-weight:700;
	margin-bottom:5rem;
}

.about-section .image-column{
	position:relative;
	margin-bottom:50px;
}

.about-section .image-column .inner-column{
	position:relative;
	padding:4rem 4rem 0 0;
	margin-left:5rem;
}

.about-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0;
	top:0;
	left:4rem;
	bottom:10rem;
	z-index:-1;
	border:.2rem solid var(--black-color);
}

.about-section .image-column .inner-column .image{
	position:relative;
}

.about-section .image-column .inner-column .image::before{
	position:absolute;
	content:'';
	left:-5rem;
	bottom:-5rem;
	width:30rem;
	height:30rem;
	background:url(img/pattern-2.png) no-repeat;
}
.about-section .image-column .inner-column .image::after{
	position:absolute;
	content:'';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle, transparent ,rgba(0, 0, 0, 1.0));
}

.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}


.about-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:4rem;
	bottom:5rem;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color: var(--bg-grey);
	font-size:2.4rem;
	font-weight:700;
	line-height:3.4rem;
	padding-left:12.5rem;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0;
	top:0;
	width:11rem;
	height:11rem;
	color: var(--white-color);
	font-size:6.8rem;
	font-weight:700;
	line-height:10.5rem;
	text-align:center;
	background-color: transparent;
	border:1px solid var(--white-color);
}

.about-section h2{
	color: var(--black-color);

	font-size: 3rem;
}
.sec-title2{
	color:#fff;
}
.sec-title {
    position: relative;
    padding-bottom: 4rem;

}
.sec-title .title {
    position: relative;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    padding-right: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: -40%;
    bottom: .7rem;
    width: 10rem;
    height: .1rem;
    background-color: var(--primary-color);
}
/*about us (2)*/



/*start about us*/
.about .img{
	background-color: var(--bg-grey);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5rem;
}
.about .img img{
	object-fit: cover;
	width: 100%;
}
.about .content .subtitle{
	color: var(--primary-color);
	font-size: 2.3rem;
	font-weight: 600;
}
.about .content h1{
	margin: 2rem 0;	
	color: var(--black-color);
	font-weight: 600;
	font-size: 4rem;
}
/*end about us*/

/*start breadcrumb*/
.breadcrumb{
	min-height: 50vh;
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)) , url("../img/about-bread.jpg") no-repeat center center;
	background-size: cover;
	position: relative;
	z-index: 10;
}
.breadcrumb h1{
	font-size: 7rem;
	font-weight: 600;
	color: var(--white-color);
	padding-top: 5rem;

}
.breadcrumb p{
	color: var(--white-color);
}
/*end breadcrumb*/


/*start contact us*/


.contact {
    padding: 3rem;
    border-radius: 0.5rem;
}

/* Heading */
.contact h5 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Contact Text */
.contact-text {
    color: var(--font-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Contact Info List */
.contact ul {
    padding: 0;
    list-style: none;
}

.contact ul li {
    font-size: 1.1rem;
    color: var(--black-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Labels */
.contact label {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black-color);
}

/* Input Fields */
.contact .form-control {
    font-size: 1.4rem;
    padding: 2rem 1rem;
    border-radius: 0.3rem;
    margin-bottom: 2rem;
}
.contact .form-control:focus{
	border-color: var(--font-color);
	box-shadow: none;
}

/* Submit Button */
.contact .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Follow Us Section */
.contact .follow-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--black-color);
    margin-top: 1.5rem;
}

.contact .heading{
	color: var(--black-color);
	font-size: 4rem;
}
.contact .box-container{
	margin-top: 8rem;
	flex-wrap: wrap;
}
.contact .box{
	margin-bottom: 3rem;
	flex: 1 1 48%;
}
.contact .box i{
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	font-size: 1.6rem;
	color: var(--white-color);
	background-color: var(--black-color);
	margin-right: 2rem;
	border-radius: 50%;
	text-align: center;
}
.contact .box h4{
	font-size: 2.3rem;
	color: var(--primary-color);
	font-weight: 600;
}
.contact .box a,
.contact .box p{
	font-size: 1.6rem;
	color: var(--font-color);

}
.contact .box a:hover{
	color: var(--primary-color);
	transition: all .3s linear;
}

/*end contact us*/




/*start badge*/
.services {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.services .title {
    margin-bottom: 30px;
}

.services .title h2 {
    margin-bottom: 24px;
    font-size: 4rem;
}

.services .title p {
    font-size: 18px;
    font-weight: 300;
    color: #cdd4e0;
}

.service-box {
    height: 100%;
    width: 100%;
    padding: 40px 40px;
    background: #1E2029;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 0;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.service-box:hover {
    transform: perspective(500px) rotateX(5deg) rotateY(5deg) translateY(-5px);
    box-shadow: 0px 15px 30px rgba(255, 255, 255, 0.2);
    transition: all .3s ease-in;
}

.service-box::before {
    position: absolute;
    content: "";
    top: -50%;
    right: -50%;
    height: 0;
    width: 0;
    border-radius: 50%;
    background: #ffffff;
    z-index: -1;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.service-box:hover:before {
    height: 200%;
    width: 220%;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.service-box .title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.service-box .title .round-shape {
    height: 6rem;
    width: 6rem;
    padding: 2rem 2rem;
    background: #2a2c34;
    border-radius: 50%;
    margin-right: 2rem;
}

.service-box .title .round-shape img {
    height: 2rem;
    width: 2rem;
    filter: invert(1);
}

.service-box .title h4 {
    font-size: 1.8rem;
    font-weight: 600;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.service-box:hover h4 {
    color: #2a2c34;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.service-box strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.service-box:hover strong {
    color: #2a2c34;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.service-box p {
    color: #8a94a6;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}
/*end badge*/



/*start single product*/
.single-product img{
	width: 100%;
	object-fit: cover;
}
.single-product .img-box img{
	width: 55rem;
	height: 40rem;
	object-fit: cover;
}
.single-product .img{
	width: 30%;
	height: 17rem;
	cursor: pointer;
	object-fit: cover;
	padding: 1rem;
}
.single-product .img img{
	width: 17rem;
	height: 17rem;
	transition: all .3s ease-in;
}
.single-product .content{
	padding: 10rem 3rem;
	background-color: var(--primary-color);
	height: 100%;
}
.single-product .content span{
	color: var(--black-color);
	background-color: var(--white-color);
	padding: .5rem 3rem;
	display: inline-block;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
.single-product .content h1{
	font-size: 5rem;
	color: var(--font-color);
	font-weight: 600;
}
.single-product .content p{
	font-size: 1.;
}
/*end single product*/

/*start values badges*/
.values {
	position: relative;
	z-index: 10;
}
.values .service-box{
	text-align: center;
}
.values i{
	color: var(--primary-color);
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	font-size: 1.8rem;
	background-color: var(--white-color);
	border-radius: 50%;
	transition: all .3s ease-in;
}
.values .service-box:hover i{
	background-color: var(--primary-color);
	color: var(--white-color);
}
.values h4{
	display: block;
	width: 100%;
	font-size: 2.8rem;
	margin: 2rem 0;
}
/*end values badges*/

/*start quality assurance*/
.quality-assurance {
    background: linear-gradient(90deg , rgba(0, 0, 0, .8), rgba(0, 0, 0, .4)), url('../img/products/various-types-of-o-rings-as-per-requirement/various-types-of-o-rings-as-per-requirement-2.jpg') center center no-repeat;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    position: relative;
    z-index: 10;
}


.quality-assurance h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--white-color);
    color: var(--primary-color);
    display: inline-block;
    padding: 1rem 6rem;
}

.quality-assurance p {
    font-size: 1.7rem;
    margin-top: 2rem;
    color: var(--white-color);
}

/*end quality assurance*/

/*start footer */
#footer{
	background-color: var(--primary-color);	
	padding-bottom: 1rem;
	position: relative;
	z-index: 10;
}
#footer .row{
	padding: 9rem 6rem 0;
}
#footer .box .logo{
	width: 20rem;
	margin-bottom: 3rem;
}
#footer .box .para{
	font-size: 1.4rem;
}
#footer .box h4{
	color: var(--white-color);
	font-size: 3rem;
	margin-bottom: 3rem;
}
#footer .box a{
	font-size: 1.8rem;
	display: inline-block;
	margin-bottom: 1.5rem;
	color: var(--font-color);
	transition: all .3s ease-in;
}
#footer .box a:hover{
	color: var(--white-color);
}

#footer .box .img-container{
	gap: 1rem;
}
#footer .box .img-container .img{
	flex: 1 1 29%;
}
#footer .box .img-container .img img{
	width: 100%;
}
#footer .credits{
    background: #1E2029;
    text-align: center;
    padding: 3rem 4rem;
    margin-top: 5rem;

}
/*end footer */



/*start timeline */
.page-wrapper{
	overflow: hidden;
}
.page-wrapper img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.page-wrapper h2 {
  font-size: 5rem;
  color: var(--white-color);
}

.page-wrapper .inline-block {
  max-width: 100%;
  display: inline-block;
}

.page-wrapper {
  z-index: 0;
  position: relative;
}


.page-wrapper .margin-bottom-medium {
  margin-bottom: 3.2rem;
}

.page-wrapper .paragraph-large {
  font-size: 2rem;
  color: var(--font-color);
}

.page-wrapper .section-timeline-heading {
  background-color: var(--primary-color);
}

.page-wrapper .padding-vertical-xlarge {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.page-wrapper .timeline-main_heading-wrapper {
  color: #fff;
  text-align: center;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper .timeline_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 112rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.page-wrapper .timeline_item {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;

}

.page-wrapper .timeline_left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
}

.page-wrapper .timeline_centre {
  justify-content: center;
  display: flex;
}

.page-wrapper .timeline_date-text {
  color: #fff;
  letter-spacing: -0.03em;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  position: sticky;
  top: 50vh;
}

.page-wrapper .timeline_text {
  color: var(--font-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.page-wrapper .timeline_circle {
  background-color: #fff;
  border-radius: 100%;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 0 8px var(--primary-color);
}

.page-wrapper .timeline_progress {
  z-index: -2;
  background-color: #414141;
  width: 3px;
  height: 100%;
  position: absolute;
}

.page-wrapper .timeline_progress-bar {
  z-index: -1;
  background: #ff6a00;
  background: -webkit-linear-gradient(to bottom, #ff6a00, #ee0979);
  background: linear-gradient(to bottom, #ff6a00, #ee0979);
  width: 3px;
  height: 50vh;
  position: fixed;
  inset: 0 auto 50vh;
}

.page-wrapper .section-timeline {
  z-index: -3;
  background-color: var(--primary-color);
  position: relative;
}

.page-wrapper .margin-bottom-xlarge {
  margin-bottom: 56px;
}

.page-wrapper .timeline_link {
  opacity: 0.6;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
}

.page-wrapper .timeline_link:hover {
  opacity: 1;
}

.page-wrapper .link-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.page-wrapper .text-colour-lightgrey {
  color: #ffffffa6;
}

.page-wrapper .overlay-fade-top {
  background-image: linear-gradient(var(--primary-color), var(--primary-color)00);
  height: 80px;
  position: absolute;
  inset: 0% 0% auto;
}

.page-wrapper .overlay-fade-bottom {
  background-image: linear-gradient(to top, var(--primary-color), var(--primary-color)00);
  height: 80px;
  position: absolute;
  inset: auto 0% 0%;
}

@media screen and (max-width: 767px) {
  .page-wrapper h2 {
    font-size: 40px;
  }

  .page-wrapper .paragraph-large {
    font-size: 18px;
  }

  .page-wrapper .padding-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /*.page-wrapper .timeline_item {
    grid-template-columns: 64px 1fr;
    width: 100%;
  }*/

  .page-wrapper .timeline_date-text {
    margin-bottom: 24px;
    font-size: 3rem;
  }

  .page-wrapper .timeline_text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 576px){
	.page-wrapper .timeline_item {
	    grid-template-columns: 1fr 9rem 1fr;
	}
}

@media screen and (max-width: 450px){
	.page-wrapper .timeline_item {
	    grid-template-columns: 1fr 5rem 1fr;
	}
}

.page-wrapper .subscribe-btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}

.page-wrapper .youtube-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff0000;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.page-wrapper .youtube-button:hover {
  background-color: #e60000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/*end timeline*/

