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

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Ubuntu", Helvetica, Arial, sans-serif;
	scroll-behavior: smooth;
}
p
{
	font-weight: 300;
	color: #111;
	text-align: center;
}
/*
body
{
	 min-height: 1000px; 
}
*/

.home
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("images/bg1.jpg");
	background-size: cover;	
}
.home .content
{
	max-width: 900px;
	text-align: center;
}

.home .content h2
{
	font-size: 5em;
	color: #fff;
	text-transform: uppercase;
	font-style: italic;
}

.home .content p
{
	font-size: 1em;
	color: #fff;
}

.btn
{
	font-size: 1em;
	color: #fff;
	background: #ff0000;
	display: inline-block;
	padding: 10px 30px;
	margin-top: 20px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	transition: 0.5s;
}

.btn:hover
{
	letter-spacing: 6px;
}

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0px 100px 0px 100px;
	z-index: 10000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s;
}

header.sticky
{
	background: #fff;
	padding: 0px 100px 0px 100px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

header .logo
{
	height: 140px;
	width: 150px;
	background: url("images/logo.png") no-repeat center;
	background-size: contain;
	transition: 0.5s;
}

header.sticky .logo
{
	height: 90px;
	width: 100px;
	background: url("images/logo.png") no-repeat center;
	background-size: contain;
}


header .navigation
{
	position: relative;
	display: flex;
}

header .navigation li
{
	list-style: none;
	margin-left: 30px;
}

header .navigation li a
{
	text-decoration: none;
	color: #fff;
	font-weight: 300;
}

header.sticky .navigation li a
{
	color: #111;
}

header .navigation li a:hover
{
	color: #ff0000;
}

section
{
	padding: 100px;
}

.row
{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.row .co150
{
	position: relative;
	width: 48%;
}

.titleText
{
	color: #111;
	font-size: 2em;
	font-weight: 300;
	text-align: center;
}

.titleText span
{
	color: #ff0000;
	font-weight: 700;
	font-size: 1.5em;
}

.row .co150 .imgBx
{
	position: relative;
	width: 100%;
	/*min-height: 300px; */
	height: 100%;
}

.row .co150 .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.title
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.description
{
	color: red;
	margin-top: 20px;
}

.description span
{
	color: white;
}

.about
{
	background: url(images/backBlur.jpg);	
	background-size: cover; 
	padding-top: 150px;
}

.products
{
	background: url(images/red.jpg);
	background-size: cover; 
}

.products .content
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 40px;
}

.products .content .box
{
	background: #fff;
	width: 250px;
	margin: 15px;
	border: 15px solid #fff;
	box-shadow: 0 5px 35px rgba(0,0,0,0.08);		
}

.products .content .box .btn
{
	font-size: 1em;
	color: #fff;
	background: #ff0000;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 10px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	transition: 0.5s;
}

.products .content .box .btn:hover
{
	letter-spacing: 3px;
	background: #a00000;
}

.products .content .box .imgBx
{
	position: relative;
	width: 100%;
	height: 300px;
}

.products .content .box .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.products .content .box .text
{
	text-align: center;
}

.products .content .box .text h3
{
	font-weight: 400;
	color: #111;
}

.products .text span
{
	font-size:small;
	letter-spacing: 1px;
	color: ff0000;
	font-style: italic;
	text-transform: initial;
}


.services
{
	background: url(images/whiteBg.jpg);
	background-repeat: repeat-x;
}

.services .content 
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 40px;
}

.services .content .box 
{
	width: 250px;
	margin: 15px;
}

.services .content .box .imgBx
{
	position: relative;
	width: 100%;
	height: 300px;
}

.services .content .box .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services .content .box .text
{
	padding: 15px 0 5px;
}

.services .content .box .text h3
{
	font-weight: 400;
	color: #111;
}

.shop
{
	background: url(images/bg5.jpg);
	background-size: cover; 
}

.white .titleText,
.white p
{
	color: #fff;
}
 
.shop .content
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 40px;
}

