@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');


*
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Didact Gothic', sans-serif;
}


/* SECTION COLOR*/

.header-section
{
	background-color: #4a148c;
	padding: 50px 0px;
   

}
.section-info
{
	background-color:#fff; 
	padding: 50px 0px;

}
.featurs-section
{
    padding: 50px 0px;
    box-sizing: border-box;
     border-bottom: 1px solid #ccc;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(223, 232, 252) 49%, rgb(255, 255, 255));
}
.feature-divs
{
    padding: 40px;
}
.feature-divs img
{
    width: 100px;
}
.feature-divs h3
{
    font-weight: bold;
}
.feature-divs p
{
    font-size: 18px;
}
.content-divs
{
    background-color: #f7f8f9;
    padding: 20px;
    font-size: 18px;
}
.content-divs p
{
    font-size: 17px;
}
footer
{
	background-color: #292929;
}




header
{
	position: fixed;
	width: 100%;
	transition: 0.6s;
	background-color: #fafafa;
	height: 100px;
	line-height: 100px;
	z-index: 99999999;
	padding: 0px 40px;
	border-bottom: 1px solid #e0e0e0;
}
header.sticky
{
	height: 60px;
	padding: 0px 30px;
	line-height: 60px;
}
header.sticky .logo
{
	width: 160px;
}
header .logo
{
	width: 200px;
	float: left;
}
header .logo img
{
	width: 100%;
}
header nav
{
	float: right;
}
.search-toggle
{
    position: absolute;
    right: 6px;
    top: 3px;
    background-color: none;
    width: 30px;
    cursor: pointer;
    color: blue;
}
.search-form
{
    width: 300px;
    position: fixed;
    right: 0px;
    display: none;
    height: 100vh;
    background-color: #fff;
    box-shadow: 1px 1px 10px #333;
    padding: 8px 20px;
    box-sizing: border-box;
    line-height: 40px;
    z-index: 11111111111111;
}
.actives
{
    display: block;
}

.close-search
{
    cursor: pointer;
    background-color: red;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
    float: right;
}

.search-form-inner
{
    width: 100%;
    display: block;
    float: left;
    border-top: 2px solid #f7f8f9;
    padding-top: 20px;
}
.search-form-inner input
{
    width: 100%;
    outline: none;
    border:none;
    box-shadow: 1px 1px 10px #ccc;
    padding-left: 10px;
    font-size: 18px;
}
.search-form-inner button
{
    background-color: #1c54b2;
    color: #fff;
    outline: none;
    border:none;
    width: 100%;
    margin-top: 10px;
}



header nav ul
{
	list-style: none;
	display: flex;
}
header nav ul li a
{
	margin: 0px 6px;
	font-size: 18px;
	padding: 5px 10px;
	text-decoration: none;
	color: #212121;
}
header nav ul li a:hover
{
	text-decoration: none;
	color: #fff;
	background-color: #f50057;
}
header nav ul li a.active
{
	color: #fff;
	background-color: #f50057;
}
.menu-toggle
{
	float: right;
	margin: 8px;
	padding: 4px;
	box-sizing: border-box;
	width: 45px;
	display: none;
	height: 45px;
	text-align: center;
	line-height: 45px;
	cursor: pointer;
}
.menu-toggle svg
{
	height: 35px;
	width: 35px;
	padding: 2px;
	color: #333;
}
header nav ul li ul
{
	display: none;
	background-color: #fff;
	z-index: 99999999;
}
header nav ul li ul li
{
	padding: 0px;
	margin: 0px;
}

header nav ul li:hover ul
{

	position: absolute;
	width: max-content;
	display: block;
	line-height: normal;
	z-index: 9999;
	box-shadow: 1px 1px 10px #ccc;
	border-radius: 2px;

}

header nav ul li ul li a
{
	padding: 5px 20px;
	display: block; 
	margin: 0px;
}

header nav  ul li:hover ul {
    opacity: 1;
    pointer-events: auto;
    animation: moveUp .5s ease-in-out forwards;
}
@keyframes moveUp {
    0% {
        opacity: 0;
        transform: translateX(0%) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0%) translateY(-5px); 
    }
}


.header-margin
{
	height: 100px;
}
.clear
{
	clear: both;
}


