*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



/*  Navigation Bar start */

.banner
{
	width: 100%;
	height: 12vh;
	background-image: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9));
}

.navbar
{
	width: 85%;
	margin: auto;
	padding: 35px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.name
{
	color: white;
	font-family: sans-serif;
	font-size: 30px;
}

.name:hover
{
	-ms-transform: scale(1.1); /* IE 9 */
   -webkit-transform: scale(1.1); /* Safari 3-8 */
   transform: scale(1.1);
}



.navbar ul li
{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	position: relative;
}
.navbar ul li a 
{
	text-decoration: none;
	color: white;
	font-family: sans-serif;
}
.navbar ul li::after
{
	content: '';
	height: 3px;
	width: 0;
	background: #ffc107;
	position: absolute;
	left: 0;
	bottom: -10px;
	transition: 0.5s;
}
.navbar ul li:hover::after
{
	width: 100%;

}

/*  Navigation Bar END */




/*  product box  */

.grid 
{
	margin: 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 70px;
	grid-row-gap: 110px;
	align-items: center;
	margin-left: 200px;
}

.grid > article
{
	background: white; 
	border: none;
	box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 1.1);
	border-radius: 20px;
	text-align: center;
	width: 250px;
	transition: .3s;
}

.grid > article:hover
{
	transform: translateY(5px);
	box-shadow: 2px 2px 26px 0px rgba(0.4, 0.4, 0.4, 0.4);
}

.grid > article img 
{
	width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.text
{
	padding: 0 20px 20px;
}

.text h3
{
	margin-top: 20px;
	text-transform: uppercase;
}

.text button
{
	margin-top: 26px;
	background: #e6b800;
	border-radius: 20px;
	border: none;
	color: #fff;
	padding: 15px;
	width: 100%;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
}

.container
{
	margin-left: 12px;
}

.zoom2 /* content box button */
{
   padding: auto;
   transition: transform .3s;
   width: auto;
   height: auto;
   margin: 0 auto;
}

.zoom2:hover /* content box button */
{
   -ms-transform: scale(1.1); 
   -webkit-transform: scale(1.1); 
   transform: scale(1.1);
}

/*  product box end */


.footer 
{
  background-color: black;
  padding: 10px;
  text-align: center;
  margin-top: 100px;
}

.zoom3 /* footer social media  */
{
   padding: auto;
   transition: transform .3s;
   width: 28px;
   height: 28px;
   margin: 0 auto;
}

.zoom3:hover /* footer social media  */
{
   -ms-transform: scale(1.8); 
   -webkit-transform: scale(1.8); 
   transform: scale(1.8);
}


.loader_bg
{
    position: fixed;
    z-index: 999999;
    background: black;
    width: 100%;
    height: 100%;
}


.loader
{
    border: 0 soild transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}


.loader:before, .loader:after
{
    content: '';
    border: 1em solid #e6b800;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}


.loader:before
{
    animation-delay: .5s;
}
@keyframes loader
{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}