.shop .content .box
{
	width: 340px;
	margin: 20px;
	padding: 40px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.shop .content .box .imgBx
{
	position: relative;
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #ff0000;
}

.shop .content .box .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop .content .box .text
{
	text-align: center;
}

.shop .content .box .text p
{
	color: #666;
	font-style: italic;
}

.shop .content .box .text h3
{
	margin-top: 20px;
	color: #111;
	font-size: 1em;
	color: #ff0000;
	font-weight: 600;
}

.contact
{
	background: url(images/bg6.jpg);
	background-size: cover;
}

.contact span
{
	color: #ff0000;
}
.contact a
{
	color: #000000;
	font-weight: 600;
}
.contact a:hover
{
	color: #ff0000;
}

.contactForm
{
	padding: 75px 50px;
	background: #fff;
	box-shadow: 0 15px 50px rgba(0,0,0,0.1);
	max-width: 500px;
	margin-top: 50px;
}

.contactForm h3
{
	color: #111;
	font-size: 1.2em;
	margin-bottom: 20px;
	font-weight: 500;
}

.contactForm .inputBox
{
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea
{
	width: 100%;
	border: 1px solid #555;
	padding: 10px;
	color: #111;
	outline: none;
	font-size: 16px;
	font-weight: 300;
	resize: none;
}

.contactForm .inputBox input[type="submit"]
{
	font-size: 1em;
	color: #fff;
	background: #ff0000;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	transition: 0.5s;
	max-width: 100px;
	font-weight: 500;
	border: none;
	cursor: pointer;

}

.contactForm span
{
    color: #ff0000;
    font-style: italic;
    font-size: .9em;
}
.contactForm .message
{
    color: #ff0000;
    font-style: italic;
    font-size: .9em;
}


/* footer */
.footerContainer
{
    display: grid;
    justify-content: end;
    align-content: end;
}

footer
{
    position: relative;
    width:100%;
    height: auto;
    padding: 50px 100px;
    background: #ff0000;
}

footer .container
{
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-gap: 20px;
}

footer .container .sec h2
{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container .sec h2::before
{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff000;
}


footer .container .sec p
{
    color: #fff;
	text-align: left;
}

.sci
{
    margin-top: 20px;
    display: grid;
	grid-template-columns: repeat(4, 50px);
	grid-gap: 10px;
}

.sci li
{
    list-style: none;
}

.sci li a
{
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #bb0000;
    display: grid;
    align-content: center;
    justify-content: center;
	text-decoration: none;
	border-radius: 4px;
}
.sci li a:hover
{
	background: #db0404;
}

.sci li a .fab
{
	color: #fff;
	font-size: 20px;
}

.quicklinks
{
	position: relative;
}

.quicklinks li
{
	list-style: none;
}

.quicklinks li a
{
	color: #f7f7f7;
	text-decoration: none;
	margin-bottom: 10px;
	display: inline-block;
}

.quicklinks li a:hover
{
	color: #fff000;
}

.info
{
	position: relative;
}

.info li
{
	display: grid;
	grid-template-columns: 30px 1fr;
	margin-bottom: 16px;
}

.info li span:nth-child(1)
{
	color: #fff;
	font-size: 20px;
}

.info li span
{
	color: #fff;
}

.info a
{
	color: #f7f7f7;
	text-decoration: none;
}

.info a:hover
{
	color: #fff000;
}

.copyrightText
{
	width: 100%;
	background: #bb0000;
	padding: 8px 100px;
	text-align: center;
	color:#fff;
}

.copyrightText p
{
	color: #fff;
}

.copyrightText a
{
	color: #fff000;
	text-decoration: none;
}
.copyrightText a:hover
{
	color: #fff;
}

.aboutusFooter p a
{
	text-decoration: none;
	color: #fff000;
	font-style: italic;
	font-size: .9em;
}
.aboutusFooter p a:hover
{
	color: #444;
	text-decoration:underline;
}
/* footer */




.productsPage
{
	background: url(images/black-redBg.jpg);
	background-size: cover; 
}

.productsPage .content
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 40px;
}

.productsPage .content .box
{
	background: #fff;
	width: 500px;
	margin: 15px;
	border: 15px solid #fff;
	box-shadow: 0 5px 35px rgba(0,0,0,0.08);		
}

.productsPage .content .box .imgBx
{
	position: relative;
	width: 100%;
	height: 450px;
}

.productsPage .content .box .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.productsPage .btn2
{
	font-size: 1em;
	color: #fff;
	background: #ff0000;
	display: inline-block;
	padding: 10px 30px;
	margin: 10px 5px ;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.5s;

}

.productsPage .btn2:hover
{
	background: #fff000;
}

.productsPage .ProductsAll
{
	text-align: center;
}


.international
{
	background: url(images/whiteBg.jpg);
	background-repeat: repeat-x;
	padding-top:20px;
}

.international .content
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 40px;
}


.international table {
	display: table;
    width: 80%;
    max-width: 100%;
    border-collapse: collapse;
    border-color: grey;
}


.international table tr td{
	border: 1px solid;
	height: 30px;
	padding: 5px 30px;
}

.international table p
{
	text-align: left;
}
.international table a
{
	color: #000;
}
.international table a:hover
{
	text-decoration: none;
}


.international .heading
{
	background: #ff0000;
	height: 50px;
}

.pageHeaderInt
{
	position: relative;
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("images/internationalBg.jpg");
	background-size: cover;	
}

.pageHeaderFaqs
{
	position: relative;
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("images/faqs.jpg") center;
	background-size: cover;	
}


.upc
{
	background: url(images/whiteBg.jpg);
	background-repeat: repeat-x;
	padding-top:20px;
}

.upc .content
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 10px;
}