.btn-g {
    background-image: linear-gradient(135deg, #67d690 0%, #00a99d 100%);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 50px;
    border-radius: 35px;
    text-decoration: none;
    box-shadow: 0px 15px 51px 0px rgb(0 0 0 / 24%);
}
.btn-g:hover
{
	text-decoration: none;
	color: #fff;
}

div .img-auto
{
	width: 80%;
	margin-top: 10px;
}


.header-content
{
    margin-top: 20px;
	color: #fff;
}
.header-content p
{
	font-size: 18px;
	margin-bottom: 30px;
}
.section-info .content{
    box-shadow: 1px 1px 30px 0 rgb(0 0 0 / 8%);
    border-radius: 5px;
    padding: 50px;
}

.section-info .content .left-box {
    border-right: 1px solid #eeeded;
}
.section-info .content .box {
    padding-right: 30px;
    padding-left: 10px;
}
.section-info .content .box img {
    margin-bottom: 15px;
}



.media .box {
    box-shadow: 2px 2px 20px 0 rgb(0 0 0 / 9%);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    transition: all .4s ease-in-out;
}
.media {
    display: flex;
    padding: 50px 0px;
    align-items: flex-start;
}

.media .box h2 {
    font-size: 20px;
    font-weight: 400;
    color: #4a545e;
    margin: 0;
    padding: 15px 0px;
    margin-left: 20px;
}

.copyright
{
	text-align: center;
    padding: 30px 0px;
}
.copyright p
{
	color: #fff;
	font-size: 17px;
}
.copyright a:hover
{
	color: #ff5722;
}

.get-started {
    padding: 120px 0;
    background: url(../img/get-started.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 0px;
}
.text-white {
    color: #fff!important;
}
.get-started h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
.get-started p {
    font-size: 20px;
    font-weight: 300;
    margin: 15px;
}
.get-started .btn-1 {
    background: #ffffff;
    box-shadow: 1px 1px 10px 0 rgb(0 0 0 / 6%);
    border: 1px solid rgba(0,0,0,0);
    text-decoration: none;
    color: #757575;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.2s ease-in;
}
.get-started .btn-1:hover
{
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
	font-size: 16px;
}


/* Login Page Css*/


.login-section
{
    margin: 60px 0px;
}

.login-div .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f8f8f9;
    border: 0;
    border-radius: 5px;
}
.form-controls
{
    padding: 16px;
    width: 100%;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f8f8f9;
    border: 0;
    border-radius: 5px;
}
.login-div .left
{
    margin: 20px;
    padding: 40px 60px;
    box-shadow: 1px 1px 30px 0 rgb(0 0 0 / 8%);
    border-radius: 5px;
}

.login-div h3 {
    font-size: 20px;
    font-weight: 500;
    color: #4a545e;
    margin: 0;
    margin-bottom: 20px;
}

.login-div button.btn {
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    background-image: linear-gradient(135deg, #67d690 0%, #00a99d 100%);
    color: #ffffff;
}

/* USER DASHBORD CSS*/

.user-dashbord
{
    margin: 50px 0px;
    padding: 10px;
}

.user-dashbord-div
{
    margin: 0px;
    padding: 20px;
    box-shadow: 1px 1px 30px 0 rgb(0 0 0 / 8%);
    border-radius: 5px;
}
.tabs-border
{
    border-left: 1px solid #ccc;
}

/*  Product List Css */

.product-div
{
    padding: 20px;
}
.shop-product
{
    box-shadow: 1px 1px 30px 0 rgb(0 0 0 / 8%);
    border-radius: 5px;
    padding: 40px 20px;
}
.shop-product img
{
    width: 100%;
}
.shop-product span
{
    width: 100%;
    display: block;
}
.shop-product h3
{
    margin: 20px 0px;
}
.shop-product h3 a
{
    color: #333;
}
.shop-product h3 a:hover
{
    text-decoration: none;
    color: #f50057;
}
.btn-gs
{
    background-image: linear-gradient(135deg, #ffeb3b 0%, #ff5722 100%);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 35px;
    text-decoration: none;
}
.btn-gs:hover
{
    background-image: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
    color: #fff;
    text-decoration: none;
}


.product-details-image img
{
    width: 80%;
    margin: 20px auto;
}
.product-real-price
{
    text-decoration: line-through;
    padding-right: 20px;
    font-weight: 600;
    color: #ff1744;
}
.product-discount-price
{
    padding: 5px 20px;
    color: green;
    font-size: 18px;
    font-weight: 600;
}   
.product-details h1
{
    font-size: 25px;
    color: #424242;
    padding: 10px 0px;
}
.product-description
{
    font-size: 16px;
    margin: 20px 0px 50px 0px;
}


.text-uppercase
{
    color: #fff;
    font-size: 21px;
    margin-bottom: 10px;
}
.py-5
{
    padding: 30px 0px;
}

.py-5 ul li a
{
    color: #bfbfbf;
    font-size: 17px;
}
.py-5 p
{
    margin-top: 10px;
    font-size: 17px;
}












