/*Main Styles*/
body {
    background: rgba(241,234,188,1.00);
    font-family: 'Hind', sans-serif;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
	font-style: normal;
    overflow-x: hidden;
}
html, body {
    width: 100%;
    height: 100%;
}
/*Menu Styles*/
*{
	margin:0;
	padding:0;
}

/*hiding label and checkbox*/
input[type=checkbox],
.show-menu{
	display:none;
}

/*giving background image*/
/*styling our wrapper*/
.wrapper{
	max-width:960px;
	margin:0 auto;
	color:#fff;
	font-family: 'Hind', sans-serif;
}
/*styling h1 in wrapper*/
.wrapper h1{
	padding:20px;
	text-align:center;
}

/*styling navigation*/
.navigation{
	display:flex;
	list-style-type:none;
}

/*styling list items->li in navigation*/
.navigation li{
	background:#7E0000;
	flex:1;
	text-align:center;
	transition:all .2s ease;
}
.navigation li:not(:first-child){
	border-left:2px solid #ecf0f1;
}

/*styling hover*/
.navigation li:hover{
	background:#333333;
	flex:1.1;
}

/*styling our anchor tag*/
.navigation li a{
	display:block;
	padding:20px 0;
	color:inherit;
	text-decoration:none;
}

/*giving style for mobile*/

@media screen and (max-width:600px){
	/*styling our show menu button*/
	.show-menu{
		background:#342a2a;
		display:flex;
		cursor:pointer;
		padding:20px 0;
		justify-content:center;
	}
	/*hiding our navigation*/
	.navigation{
		display:none;
	}
	input[type=checkbox]:checked ~ .navigation{
		display:block;
	}
	
	.navigation li:not(:first-child){
		border:0;
	}
	.navigation li:not(:last-child){
		margin:2px 0;
	}
}
/*Menu Styles End*/



/*Shop Items Style Starts*/
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
img {
    max-width: 100%;
}
.clearfix {
    clear: both;
}
.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}
.product-list2 {
    max-width: 960px;
    margin: 0 auto;
}
.product-list2 .product-item {
    width: calc(100% / 5 - 2em);
    margin: 1em;
    float: left;
}
.product-item a {
    display: block;
}
.product-name {
    text-align: center;
    font-size: 1rem;
    padding-top: 0.5em;
}
.product-image {
    transform: rotate(180deg);
}
.product-image img {
    transform: rotate(-180deg);
}

/* for smaller devices */
@media only screen and (max-width: 768px) {
.product-list2 .product-item {
    width: calc(100% / 3 - 2em) !important;
}
}

@media only screen and (max-width: 420px) {
.product-list2 .product-item {
    width: calc(100% / 2 - 2em) !important;
}
}
/*Shop Items Style Ends*/

/*Menu Options Style*/

.grid-container {
    display: grid;
    grid-template-columns: auto auto;
    padding: 0px;
	
}
.grid-item {
    padding: 10px;
}
.container {
    position: relative;
    width: 100%;
	box-sizing: border-box;
}
h3 {
    color: #7E0000;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 6px;
}
p {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}
.centered {
    position:absolute;
    top: 50%;
    left: 50%;
   transform: translate(-50%, -50%);
	font-size: 40px;
	font-display: block;
	border: #fff;
	border-style: double;
	border-width: thick;
	padding: 20px;
}
.gallery_product {
    margin: 0px;
    padding: 0;
    position: relative;
}
.gallery_product .img-info {
    position: absolute;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    overflow: hidden;
    color: #fff;
    top: 0;
    display: none;
    -webkit-transition: 2s;
    transition: 2s;
	opacity: 80%;
}
.gallery_product:hover .img-info {
    display: block;
    -webkit-transition: 2s;
    transition: 2s;
}
.img-info p {
    font-size: 11px;
}
/*Menu Option Style Ends*/