*
{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
.header{
	min-height: 100vh;
	width: 100%;
	background-color: white;
	background-position: center;
	background-size: cover;
	position: relative;
}


/*--------home button--------*/
nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

mark{
    background-color: #ffdd4b;
}
nav img{
	height: 70px;
	width: 350px;
	margin-top: 5px;
	margin-left: 5px;
}
.nav-links{
	flex: 1;
	text-align: center;
	margin-left: 320px;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	margin-top: 10px;
	padding: 15px 20px;
	position: relative;
}
.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #f44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
}
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 35%;
	left: 5%;
	transform: translate(-50%,-50%);
	text-align: center;
	animation: textup 12s linear infinite;
	transform: translateY(100px);
}
.text-box h1{
	font-size: 62px;
	color: transparent;
	-webkit-text-stroke: 1px #fff;
	background: url(img/back.png);
	-webkit-background-clip: text;
	background-position: 0 0;
	animation: back 2s linear infinite;
}

@keyframes back{
	100%{
		background-position: 200px 0;
	}
}

.text-box p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: #fff;

}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.hero-btn2{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
	left: -10px;
}
.hero-btn2:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.hero-btn3{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn3:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
@media(max-width: 700px){
	.hero-btn{
		margin-left: 250px;
		width: 50%;
	}
	.hero-btn2{
		margin-left: 325px;
		width: 40%;
	}
		.hero-btn3{
		margin-left: 10px;
	}
}
.red-btn{
	border: 1px solid #f44336;
	background: transparent;
	color: #f44336;
}
.red-btn:hover{
	color: #fff
}

nav .fa{
	display: none;
}
@media(max-width: 700px){
	nav img{
		height: 50px;
		width: 300px;
	}

	.text-box h1{
		font-size: 20px;
	}
	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: fixed;
		background: #f44336;
		height: 100vh;
		width: 210px;
		top: 0;
		right: -210px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: black;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links ul{
		padding: 30px;
	}
}
@keyframes textup
{
	10%{
		transform: translateY(0px);
	}
	100%{
		transform: translateY(0px);
	}
}
.text-box
{
	animation-delay: 0s;
}

.text-box span
{
	background: red;
	height: 1px;
	width: 1200px;
	position: absolute;
	right: 50px;
	left: 15px;
}
@media(max-width: 700px){
	.text-box span{
		width: 330px;
	}
}
/*--------product--------*/
.zproduct{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
	margin-top: 600px;
}
.zproduct-col{
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	margin-top: -50px;
}
.zproduct-col img{
	width: 100%;
	height: 100%;
	display: block;
}
.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0;
}
.layer:hover{
	background: rgba(226, 0, 0, 0.7);
}
.layer h3{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	transition: 0.5s;
}
.layer:hover h3{
	bottom: 49%;
	opacity: 1;
}
@media(max-width: 700px){
	.zproduct-col{
	margin-top: -20px;
	margin-bottom: 50px;
}

}
.product{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 30px;
	position: relative;
	margin-left: 130px;
}
.product h1{
	margin-bottom: 20px;
	margin-left: 390px;
	position: absolute;
}
.product p{
	margin-top: 50px;
	margin-left: 50px;

}

.product span
{
	background: red;
	height: 1px;
	width: 400px;
	position: absolute;
	right: 50px;
	left: 470px;
}

@media(max-width: 700px){
	.product span{
		left:90px;
		width: 250px;
	}
	.product h1{
		margin-left: -90px;
	}
	.product p{
		margin-left: -160px;
	}
}

h1{
	font-size: 36px;
	font-weight: 600;

}
.product h1{

	  transition: 0.5s;
  transform-origin: left;
  transform: scaleX(0);
}
.product h1[data-scroll="in"]{
  transform: scaleX(1);

}
.product h1:before{
  content: '';
  position: absolute;
  top: 0;
  left: 160px;
  width: 60%;
  height: 80%;
  background: #f33446;
  transform-origin: right;
  transition: 0.5s;
}
@media(max-width: 700px){
	.product h1:before{
		left: 10px;
		width: 100%;
	}
}
.product h1[data-scroll="in"]:before{
  transform: scaleX(0);
  transition-delay: 0.5s;

}

p{
	color: black;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	padding: 20px;
}
.product p{
  font-size: 1.2em;
  transition: 1s;
  opacity: 0;
}
.product p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 1s;

}
.container1{
    width: 85vmin;
    position: relative;
    margin-top: 600px;
    transform: translate(-54%,-145%);
    top: 145%;
    left: 54%;
    overflow: hidden;
    border: 20px solid #f44336;
    border-radius: 8px;
    box-shadow: 10px 25px 30px rgba(30,30,200,0.3);
}
@media(max-width: 700px){
	.container1{
		margin-top: 280px;
		margin-left: -90px;
		width: 50vmin;
	}
}
.wrapper{
    width: 100%;
    display: flex;
    animation: slide 16s infinite;
}
@keyframes slide{
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(0);
    }
    30%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    55%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-200%);
    }
    80%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(-300%);
    }
}
img{
    width: 100%;
}

.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
/*--------department--------*/
.department{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 490px;
}
@media(max-width: 700px){
	.department{
		padding-top: 350px;
	}
}
.department span
{
	background: red;
	height: 1px;
	width: 400px;
	position: absolute;
	right: 50px;
	left: 420px;
}

@media(max-width: 700px){
	.department span{
		left:100px;
		width: 250px;
	}
}
.department-col{
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}
.department-col img{
	width: 100%;
	border-radius: 10px;
}

.department-col p{
	padding: 0;
}

.department-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
}

@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}
.department h1{

	  transition: 0.5s;
  transform-origin: left;
  transform: scaleX(0);
}
.department h1[data-scroll="in"]{
  transform: scaleX(1);

}
.department h1:before{
  content: '';
  position: absolute;
  top: 0;
  left: 160px;
  width: 60%;
  height: 80%;
  background: #f33446;
  transform-origin: right;
  transition: 0.5s;
}
@media(max-width: 700px){
	.department h1:before{
		left: 10px;
		width: 100%;
	}
}
.department h1[data-scroll="in"]:before{
  transform: scaleX(0);
  transition-delay: 0.5s;

}