.upc table {
	display: table;
    width: 60%;
    max-width: 100%;
    border-collapse: collapse;
    border-color: grey;
	background-color: white;
}


.upc table tr td{
	border: 1px solid;
	height: 30px;
	padding: 5px 30px;
}


.upc table .td_left{
	width: 25%;
}

.upc .lot{
	background: url(images/lot.jpg) no-repeat center;
	width: 250px;
	height: 71px;
	margin: 10px auto;
		

}
.upc h4{
	text-align: center; 
	color: green;


}
.upc h2{
	text-align: center; 
	color: grey;

}

.upc .searchBar{
	position: relative;
	width: 60%;
	margin: 20px auto 10px auto ;
}

.upc .searchBar .text{
	width: 60%;
	float: left;
}
.upc .searchBar .button{
	width: 40%;
	float: left;
}

.upc .searchBar input {
    width: 95%;
    padding: 10px;
    color: #111;
    outline: none;
    resize: none;
}

.upc .searchBar button{	
    width: 100%;
    padding: 11px;
	border: none;
	color: #fff;
	display: inline-block;
	background-color: grey;
	cursor: pointer;
}


.upc .searchBar button:hover{	
	background-color: #666;
}


.pageHeaderUPC
{
	position: relative;
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("images/upc.jpg") center;
	background-size: cover;	
}


@media (max-width: 991px) 
{
	header,
	header.sticky 
	{
		padding: 0px 20px ;
	}

	header .navigation
	{
		display: none;
	}
	
	header .navigation.active
	{
		display: none;
		width: 100%;
		height: calc(100% - 90px);
		position: fixed;
		top: 90px;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		background: #fff;
	}
	
	header .navigation li
	{
		margin-left: 0;
	}

	header .navigation li a
	{
		color: #111;
		font-size: 1.6em;
	}

	.menuToggle
	{
		position: relative;
		width: 40px;
		height: 40px;
		background: url(images/menu.png);
		background-size: 30px;
		background-repeat: no-repeat;
		background-position: center;
		cursor: pointer;
	}

	.menuToggle.active
	{
		background: url(images/close.png);
		background-size: 25px;
		background-repeat: no-repeat;
		background-position: center;	
	}

	header.sticky .menuToggle
	{
		filter: invert(1);
	}

	.home .content h2
	{
		font-size: 3em;
		color: #fff;
	}

	.row
	{
		flex-direction: column;
	}

	.row .co150
	{
		position: relative;
		width: 100%;
	}

	
	.row .co150 .imgBx
	{
		height: 300px;
		margin-top: 20px;
	}
	
	.products .content {
		margin-top: 10px;
	}


	.shop .content .box {
		margin: 10px;
		padding: 20px;
	}

	
	.contactForm
	{
		padding: 35px 40px;
		margin: 20px auto 30px auto;
	}

	footer
	{
		padding: 40px;
	}

	footer .container
	{
    	grid-template-columns: repeat(1,1fr);
	}

	/*my css STARTS*/
	.home .content
	{
		padding-top: 100px ;
	}
	
	header .logo
	{
	height: 90px;
	width: 100px;
	}
	
	section
	{
		padding: 50px;
	}

	.quicklinks li a
	{
		font-size: 2.2em;
	}

	/*my css ENDS */
}

@media (max-width: 480px) 
{
	.home .content h2
	{
		font-size: 2.2em;
		color: #fff;
	}

	.contactForm {
		padding: 20px 15px;
		margin: 15px auto;
	}

	footer .container
	{
    	grid-template-columns: repeat(1,1fr);
	}
	.copyrightText
	{
		padding: 8px 20px;
	}
}
	
@media (max-width: 768px) 
{
	footer .container
	{
    	grid-template-columns: repeat(1,1fr);
	}
	.copyrightText
	{
		padding: 8px 50px;
	}
}