@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'helveticaneuebold';
    src: url('../fonts/helvetica_neu_bold-webfont.woff2') format('woff2'),
         url('../fonts/helvetica_neu_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneuelight';
    src: url('../fonts/helveticaneue_light-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneuemedium';
    src: url('../fonts/helveticaneue_medium-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneuethin';
    src: url('../fonts/helveticaneue_thin-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue_thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneueitalic';
    src: url('../fonts/helveticaneueit-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneueit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneueheavy';
    src: url('../fonts/helveticaneuehv-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneuehv-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratbold';
    src: url(../fonts/montserrat-bold-webfont.woff2) format('woff2'),
         url(../fonts/montserrat-bold-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratlight';
    src: url(../fonts/montserrat-light-webfont.woff2) format('woff2'),
         url(../fonts/montserrat-light-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratregular';
    src: url(../fonts/montserrat-regular-webfont.woff2) format('woff2'),
         url(../fonts/montserrat-regular-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratitalic';
    src: url(../fonts/montserrat-italic-webfont.woff2) format('woff2'),
         url(../fonts/montserrat-italic-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}



*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	background-color: #fff;
    color: #282828;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
}

.main1 { 
  width: 100%;
  height: 300px;
  background: #fff;
  margin: 0px auto 10px;
}

.item-1 h1 {
	width: 320px;
	margin-top: 40px;
	font-family: 'helveticaneueheavy';
	letter-spacing: 0.03em;
	line-height: 1.5;
	font-size: 1.2em;
	color: #333333;
	text-align: left;
	padding: 40px 20px 20px 40px;
	background: rgba(255, 255, 255, 0.7) 
}


.item-2 h1 {
	width: 320px;
	margin-top: 40px;
	font-family: 'helveticaneueheavy';
	line-height: 1.5;
	color: #333333;
	font-size: 1.2em;
	letter-spacing: 0.02em;
	text-align: left;
	padding: 40px 20px 20px 40px;
	background: rgba(255, 255, 255, 0.7) 
}

.item-3 h1 {
	width: 320px;
	margin-top: 40px;
	font-family: 'helveticaneueheavy';
	line-height: 1.5;
	color: #333333;
	font-size: 1.2em;
	letter-spacing: 0.02em;
	text-align: left;
	padding: 20px 20px 20px 40px;
	background: rgba(255, 255, 255, 0.7) 
}


.item-1, 
.item-2, 
.item-3 {
	width: 100%;
	height: 300px;
	margin: 0 auto;
	position: absolute;
	display: block;
	animation-duration: 25s;
 	animation-timing-function: ease-in-out;
	 animation-iteration-count: infinite;
}

.item-1{
	animation-name: anim-1;
	background-image: url("../images/hero1.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;

}

.item-2{
	animation-name: anim-2;
	background-image: url("../images/hero2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
}

.item-3{
	animation-name: anim-3;
	background-image: url("../images/hero3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
}


@keyframes anim-1 {
	0%, 8.3% { left: -100%; opacity: 0; }
  8.3%,33.33% { left: 0%; opacity: 1; }
  40%, 100% { left: 0%; opacity: 0; }
}

@keyframes anim-2 {
	0%, 33.33% { left: -100%; opacity: 0; }
  41.63%, 66.66% { left: 0%; opacity: 1; }
  73%, 100%{ left: 0%; opacity: 0; }
}

@keyframes anim-3 {
	0%, 66.66% { left: -100%; opacity: 0; }
  74.96%, 99.8% { left: 0%; opacity: 1; }
  100% { left: 0%; opacity: 0; }
}


.main2 { 
  width: 100%;
  margin: 0px auto;
}

.main2 h1 {
	width: 80%;
	margin: 0 auto;
	font-family: 'helveticaneuebold';
	line-height: 1.4;
	color: #333333;
	font-size: 1.2em;
	letter-spacing: 0.03em;
	text-align: left;
	padding-top: 60px;
}

.main2 p {
	width: 80%;
	margin: 0 auto;
	font-family: 'helveticaneuelight';
	line-height: 1.4;
	color: #282828;
	font-size: 1em;
	letter-spacing: 0.02em;
	text-align: left;
	padding-top: 20px;
}

.uploadfilebutton {
	width: 300px;
	height: 100px;
	margin: 60px auto;
	padding-top: 35px;
	text-align: right;
	background-image: url("../images/uploadfilearrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left top;

}
	
.uploadfilebutton a {
	font-family: 'helveticaneuemedium';
	border: 2px solid #f07a00;
	text-decoration: none;
	font-size: 1.5em;
	letter-spacing: 0.04em;
	color: #fff;
	padding: 35px 25px;
	background-color: #F47A20;
	border-radius: 10px;
}

.uploadfilebutton a:hover{
	background-color: transparent;
	border: 3px solid #F47A20;
	color: #F47A20;
}


.produceheading {
	width: 100%;
	font-family: 'helveticaneuebold';
	font-size: 1.5em;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #282828;
	text-align: center;
	margin: 60px auto 10px;
}

.producepara {
	width: 80%;
	font-family: 'montserratlight';
	font-size: 1em;
	line-height: 1.4;
	color: #282828;
	text-align: center;
	margin: 10px auto 40px;
}

.produce {
	width: 100%;
	margin: 30px auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.pro {
	width: 30%;
	height: 215px;
	margin: auto;
	background-color: #ffffff;
	text-decoration: none;
}


.pro h2 {
	width: 100%;
	font-family: 'montserratlight';
	font-size: 1em;
	line-height: 1.4;
	color: #282828;
	margin: 10px auto;
	text-align: left;
}


.proview {
	width: 100%;
	margin: 40px auto 60px;
	text-align: center;
}

.proview a {
	color: #282828;
	font-family: 'helveticaneuemedium';
	font-size: 1em;
	letter-spacing: 0.02em;
	line-height: 1.5;
	text-align: center;
	text-decoration: underline;
}

.proview:hover {
	color: #F47A20;
}

.proview a:hover {
	color: #F47A20;
}

.pro1, .pro2, .pro3, .pro4, .pro5, .pro6, .pro7, .pro8, .pro9, .pro10, .pro11, .pro12 {
		
	width: 100%;
	height: 150px;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.proA, .proB {
		
	width: 100%;
	height: 150px;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.pro1 {
	background-image: url("../images/pro-05.jpg");
	
}

.pro2 {
	
	background-image: url("../images/pro-06.jpg");
	
}

.pro3 {

	background-image: url("../images/pro-12.jpg");
	
}

.pro4 {
	
	background-image: url("../images/pro-08.jpg");
	
}

.pro5 {
	
	background-image: url("../images/pro-10.jpg");
}

.pro6 {
	background-image: url("../images/pro-09.jpg");

}

.pro7 {
	background-image: url("../images/pro-32.jpg");
}

.pro8 {
	background-image: url("../images/pro-33.jpg");
}

.pro9 {
	background-image: url("../images/pro-34.jpg");
}

.pro10 {
	background-image: url("../images/pro-38.jpg");
}

.pro11 {
	background-image: url("../images/pro-39.jpg");
}

.pro12 {
	background-image: url("../images/pro-11.jpg");
}

.proA {
	background-image: url("../images/covid1.png");
}

.proB {
	background-image: url("../images/covid2.png");
}

.main_box {
	width: 100%;
	margin: 60px auto;
	display: inline-flex;
	justify-content: space-between;
}

.main_box h1 {
	width: 50%;
	margin: 20px;
	text-align: left;
	font-family: 'helveticaneuemedium';
	line-height: 1.4;
	color: #282828;
	font-size: 1em;
	letter-spacing: 0.03em;
}

.main_pic {
	width: 50%;
	height: 150px;
	margin: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../images/fedex1.jpg");
}

	
/************************************************/
/*********************About us page***************************/

.abouthero {
	width: 100%;
	height: 250px;
	margin: 0px auto;
	background-image: url("../images/abouthero.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 70px;
	padding-left: 40px;
}

.abouthero h1 {
	font-family: 'helveticaneueheavy';
	line-height: 1.5;
	font-size: 2em;
	color: #282828;
	text-align: left;
}

.abouthero p {
	font-family: 'montserratregular';
	line-height: 1.5;
	font-size: 0.8em;
	color: #1E1E1E;
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
	margin-top: 25px;
	text-align: left;
}

.abouthero span {
	margin-left: 5px;
	margin-right: 5px;
}


.whoweare {
	width: 90%;
	margin: 50px auto;
}

.whoweare h1 {
	font-family: 'helveticaneueheavy';
	line-height: 1.5;
	font-size: 1.8em;
	color: #282828;
	text-align: left;
}

.whoweare h2 {
	font-family: 'helveticaneuemedium';
	line-height: 1.5;
	font-size: 1.1em;
	color: #3A3A3A;
	text-align: left;
}

.whoweare p {
	font-family: 'helveticaneuelight';
	line-height: 1.5;
	font-size: 1em;
	color: #3A3A3A;
	margin-top: 25px;
	text-align: left;
}

.whoweare span {
	color: #FB6300;
}


.reviews {
	width: 100%;
	height: 400px;
	background-color: #FFF0DF;
	margin: 40px auto 40px;
}

.reviews h1 {
	width: 90%;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 40px;
	text-align: left;
	font-size: 2em;
	opacity: 0.6;
	font-family: 'montserratregular';
	color: #FB6300;
}


#slider {
  width: 350px;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

#slider ul {
  width: 350px;
  height: 300px;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

#slider ul li {
  width: 350px;
  height: 300px;
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}

#slider p {
	width: 90%;
	margin: 40px auto 0px;
	text-align: center;
	font-family: 'montserratitalic';
	font-size: 15px;
	line-height: 1.5;
}

#slider span {
	line-height: 5;
	font-weight: bolder;
	font-size: 17px;
	color: #FB6300;
}

a.control_prev, a.control_next {
  position: absolute;
  top: 60%;
  z-index: 999;
  display: block;
  width: auto;
  height: auto;
  color: #282828;
  text-decoration: none;
  font-family: 'helveticaneueheavy';
  font-weight: bolder;
  font-size: 2em;
  opacity: 0.8;
  cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}


a.control_next {
  right: 0;
}

/************************************************/
/*********************product page***************************/


.product_description {
	width: 100%;
	margin: 40px auto;
}

.product_list {
	width: 90%;
	margin: 0px auto;
	padding-left: 20px;
}

.product_list h1 {
	font-family: 'helveticaneuebold';
	line-height: 1.5;
	font-size: 1.5em;
	color: #282828;
	text-align: left;
}


.product_list span {
	margin-right: 3px;
}

.product_list ul {
	list-style: none;
	padding-left: 0px;
}

.product_list a {
	font-family: 'montserratregular';
	text-decoration: none;
	line-height: 1.8;
	font-size: 0.9em;
	color: #282828;
	text-align: left;
}

.product_list a:hover {
	text-decoration: underline;
}

.product_pic {
	width: 90%;
	margin: 0 auto;
}

.propic1, .propic2, .propic3, .propic4 {
	width: 100%;
	height: 200px;
	margin: 40px auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.propic1  {
	background-image: url("../images/propic1.jpg");
}

.propic2  {
	background-image: url("../images/propic2.jpg");
}

.propic3  {
	background-image: url("../images/propic3.jpg");
}

.propic4  {
	background-image: url("../images/propic4.jpg");
}


/******************Services**************************/



.servicehero {
	background-image: url("../images/service8.jpg");
	background-color: #e9e9e9;
	background-size: contain;
	background-position: right center;
}

.servicehero p {
	display: none;
}

.services {
	width: 100%;
	height: 200px;
	margin: 40px auto;
	display: inline-flex;
	justify-content: space-between;
}

.servicepic1 {
	width: 50%;
	height: 200px;
	margin-left: 0px;
}

.servicedetail1 {
	width: 50%;
	margin-right: 0px;
	padding-left: 20px;
	padding-right: 20px;
}

.servicepic2 {
	width: 50%;
	height: 200px;
	margin-right: 0px;
}

.servicedetail2{
	width: 50%;
	margin-left: 0px;
	padding-right: 20px;
	padding-left: 20px;
}

.services h1 {
	font-family: 'helveticaneueheavy';
	line-height: 1.5;
	font-size: 1.4em;
	color: #333;
	text-align: left;
	margin-top: 0px;
}

.services p {
	font-family: 'montserratlight';
	line-height: 1.5;
	font-size: 0.8em;
	color: #333;
	margin-top: 10px;
	text-align: left;
}

.servicebutton {
	margin: 0px auto;
}

.servicebutton a {
	color: #333;
	font-family: 'helveticaneuemedium';
	font-size: 0.8em;
	letter-spacing: 0.02em;
	line-height: 1.5;
	text-align: left;
	text-decoration: underline;
}

.servicebutton:hover {
	color: #F47A20;
}

.servicebutton a:hover {
	color: #F47A20;
}

#servicepic0 {
	background-image: url("../images/digital.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#servicepic1 {
	background-image: url("../images/service1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#servicepic2 {
	background-image: url("../images/propic8.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

#servicepic3 {
	background-image: url("../images/propic13.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

#servicepic4 {
	background-image: url("../images/service4.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

#servicepic5 {
	background-image: url("../images/service5.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

#servicepic6 {
	background-image: url("../images/service7.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

#servicepic7 {
	background-image: url("../images/pro-13.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

#servicepic8 {
	background-image: url("../images/seal.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

/************************************************/
/*******************tablet*****************************/



@media (min-width: 720px) {

		
.main1 { 
	height: 400px;
	}
	
.item-1, 
.item-2, 
.item-3 {
	height: 400px;
}
	
	.item-1  h1 {
		width: 400px;
		font-size: 1.7em;
		margin-top: 50px;
	}

	
	.item-2  h1 {
		width: 400px;
		font-size: 1.7em;
		margin-top: 50px;
	}
	
	
	.item-3  h1 {
		width: 400px;
		font-size: 1.7em;
		margin-top: 50px;
	}
		
	.main2 h1 {
		font-size: 1.5em;
	}

		
.produceheading {
	font-size: 2em;
	margin: 100px auto 10px;
}
	
.producepara {
		margin: 10px auto 60px;
	}

.produce {
	width: 90%;
	max-width: 1366px;
}

.pro {
	height: 250px;
}
	
.pro:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.pro:hover h2 {
	margin-left: 10px;
}


.proview a {
	font-size: 1.2em;
	
}	
	
.pro1, .pro2, .pro3, .pro4, .pro5, .pro6, .pro7, .pro8, .pro9, .pro10, .pro11, .pro12 {
		
		height: 200px;
	}
	
.proA, .proB {
		
		height: 200px;
	}
	
	.main_box h1 {
		margin-left: 40px;
		font-size: 1.2em;
	}
	
	.main_pic {
		height: 200px;
		margin-right: 40px;
	}

/************************************************/
/*********************About us page***************************/

	
	.abouthero {
		height: 300px;
	}
	
	.abouthero h1 {
		font-size: 3em;
	}
	
	.abouthero p {
	width: 80%;
	font-size: 1em;
}
	
.abouthero span {
	margin-left: 8px;
	margin-right: 8px;
}	
	
	
#slider {
  width: 700px;
}

#slider ul {
  width: 700px;
}

#slider ul li {
  width: 700px;
}
	
#slider p {
	width: 70%;
	margin: 50px auto 0px;
	font-size: 17px;
}

#slider span {
	font-size: 20px;
}

a.control_prev, a.control_next {
  top: 40%;
  font-size: 2em;
}
	
	
	
/*****************product******************/
	

	
.product_description {
	display: inline-flex;
}
	
.product_list {
	width: 49%;
	margin-left: 0px;
	padding-left: 60px;
}

.product_list a {
	font-size: 1em;
}

.product_pic {
	width: 50%;
	margin-right: 0px;
}

.propic1, .propic2, .propic3, .propic4 {
	height: 300px;
	background-position: left center;
}
	
	
/***************services******************/
	


.services p {
	font-size: 1em;
}

.servicebutton {
	margin: 30px auto;
}

.servicebutton a {
	font-size: 1em;
}
	
.servicehero p {
	display: inherit;
}	
 
}





/************************************************/
/*******************Desxtop*****************************/


@media (min-width: 1024px) {
	
.item-1  h1 {
		width: 450px;
		padding-left: 60px;
		margin-top: 40px;
	}
	
	
	.item-2  h1 {
		width: 450px;
		padding-left: 60px;
	}
	
	
	.item-3  h1 {
		width: 450px;
		padding-left: 60px;
	}
	
	.main2 h1 {
		width: 50%;
		margin-left: 60px;
	}
	
.main2 p {
		width: 50%;
		margin-left: 60px;
		float: left;
	}
	
.uploadfilebutton {
		margin-right: 80px;
		margin-top: -50px;
		margin-bottom: 150px;
	}
	
	.pro {
	height: 350px;
}
	.pro1, .pro2, .pro3, .pro4, .pro5, .pro6, .pro7, .pro8, .pro9, .pro10, .pro11, .pro12 {
		
		height: 300px;
	}
	
	.proA, .proB {
		
		height: 300px;
	}
	
	
	.main_box h1 {
		margin: 60px 40px auto 60px;
		font-size: 1.4em;
	}
	
	.main_pic {
		width: 40%;
		height: 230px;
		margin-right: 60px;
	}

	
	
	
	
	/************************************************/
/*********************About us page***************************/

	.whoweare {
		width: 80%;
	}
	
	.whoweare h1 {
		font-size: 2em;
	}
	
	.reviews h1 {
		width: 80%;
	}
	
		
/*****************product******************/
		
.product_list {
	padding-left: 80px;
}
	
.product_list h1 {
	font-size: 2em;
}
	
	
	

/*	****************services*******************/
	
	.services {
	height: 300px;
	margin: 50px auto;
	}
	
.services h1 {
	font-size: 2em;
	}
		
.servicedetail1 {
	padding-top: 30px;
	padding-left: 60px;
	padding-right: 60px
}

.servicedetail2{
	padding-top: 30px;
	padding-right: 60px;
	padding-left: 60px;
}
	
	.servicepic1 {
        width: 45%;
		height: 300px;
		margin-left: auto;
		margin-right: 0px;
	}	
	
	.servicepic2 {
		width: 45%;
		height: 300px;
		margin-left: 0px;
		margin-right: auto;
	}	
	
	

	
}



@media (min-width: 1440px) {

		
.main1 { 
	height: 500px;
	}
	
.item-1, 
.item-2, 
.item-3 {
	height: 500px;
}
	
.item-1  h1 {
		width: 700px;
		padding-left: 100px;
		margin-top: 100px;
		font-size: 2.5em;
	}
	
	
	.item-2  h1 {
		width: 700px;
		padding-left: 100px;
		margin-top: 100px;
		background-color: transparent;
		font-size: 2.5em;
	}
	
	
	.item-3  h1 {
		width: 700px;
		padding-left: 100px;
		margin-top: 100px;
		background-color: transparent;
		font-size: 2.5em;
	}

.main2 h1 {
		font-size: 1.7em;
	}
	
	
}