p{
	color: black;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	padding: 20px;
}
.department p{
  font-size: 1.2em;
  transition: 1s;
  opacity: 0;
}
.department p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 1s;

}
.department h3{
  font-size: 1.2em;
  transition: 1s;
  opacity: 0;
}
.department h3[data-scroll="in"]{
  opacity: 1;
  transition-delay: 1s;

}
.department img{
  font-size: 1.2em;
  transition: 1s;
  opacity: 0;
}
.department img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 1s;

}
/*--------contact us--------*/
.cta{
	margin: 10px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(img/banner2.jpg);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
	margin-top: 50px;
}
.cta h1{
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
}
.cta h1{
  transition: 1s;
  opacity: 0;
}
.cta h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 1s;

}
.cta a{
  transition: 1s;
  transform: translateX(100px);
  opacity: 0;
}
.cta a[data-scroll="in"]{
  transform: translateX(0);
  transition-delay: 1s;
  opacity: 1;

}
@media(max-width: 700px){
	.cta{
		margin-bottom: 60px;
		margin-left: 50px;
	}
}

/*-----footer-----*/
footer{
			position: relative;
			width: auto;
			background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(img/aboutt.jpg);
			background-position: bottom;
			background-size: cover;
			color: #fff;
		}	
		footer .container{
			margin-top: 100px;
			width: 100%;
			display: grid;
			grid-template-columns: 1fr 1fr 1fr 1fr;
			grid-gap: 20px;
		}
		footer .container .line h2{
			position: relative;
			margin-bottom: 15px;
			color: white;
			margin-top: 20px;
			margin-left: 60px;
		}
		footer .container .line h2::before{
			content: '';
			position: absolute;
			bottom: -5px;
			left: 0;
			width: 50px;
			height: 2px;
			background-color: #f44336;
		}
		footer .container .line p{
			color: white;
			font-size: 12px;
			margin-left: 100px;
			padding: 10px;
		}
		.footer-1 .line p{
			text-align: justify;
			padding: 18px 40px 20px 10px;
		}
		.social{
			margin-top: 20px;
			display: grid;
			grid-template-columns: repeat(3, 50px);
			grid-gap: 10px;
			margin-left: 250px;
		}
		@media(max-width: 700px){
			.social{
				margin-left: 100px;
			}
		}
		.social li{
			list-style: none;
		}
		.social li a{
			position: relative;
		    display: block;
		    width: 50px;
		    height: 50px;
		    border-radius: 50%;
		    background-color: #f44336;
		    text-align: center;
		    transition: 0.5s;
		    transform: translate(0,0px);
		    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
		}
		.social li a .fa{
			color: white;
			font-size: 20px;
			margin-top: 20px;
		}
		.social li a .fa:hover{
			color: #fff;
		}
		.social li a:hover {
    	transform: rotate(0deg) skew(0deg) translate(0, -10px);
		}
		.social li:nth-child(1) a:hover {
		    background-color: #3b5999;
		}
		.social li:nth-child(2) a:hover {
		    background-color: #55acee;
		}
		.social li:nth-child(3) a:hover {
		    background-color: #e4405f;
		}
		.social li:nth-child(4) a:hover {
		    background-color: #cd201f;
		}
		.social li:nth-child(5) a:hover {
		    background-color: #0077B5;
		}
		
		.footer-2{
			position: relative;
		}
		.footer-2 li{
			list-style: none;
		}
		.footer-2 li a{
			color: white;
			text-decoration: none;
			font-size: 12px;
			margin-left: 100px;			
		}
		.footer-2 li a:hover{
			color: #f44336;
		}
		.footer-3{
			position: relative;
		}
		.footer-3 li{
			display: grid;
			grid-template-columns: 30px 1fr;
			margin-bottom: 10px;
		}
		.footer-3 li span{
			color: white;
			text-decoration: none;
			font-size: 12px;
			margin-left: 100px;
		}
		.footer-3 a{
			color: white;
			text-decoration: none;
			font-size: 12px;
		}
		.footer-3 a:hover{
			color: #f44336;
		}
		.copyright{
			width: auto;
			background-color: #c0c0c0;
			padding: 0px 100px;
			text-align: center;
			color: #808080;
		}
		@media(max-width: 991px){
			footer{padding: 40px;
			}
			footer .container{
				grid-template-columns: repeat(2, 1fr);
			}
			.copyright{
				padding: 8px 40px;
			}
		}
		@media(max-width: 768px){
			footer .container{
				grid-template-columns: repeat(1, 1fr);
			}
		}


/*---------about us*/
.sub-header{
	height: 5vh;
	width: 100%;
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #fff;
}
.sub-header .text-box1 img{
	width: 1330px;
  	height: 500px;
  	border-radius: 10px;
	background-position: center;
	background-size: cover;
	text-align: center;
	filter: brightness(50%);
}
.sub-header .text-box1 span{
		background: red;
	height: 1px;
	width: 560px;
	position: absolute;
	right: 50px;
	left: 385px;
	top: 360px;
}
.sub-header .text-box1 h1{
	filter: brightness(100%);
	margin-top: -350px;
	font-size: 80px;
	font-weight: bolder;
	margin-right: 50px;
	color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(img/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back1 2s linear infinite;
  text-transform: uppercase;
}
@keyframes back1{
  100%{
    background-position: 200px 0;
  }
}
.sub-header .text-box1 p{
	filter: brightness(100%);
	color: white;
	font-size: 30px;
	font-weight: bolder;
}
@media(max-width: 700px){
	.sub-header .text-box1{
		font-size: 50px;
		margin-top: 50px;
	}
	.sub-header .text-box1 h1{
		font-size: 50px;
		margin-left: 30px;
	}
	.sub-header .text-box1 span{
		width: 350px;
		left: 35px;
		top: 300px;
		background: transparent;
	}
	.sub-header .text-box1 img{
    width: 420px;
    height: 450px;
    border-radius: 10px;
	}
}

.about-us{
	width: 80%;
	margin: auto;
	padding-top: 600px;
	padding-bottom: -60px;
}
.about-us2{
	width: 80%;
	margin: auto;
	padding-top: -60px;
	padding-bottom: 50px;
}
.about-us span
{
	background: red;
	height: 1px;
	width: 160px;
	position: absolute;
	right: 50px;
	left: 694px;
	top: 850px;
}
.about-us2 span
{
	background: red;
	height: 1px;
	width: 160px;
	position: absolute;
	right: 50px;
	left: 137px;
	top: 1270px;
}

.about-col{
	flex-basis: 48%;
	padding: 30px 2px;

}

.about-col img{
	width: 100%;

}
@media(max-width: 700px){
	.about-us2 .about-col img{
		margin-top: -60px;

	}
}
@keyframes animate
{
	0%
	{
		transform: translateY(0px);
	}
	20%
	{
		transform: translateY(-20px);
	}
}
.about-col h1{
	padding-top: 0;
	margin-top: 80px;
}
.about-col h1{
  transition: 1s;
  opacity: 0;
}
.about-col h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.about-col img{
  transition: 1s;
  opacity: 0;
}
.about-col img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 1s;

}
.about-col p{
	padding: 15px 0 25px;
}
.about-col p{
  transition: 1s;
  opacity: 0;
}
.about-col p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
@media(max-width: 700px){
	.about-us .about-col h1{
		margin-top: -50px;
		margin-left: 100px;
	}
	.about-us2 .about-col h1{
		margin-top: -50px;
		margin-left: 110px;
	}
	.about-col p{
		text-align: center;
	}
	.about-us span{
		background: transparent;
		height: 1px;
		width: 160px;
		position: absolute;
		right: 50px;
		left: 135px;
		top: 943px;
	}
	.about-us2 span{
		background: transparent;
		height: 1px;
		width: 160px;
		position: absolute;
		right: 50px;
		left: 135px;
		top: 1110px;
	}
}
.values{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 10px;
}
.values .h1{
	font-size: 36px;
	font-weight: 600;
}
.values h1{
  transition: 1s;
  opacity: 0;
}
.values h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.values h3{
  transition: 1s;
  opacity: 0;
}
.values h3[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.values p{
  transition: 1s;
  opacity: 0;
}
.values p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.values span{
	background: red;
	height: 1px;
	width: 250px;
	position: absolute;
	right: 50px;
	left: 550px;
	top: 1630px;
}
@media(max-width: 700px){
	.values span{
		left: 100px;
		top: 1620px;
	}
}
.values p{
	color: black;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	padding: 10px;
}
.course-col{
	flex-basis: 31%;
	background: #ffc7c7;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 2px;
	transition: 0.5s;
}
.values h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.course-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.7);
}

/*-------contact us------*/
.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
	margin-top: 600px;
}
.location iframe{
	width: 100%;
}
.contact-us{
	width: 80%;
	margin: auto;
}
.contact-col{
	flex-basis: 48%;
	margin-bottom: 30px;
}
.contact-col div{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.contact-col .fa{
	font-size: 28px;
	color: #f44336;
	margin: 10px;
	margin-right: 30px;
}
.contact-col div p{
	padding: 0;
}
.contact-col div h5{
	font-size: 20px;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}
.contact-col h5{
  transition: 1s;
  opacity: 0;
}
.contact-col h5[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.contact-col p{
  transition: 1s;
  opacity: 0;
}
.contact-col p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.contact-col i{
  transition: 1s;
  opacity: 0;
}
.contact-col i[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.contact-col input{
  transition: 1s;
  opacity: 0;
}
.contact-col input[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.contact-col textarea{
  transition: 1s;
  opacity: 0;
}
.contact-col textarea[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.contact-col button{
  transition: 1s;
  opacity: 0;
}
.contact-col button[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.contact-col input, .contact-col textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
/*-------search------*/
nav .search-input{
  background: #fff;
  width: 20%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
  margin-right: 10px;
  margin-top: 10px;
}

.search-input input{
  height: 25px;
  width: 70%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 13px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}
@media (max-width: 700px){
	nav .search-input{
		margin-left: -420px;
		margin-bottom: -75px;
		font-size: 13px;
		width: 250px;
	}

}
.search-input.active input{
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  width: 250px;
  overflow-y: auto;
}

.search-input.active .autocom-box{
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
  position: fixed;
  background-color: white;
  margin-top: 10px;
  font-size: 13px;
}

.autocom-box li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  color: black;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li{
  display: block;
}
.autocom-box li:hover{
  background: #efefef;
}

.search-input .icon{
  position: absolute;
  right: -10px;
  top: -13px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 12px;
  color: #f33446;
  cursor: pointer;
}
@media(max-width:  700px){
	.search-input .icon .fa{
		font-size: 13px;
		color: #f33446;
	}
}
.search-input .fa{
	display: inline-block;
}

/*------dropdown----*/
.dropdown{
  position: relative;
  display: inline-block;
  z-index: 99;
}
nav .dropdown .dropBtn .fa{
	display: inline-block;
	color: black;
}
.drop-content{
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  font-size: 13px;
  top: 50px;
  left: 20px;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}
/* on hover show dropdown */
.dropdown:hover .drop-content{
  display: block;
}
/* drondown links */
.nav-links .dropdown .drop-content a {
  padding: 8px 10px;
  display: block;
  color: black;
  transition: all 0.5s ease !important;
  text-transform: uppercase;
}
.dropBtn .drop-content li a:hover {
  background-color: white;
}
.dropdown:hover .dropBtn{
  background-color: transparent;
}
@media(max-width: 700px){
	.navbar .nav-links .dropdown{
		    float: none;
    width: 100%;
	}
	.nav-links .drop-content{
		position: relative;
    background-color: rgb(220, 220, 250);
    top: 0px;
    left: 0px;
	}
}
/*--------product--------*/
.product2{
	width: 80%;
	margin: auto;
	padding-top: -60px;
	padding-bottom: 50px;
}
.product12{
	width: 80%;
	margin: auto;
	padding-top: -60px;
	padding-bottom: 50px;
}
.product4{
	width: 80%;
	margin: auto;
	margin-top: -90px;
	padding-top: -20px;
	padding-bottom: 50px;
}
.product3{
	width: 80%;
	margin: auto;
	padding-top: -60px;
	padding-bottom: 50px;
}
.product11{
	width: 80%;
	margin: auto;
	padding-top: -60px;
	padding-bottom: 50px;
}
.product3 .product-col h1{
	margin-top: -60px; 
	margin-left: -140px;
}
.product3 .product-col p{
	margin-left: -560px; 
	text-align: justify; 
	padding-left: 20px;
}
.product4 .product-col h1{
	margin-top: -60px; 
	margin-left: -140px;
}
.product4 .product-col p{
	margin-left: -560px; 
	text-align: justify; 
	padding-left: 20px;
}
@media(max-width: 700px){
	.product3 .product-col h1{
		margin-left: 5px;
		text-align: center;
	}
	.product3 .product-col p{
		margin-left: 5px;
	}
}
.product2 span
{
	background: red;
	height: 1px;
	width: 160px;
	position: absolute;
	right: 50px;
	left: 595px;
	top: 1520px;
}
.product12 span
{
	background: red;
	height: 1px;
	width: 210px;
	position: absolute;
	right: 50px;
	left: 595px;
	top: 2130px;
}
.product3 span
{
	background: red;
	height: 1px;
	width: 200px;
	position: absolute;
	right: 50px;
	left: 538px;
	top: 1175px;
}
@media(max-width: 700px){
	.product3 span{
			background: transparent;
	height: 1px;
	width: 200px;
	position: absolute;
	right: 50px;
	left: 120px;
	top: 1405px;
	}
}
@media(max-width: 700px){
	.about-us .product-col2 h1{
		margin-top: -10px; 
		margin-left: 220px;
	}
	.product-col2 p{
		margin-left: -60px; 
		text-align: justify; 
		padding-left: 20px;
	}
	.product-col2 ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 2; 
		-moz-columns: 2; 
		columns: 2; 
		list-style-position: inside;
	}
	.product-col2 span{
		margin-top: -125px; 
		margin-left: -365px; 
		width: 512px;
		background: transparent;
	}
	.product-col2 .web{
		margin-left: -60px; 
		margin-top: -10px;
	}
	.product-col2 .offers{
		margin-left: -60px; 
		margin-top: -10px;
	}

}
.product-col{
	flex-basis: 48%;
	padding: 30px 2px;

}

.product-col6{
	flex-basis: 48%;
	padding: 30px 2px;

}
.product-col1{
	flex-basis: 48%;
	padding: 30px 2px;

}
.product-col img{
	width: 400px;
	margin-left: 40px;

}
.product-col span{
	margin-top: -95px; 
	margin-left: -100px;
}
.product-col h1{
	padding-top: 0;
	margin-top: -10px; 
	margin-left: -100px;
}
.product-col p{
	padding: 15px 0 25px;
	margin-left: -100px; 
	text-align: justify;
}
.product-col1 img{
	width: 400px;
	margin-left: 50px;

}
.product-col1 span{
	margin-top: -90px; 
	margin-left: -80px;
}
.product-col1 h1{
	padding-top: 0;
	margin-top: -10px; 
	margin-left: -80px;
}
.product-col1 p{
	padding: 15px 0 25px;
	margin-left: -80px; 
	text-align: justify;
}
.product-col1 .preparation
{
	margin-left: -500px; 
	margin-top: 10px;
}
.product-col1 ul{
	list-style-type: circle;
	 margin-left: -400px; 
	 margin-top: -30px; 
	 -webkit-columns: 2; 
	 -moz-columns: 2; 
	 columns: 2; 
	 list-style-position: inside;
}
.product-col1 .cultivation{
	margin-left: -500px;
}
.product-col1 .analysis{
	margin-left: -500px;
}
.product-col1 .sub-menu-insert{
	list-style-type: square; 
	margin-left: 50px; 
	margin-top: 10px;
		 -webkit-columns: 1; 
	 -moz-columns: 1; 
	 columns: 1; 
	 list-style-position: inside;
}
.product-col1 .sub-menu-insert1{
	list-style-type: square; 
	margin-left: 50px; 
	margin-top: 10px;
		 -webkit-columns: 1; 
	 -moz-columns: 1; 
	 columns: 1; 
	 list-style-position: inside;
}
.product-col .offers
{
	margin-left: -500px;

}
.product2 .product-col .offers{
	margin-left: -500px;
	margin-top: 40px;
}
.product2 .product-col h1{
	margin-top: 70px; 
	margin-left: -100px;
}
.product2 .product-col p{
	margin-left: -100px; 
	text-align: justify;
}
.product12 .product-col h1{
	margin-top: 10px; 
	margin-left: -100px;
}
.product12 .product-col p{
	margin-left: -100px; 
	text-align: justify;
}
.product12 .product-col .offers{
	margin-left: -480px;
	margin-top: 10px;
}
.product4 .product-col h1{
	margin-top: 10px; 
	margin-left: -120px;
}
.product4 .product-col p{
	margin-left: -140px; 
	text-align: justify;
	margin-right: 10px;
}
.product4 span
{
	background: red;
	height: 1px;
	width: 460px;
	position: absolute;
	right: 50px;
	left: 585px;
	top: 1675px;
}
.product4 .product-col .sub-des{
	margin-left: -555px;
	margin-top: -30px;
}
.product4 .product-col img{
	margin-top: 40px;
	margin-left: 23px;
}
.product4 .product-col .web{
	margin-left: -550px;
}
.product4 .product-col .offers{
	margin-top: -10px; 
	margin-left: -550px;
}
	.product12 .product-col img{
		width: 400px;
	}
@media(max-width: 700px){
	.product4 .product-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product4 .product-col p{
		margin-left: 10px;
	}
		.product12 .product-col h1{
		margin-left: 10px;
		text-align: center;
		margin-top: -50px;
	}
	.product12 .product-col p{
		margin-left: 10px;
	}
	.product4 .product-col .sub-des{
		margin-left: 10px;
	}
	.product4 .product-col .web{
		margin-left: 10px;
	}
	.product4 .product-col .offers{
		margin-left: 10px;
	}
	.product4 .product-col img{
		margin-left: 10px;
	}
		.product12 .product-col .offers{
		margin-left: 10px;
	}
	.product12 .product-col img{
		margin-left: -25px;
	}
	.product4 span{
		background: transparent;
		width: 200px;
		margin-left: -480px;
	}
		.product12 span{
		background: transparent;
		width: 200px;
		margin-left: -480px;
	}
}
.product6 .product-col .offers{
	margin-left: -560px;
	margin-top: 40px;
}
.product6 .product-col h1{
	margin-top: 70px; 
	margin-left: -100px;
}
.product6 .product-col p{
	margin-left: -100px; 
	text-align: justify;
}
.product-col ul{
	list-style-type: circle;
	 margin-left: -400px; 
	 margin-top: -30px; 
	 -webkit-columns: 2; 
	 -moz-columns: 2; 
	 columns: 2; 
	 list-style-position: inside;
}
.about-us .product-col2 h1{
		margin-top: -10px; 
		margin-left: 270px;
	}
	.product-col2 p{
		margin-left: -60px; 
		text-align: justify; 
		padding-left: 20px;
	}
	.product-col2 ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 2; 
		-moz-columns: 2; 
		columns: 2; 
		list-style-position: inside;
	}
	.product-col2 span{
		margin-top: -125px; 
		margin-left: -305px; 
		width: 512px;
	}
	.product-col2 .web{
		margin-left: -60px; 
		margin-top: -10px;
	}
	.product-col2 .offers{
		margin-left: -60px; 
		margin-top: -10px;
	}
@media(max-width: 700px){
	.about-us .product-col2 h1{
		margin-left: 10px;
		text-align: center;
	}
	.product-col2 p{
		margin-left: 5px;
	}
	.product-col2 span{
		width: 340px;
		margin-left: -75px;
		margin-top: -195px;
		background: transparent;
	}
	.product-col2 .web{
		margin-left: 5px;
	}
	.product-col2 .offers{
		margin-left: 5px;
	}
	.product-col2 ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
}
@media(max-width: 700px){
	.about-us .product-col h1{
		margin-top: -50px;
		margin-left: 80px;
	}
	.product-col img{
		width: 350px;
		margin-left: 8px;
	}
	.product-col p{
		text-align: justify;
		margin-left: 5px;
	}
	.product-col .offers{
		margin-left: 5px;
	}
	.product-col ul{
		list-style-type: circle;
		 margin-left: 35px;
		  margin-top: -30px;
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1;
	}
	.product-col span{
		margin-top: 15px;
		margin-left: 12px;
		background: transparent;
	}
	.about-us .product-col1 h1{
		margin-top: -50px;
		margin-left: 120px;
	}
	.product-col1 img{
		width: 350px;
		margin-left: -20px;
	}
	.product-col1 p{
		text-align: justify;
		margin-left: 5px;
	}
	.product-col1 .offers{
		margin-left: 5px;
	}
	.product-col1 ul{
		list-style-type: circle;
		 margin-left: 35px;
		  margin-top: -30px;
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1;
	}
	.product-col1 span{
		margin-top: 312px;
		margin-left: 5px;
		background: transparent;
	}
	.product2 .product-col h1{
		margin-top: -50px;
		margin-left: 50px;
	}
	.product2 .product-col img{
		width: 300px;
		margin-left: -35px;
	}
	.product2 .product-col p{
		text-align: justify;
		margin-left: 5px;
	}
	.product2 .product-col .offers{
		margin-left: 5px;
	}
	.product2 .product-col ul{
		list-style-type: circle;
		 margin-left: 35px;
		  margin-top: -30px;
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1;
	}
	.product2 span{
		margin-top: 720px;
		margin-left: -430px;
		background: transparent;
	}
	.product-col1 .preparation{
		margin-left: 10px;
	}
	.product-col1 .cultivation{
		margin-left: 10px;
	}
	.product-col1 .analysis{
		margin-left: 10px;
	}
}
.about-us .lab-col h1{
		margin-top: -10px; 
		margin-left: 330px;
	}
	.about-us .lab-col p{
		margin-left: 10px; 
		text-align: justify; 
		padding-right: 10px;
	}
	.about-us .lab-col ul{
		list-style-type: circle; 
		margin-left: 90px; 
		margin-top: 10px; 
		-webkit-columns: 2; 
		-moz-columns: 2; 
		columns: 2; 
		list-style-position: inside;
	}
	.about-us .lab-col span{
		margin-top: -125px; 
		margin-left: -200px; 
		width: 290px;
		background: transparent;
	}
@media(max-width: 700px){
	.about-us .lab-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product-col2 p{
		margin-left: 5px;
	}
	.about-us .lab-col span{
		width: 290px;
		margin-left: -55px;
		margin-top: -255px;
		background: transparent;
	}
	.about-us .lab-col ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
}
.product3 .lab-col h1{
	margin-top: -10px; 
	margin-left: 190px;
}
.product3 .lab-col p{
	margin-left: 10px; 
	text-align: justify; 
	padding-right: 10px;
}
.product3 .lab-col span
{
	background: red;
	height: 1px;
	width: 657px;
	position: absolute;
	right: 50px;
	left: 285px;
	top: 1035px;
}
.product3 .lab-col ul{
	list-style-type: circle;
	 margin-left: 90px; 
	 margin-top: 10px; 
	 -webkit-columns: 2; 
	 -moz-columns: 2; 
	 columns: 2; 
	 list-style-position: inside;
}
@media(max-width: 700px){
	.product3 .lab-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product-col2 p{
		margin-left: 5px;
	}
	.product3 .lab-col span{
		width: 290px;
		margin-left: -205px;
		margin-top: 145px;
		background: transparent;
	}
	.product3 .lab-col ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
}
.product4 .lab-col h1{
	margin-top: -70px; 
	margin-left: 330px;
}
.product4 .lab-col p{
	margin-left: 130px; 
	text-align: justify; 
	padding-right: 130px;
}
.product4 .lab-col span
{
	background: red;
	height: 1px;
	width: 657px;
	position: absolute;
	right: 50px;
	left: 275px;
	top: 1465px;
}
.product4 .lab-col ul{
	list-style-type: circle;
	 margin-left: 210px; 
	 margin-top: 10px; 
	 -webkit-columns: 2; 
	 -moz-columns: 2; 
	 columns: 2; 
	 list-style-position: inside;
}
@media(max-width: 700px){
	.product4 .lab-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product4 .lab-col p{
		margin-left: 60px;
		padding-right: 60px;
	}
	.product4 .lab-col span{
		width: 290px;
		margin-left: -195px;
		margin-top: 435px;
		background: transparent;
	}
	.product4 .lab-col ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
}
.product5 .lab-col h1{
	margin-top: -10px; 
	margin-left: 330px;
}
.product5 .lab-col p{
	margin-left: 130px; 
	text-align: justify; 
	padding-right: 130px;
}
.product5 .lab-col span
{
	background: red;
	height: 1px;
	width: 657px;
	position: absolute;
	right: 50px;
	left: 275px;
	top: 1925px;
}
.product5 .lab-col img{
		width: 950px;
		height: 220px;
		margin-left: 150px;
		margin-top: 10px;
	}
@media(max-width: 700px){
	.product5 .lab-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product5 .lab-col p{
		margin-left: 60px;
		padding-right: 60px;
	}
	.product5 .lab-col span{
		width: 290px;
		margin-left: -195px;
		margin-top: 725px;
		background: transparent;
	}
	.product5 .lab-col ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
	.product5 .lab-col img{
		margin-left: 60px;
		width: 350px;
	}
}
.sub-header .text-box2 img{
	width: 1215px;
  	height: 500px;
  	border-radius: 10px;
	background-position: center;
	background-size: cover;
	text-align: center;
	filter: brightness(50%);
}
.sub-header .text-box2 span{
		background: red;
	height: 1px;
	width: 1150px;
	position: absolute;
	right: 50px;
	left: 35px;
	top: 385px;
}
.sub-header .text-box2 h1{
	filter: brightness(100%);
	margin-top: -350px;
	font-size: 56px;
	font-weight: bolder;
	margin-right: 10px;
	color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(img/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back1 2s linear infinite;
}
@keyframes back1{
  100%{
    background-position: 200px 0;
  }
}
.sub-header .text-box2 p{
	filter: brightness(100%);
	color: white;
	font-size: 30px;
	font-weight: bolder;
}
@media(max-width: 700px){
	.sub-header .text-box2{
		font-size: 30px;
		margin-top: 50px;
	}
	.sub-header .text-box2 h1{
		font-size: 40px;
		margin-left: 30px;
	}
	.sub-header .text-box2 p{
		font-size: 20px;
	}
	.sub-header .text-box2 span{
		width: 350px;
		left: 35px;
		top: 440px;
	}
	.sub-header .text-box2 img{
    width: 420px;
    height: 450px;
    border-radius: 10px;
	}
}


.sub-header .text-box3 img{
	width: 1330px;
  	height: 500px;
  	border-radius: 10px;
	background-position: center;
	background-size: cover;
	text-align: center;
	filter: brightness(50%);
}
.sub-header .text-box3 span{
		background: red;
	height: 1px;
	width: 1150px;
	position: absolute;
	right: 10px;
	left: 90px;
	top: 355px;
}
.sub-header .text-box3 h1{
	filter: brightness(100%);
	margin-top: -350px;
	font-size: 80px;
	font-weight: bolder;
	margin-right: 10px;
	color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(img/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back1 2s linear infinite;
}
@keyframes back1{
  100%{
    background-position: 200px 0;
  }
}
.sub-header .text-box3 p{
	filter: brightness(100%);
	color: white;
	font-size: 30px;
	font-weight: bolder;
}
@media(max-width: 700px){
	.sub-header .text-box3{
		font-size: 30px;
		margin-top: 50px;
	}
	.sub-header .text-box3 h1{
		font-size: 40px;
		margin-left: 30px;
	}
	.sub-header .text-box3 p{
		font-size: 20px;
	}
	.sub-header .text-box3 span{
		width: 350px;
		left: 45px;
		top: 345px;
		background: transparent;
	}
	.sub-header .text-box3 img{
    width: 420px;
    height: 450px;
    border-radius: 10px;
	}
}


.sub-header .text-box4 img{
	width: 1330px;
  	height: 500px;
  	border-radius: 10px;
	background-position: center;
	background-size: cover;
	text-align: center;
	filter: brightness(50%);
}
.sub-header .text-box4 span{
		background: red;
	height: 1px;
	width: 1150px;
	position: absolute;
	right: 50px;
	left: 105px;
	top: 360px;
}
.sub-header .text-box4 h1{
	filter: brightness(100%);
	margin-top: -350px;
	font-size: 80px;
	font-weight: bolder;
	margin-right: 10px;
	color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(img/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back1 2s linear infinite;
}
@keyframes back1{
  100%{
    background-position: 200px 0;
  }
}
.sub-header .text-box4 p{
	filter: brightness(100%);
	color: white;
	font-size: 30px;
	font-weight: bolder;
}
@media(max-width: 700px){
	.sub-header .text-box4{
		font-size: 30px;
		margin-top: 50px;
	}
	.sub-header .text-box4 h1{
		font-size: 40px;
		margin-left: 30px;
	}
	.sub-header .text-box4 p{
		font-size: 20px;
	}
	.sub-header .text-box4 span{
		width: 350px;
		left: 45px;
		top: 345px;
		background: transparent;
	}
	.sub-header .text-box4 img{
    width: 420px;
    height: 450px;
    border-radius: 10px;
	}
}


.sub-header .text-box5 img{
	width: 1330px;
  	height: 500px;
  	border-radius: 10px;
	background-position: center;
	background-size: cover;
	text-align: center;
	filter: brightness(50%);
}
.sub-header .text-box5 span{
		background: red;
	height: 1px;
	width: 650px;
	position: absolute;
	right: 50px;
	left: 350px;
	top: 355px;
}
.sub-header .text-box5 h1{
	filter: brightness(100%);
	margin-top: -350px;
	font-size: 80px;
	font-weight: bolder;
	margin-right: 10px;
	color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(img/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back1 2s linear infinite;
}
@keyframes back1{
  100%{
    background-position: 200px 0;
  }
}
.sub-header .text-box5 p{
	filter: brightness(100%);
	color: white;
	font-size: 30px;
	font-weight: bolder;
}
@media(max-width: 700px){
	.sub-header .text-box5{
		font-size: 30px;
		margin-top: 50px;
	}
	.sub-header .text-box5 h1{
		font-size: 40px;
		margin-left: 30px;
		margin-top: -290px;
	}
	.sub-header .text-box5 p{
		font-size: 20px;
	}
	.sub-header .text-box5 span{
		width: 350px;
		left: 45px;
		top: 345px;
		background: transparent;
	}
	.sub-header .text-box5 img{
    width: 420px;
    height: 450px;
    border-radius: 10px;
	}
}


.sub-header .text-box6 img{
	width: 1330px;
  	height: 500px;
  	border-radius: 10px;
	background-position: center;
	background-size: cover;
	text-align: center;
	filter: brightness(50%);
}
.sub-header .text-box6 span{
		background: red;
	height: 1px;
	width: 1020px;
	position: absolute;
	right: 50px;
	left: 160px;
	top: 390px;
}
.sub-header .text-box6 h1{
	filter: brightness(100%);
	margin-top: -350px;
	font-size: 80px;
	font-weight: bolder;
	margin-right: 10px;
	color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: url(img/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back1 2s linear infinite;
}
@keyframes back1{
  100%{
    background-position: 200px 0;
  }
}
.sub-header .text-box6 p{
	filter: brightness(100%);
	color: white;
	font-size: 30px;
	font-weight: bolder;
}
@media(max-width: 700px){
	.sub-header .text-box6{
		font-size: 30px;
		margin-top: 50px;
	}
	.sub-header .text-box6 h1{
		font-size: 40px;
		margin-left: 30px;
		margin-top: -290px;
	}
	.sub-header .text-box6 p{
		font-size: 20px;
	}
	.sub-header .text-box6 span{
		width: 350px;
		left: 45px;
		top: 445px;
		background: transparent;
	}
	.sub-header .text-box6 img{
    width: 420px;
    height: 450px;
    border-radius: 10px;
	}
}
.about-us .lab-col3{
	margin-top: -601px;
}
.about-us .lab-col3 h1{
		margin-top: -10px; 
		margin-left: 420px;
	}
	.about-us .lab-col3 p{
		margin-left: 10px; 
		text-align: justify; 
		padding-right: 10px;
	}
	.about-us .lab-col3 ul{
		list-style-type: circle; 
		margin-left: 120px; 
		margin-top: -30px; 
		-webkit-columns: 2; 
		-moz-columns: 2; 
		columns: 2; 
		list-style-position: inside;
	}
	.about-us .lab-col3 span{
		margin-top: -125px; 
		margin-left: -190px; 
		width: 370px;
	}
.about-us .lab-col3 .enquiry{
	margin-top: 80px;
	font-size: 24px;
}
.about-us .lab-col1 h1{
		margin-top: -10px; 
		margin-left: 370px;
	}
	.about-us .lab-col1 p{
		margin-left: 10px; 
		text-align: justify; 
		padding-right: 10px;
	}
	.about-us .lab-col1 ul{
		list-style-type: circle; 
		margin-left: 120px; 
		margin-top: -30px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
	.about-us .lab-col1 span{
		margin-top: -125px; 
		margin-left: -190px; 
		width: 370px;
	}
	.about-us .lab-col1 .features{
		margin-left: 10px; 
		margin-top: 10px;
	}
	.about-us .lab-col1 .grades{
		margin-left: 10px; 
		margin-top: 10px;
	}
	.about-us .lab-col1 .p-grades{
		margin-left: 10px; 
		margin-top: 10px;
	}
	.about-us .lab-col1 .pure{
		margin-left: 30px; 
		margin-top: -10px;
	}
	.about-us .lab-col1 .bio{
		margin-left: 30px; 
		margin-top: -10px;
	}
@media(max-width: 700px){
	.about-us .lab-col1 h1{
		margin-left: 10px;
		text-align: center;
	}
	.product-col2 p{
		margin-left: 5px;
	}
	.about-us .lab-col1 span{
		width: 290px;
		margin-left: -55px;
		margin-top: -195px;
		background: transparent;
	}
	.about-us .lab-col1 ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
}
@media(max-width: 700px){
	.about-us .lab-col3{
		margin-top: -310px;
	}
	.about-us .lab-col3 h1{
		margin-left: 10px;
		text-align: center;
	}
	.product-col2 p{
		margin-left: 5px;
	}
	.about-us .lab-col1 span{
		width: 290px;
		margin-left: -55px;
		margin-top: -195px;
		background: transparent;
	}
	.about-us .lab-col3 ul{
		list-style-type: circle; 
		margin-left: 80px; 
		margin-top: -10px; 
		-webkit-columns: 1; 
		-moz-columns: 1; 
		columns: 1; 
		list-style-position: inside;
	}
}

.product7 .lab-col h1{
	margin-top: -10px; 
	margin-left: 460px;
}
.product7 .lab-col p{
	margin-left: 130px; 
	text-align: justify; 
	padding-right: 130px;
}
.product7 .lab-col span
{
	background: red;
	height: 1px;
	width: 457px;
	position: absolute;
	right: 50px;
	left: 450px;
	top: 1710px;
}

@media(max-width: 700px){
	.product7 .lab-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product7 .lab-col p{
		margin-left: 60px;
		padding-right: 60px;
	}
	.product7 .lab-col span{
		width: 10px;
		background: transparent;
		margin-left: -305px;
		margin-top: 835px;
	}

}

.product17 .lab-col h1{
	margin-top: -40px; 
	margin-left: 180px;
}
.product17 .lab-col p{
	margin-left: 530px; 
	text-align: justify; 
	padding-right: 130px;
}
.product17 .lab-col span
{
	background: red;
	height: 1px;
	width: 457px;
	position: absolute;
	right: 50px;
	left: 450px;
	top: 1710px;
}

.product8 .lab-col h1{
	margin-top: -10px; 
	margin-left: 520px;
}
.product8 .lab-col p{
	margin-left: 130px; 
	text-align: justify; 
	padding-right: 130px;
}
.product8 .lab-col span
{
	background: red;
	height: 1px;
	width: 280px;
	position: absolute;
	right: 50px;
	left: 510px;
	top: 2025px;
}
.product8 .lab-col img{
		width: 950px;
		height: 220px;
		margin-left: 150px;
		margin-top: 10px;
	}

.lab-col .enquiry{
		margin-left: 130px; 
		margin-top: 20px;
		font-size: 20px;
	}
	.product-col .enquiry{
		margin-left: 130px; 
		margin-top: -20px;
		font-size: 20px;
	}
	.contact-us2{
	width: 80%;
	margin: auto;
}
.contact-us2 .contact-col{
	margin-top: -100px;
}
@media(max-width: 700px){
	.contact-us2 .contact-col{
		margin-top: -50px;
	}
	.contact-us .contact-col h5{
		font-size: 18px;
	}
	.contact-us .contact-col p{
		font-size: 14px;
	}
}

@media(max-width: 700px){
	.product8 .lab-col h1{
		margin-left: 10px;
		text-align: center;
	}
	.product8 .lab-col p{
		margin-left: 60px;
		padding-right: 60px;
	}
	.product8 .lab-col span{
		width: 10px;
		background: transparent;
		margin-left: -360px;
		margin-top: 965px;
	}
	.product8 .lab-col img{
		margin-left: 60px;
		width: 350px;
	}
	.lab-col .enquiry{
		margin-left: 50px;
	}
	.product-col .enquiry{
		margin-left: 50px;
	}

}
.product-col2 h1{
  transition: 1s;
  opacity: 0;
}
.product-col2 h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col2 p{
  transition: 1s;
  opacity: 0;
}
.product-col2 p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col2 li{
  transition: 1s;
  opacity: 0;
}
.product-col2 li[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col h1{
  transition: 1s;
  opacity: 0;
}
.product-col h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col p{
  transition: 1s;
  opacity: 0;
}
.product-col p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.zproduct h1{
  transition: 1s;
  opacity: 0;
}
.zproduct h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.zproduct p{
  transition: 1s;
  opacity: 0;
}
.zproduct p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.zproduct img{
  transition: 1s;
  opacity: 0;
}
.zproduct img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col li{
  transition: 1s;
  opacity: 0;
}
.product-col li[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.zproduct h1{
  transition: 1s;
  opacity: 0;
}
.zproduct h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.zproduct p{
  transition: 1s;
  opacity: 0;
}
.zproduct p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col1 h1{
  transition: 1s;
  opacity: 0;
}
.product-col1 h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col1 p{
  transition: 1s;
  opacity: 0;
}
.product-col1 p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col1 li{
  transition: 1s;
  opacity: 0;
}
.product-col1 li[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col1 img{
  transition: 1s;
  opacity: 0;
}
.product-col1 img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.zproduct-col img{
  transition: 1s;
  opacity: 0;
}
.zproduct-col img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product-col img{
  transition: 1s;
  opacity: 0;
}
.product-col img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product5 img{
  transition: 1s;
  opacity: 0;
}
.product5 img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.about-us p{
  transition: 1s;
  opacity: 0;
}
.about-us p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.product2 p{
  transition: 1s;
  opacity: 0;
}
.product2 p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col h1{
  transition: 1s;
  opacity: 0;
}
.lab-col h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col p{
  transition: 1s;
  opacity: 0;
}
.lab-col p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col li{
  transition: 1s;
  opacity: 0;
}
.lab-col li[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col img{
  transition: 1s;
  opacity: 0;
}
.lab-col img[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col1 h1{
  transition: 1s;
  opacity: 0;
}
.lab-col1 h1[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col1 p{
  transition: 1s;
  opacity: 0;
}
.lab-col1 p[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}
.lab-col1 li{
  transition: 1s;
  opacity: 0;
}
.lab-col1 li[data-scroll="in"]{
  opacity: 1;
  transition-delay: 0.5s;

}

/*-------popup-------*/
.contact-us .contact-col .popup{
	width: 400px;
	background: #fff;
	border-radius: 6px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.1);
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	visibility: hidden;
	transition: transform 0.4s, top 0.4s;
}
.open-popup{
	visibility: visible;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);

}
.contact-us .contact-col .popup img{
	width: 100px;
	margin-top: -50px;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.contact-us .contact-col .popup h2{
	font-size: 38px;
	font-weight: 500;
	margin: 30px 0 10px;
}
.contact-us .contact-col .popup button{
	width: 100%;
	margin-top: 50px;
	padding: 10px 0;
	background: #6fd649;
	color: #fff;
	border: 0;
	outline: none;
	font-size: 18px;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}