:root{
    --blackRussian: #1f1f26;
    --greyWhite: #f9f9f9;
    --pacificBlue: #4f11e0;
}
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body{
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	background-color:#ffffff;

}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 15px;
}
.header-main{
	background-color: transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}
.header .logo{
	padding: 0 15px;
}
.header .logo a{
	font-size: 25px;
	text-transform: capitalize;
	color: #000000;
	font-weight: 600;
}
.header .nav-menu{
	padding: 18px 67px;
	border-radius: 0px 0px 0px 73px;
	background-color:transparent;

}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #e91e63;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
    }
    .header .logo a{
        font-size: 15px;

    }

} /*sliding main banner start here*/
  @keyframes fade{
    from{
      opacity:0.4;
    }
    to{
      opacity:1;
    }
  } 
  #slider{
    margin:0 auto;
    width:100%;
    height: 600px;
    overflow:hidden;
  }
  
  .slides{
    overflow:hidden;
    animation-name:fade;
    animation-duration:1s;
    display:none;
  }
  
.slider-image{
    width:100%;
    height: 500px;
  }
  
  #dot{
    margin:0 auto;
    text-align:center;
  }
  .dot{
    display:inline-block;
    border-radius:50%;
    background:#d3d3d3;
    padding:8px;
    margin:10px 5px;
  }
  
  .active{
    background:black;
  }
  
  @media(max-width:567px){
    .slider-image{
      width:100%;
      height: 200px;
  
    }
    @media(max-width:567px){
        #slider{
             height: 240px;
        }  
}
 } 
/* Utility Classes  and stylings */
.heading-hr{
    background-color: rgb(47, 47, 248);
    height: 10px;
    box-shadow: 5px 12px 15px rgb(30 30 200 / 30%);    
}
.heading-image{
    width: 80%;
    display: block;
    height: 250px;
}

 .product-image{
    width: 100%;
    display: block;
    height: 330px;
    margin: 0px;

 }
 .product-mini-image{
    width: 98%;
    display: block;
    height: 250px;
 
 }
.container-one{
    padding: 5rem 1rem;
}
.card-heading{
    background-color:rgb(47, 47, 248);
    border: 2px solid black;
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    box-shadow: 5px 12px 15px rgb(30 30 200 / 30%);

}
 .mini-card-content{
  padding: 45px 0px 0px 0px


}
.text{
    padding: 10px 0;
    font-size: 15px;
    font-weight: 400;
    
}
.btn{
    margin: 25px 0;
    text-transform: uppercase;
    background: var(--blackRussian);
    color: #fff;
    border: 1.5px solid var(--blackRussian);
    font-size: 14px;
    padding: 12px 26px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.btn:hover{
    color: var(--pacificBlue);
}

/*table saction*/
table,th,td{
    border: 1px solid rgb(10, 10, 10);
   }
 table{
   border-collapse: separate;
   border-spacing: 21px 21px;
     color :rgb(31, 28, 28);
   
 }
 @media(max-width:567px){

    table{
        margin: 0 -20px;

    }
    .featured-item img{
        height: 300px;
    }
    .heading-first{
        font-size: 15px;
    }    
      .product-image{
            width: 100%;
            display: block;
            margin: 0;
        
    }
 }
/* title */
.title{
    margin: 30px 0;
}

.heading-first{
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 5px 0;
    text-align: center;
}
.title h4{
    text-transform: uppercase;
    
}
.title h2{
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 5px 0;
    background-color:rgb(47, 47, 248);
    border-radius: 20px;
    color: #ffffff;
    width: 40%;
    border: 3px solid black;
    box-shadow: 5px 12px 15px rgb(30 30 200 / 30%);
    text-align: center;
    
}

.title h2:hover{
    box-shadow: 5px 12px 15px rgba(4, 4, 14, 0.3);
    cursor: pointer;

}
@media(max-width:567px){
.title h2{
    width: 80%;
    margin: 0px 30px;

 }    
}
/* trend */
.trend-item{
    background: var(--greyWhite);
    margin: 40px 0;
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all 0.3s ease-in-out;
    align-items: center;
    box-shadow: 5px 12px 15px rgba(30,30,200,0.3);

}
.trend-item:hover{
    -webkit-box-shadow: 0px 9px 10px -10px rgba(208, 208, 208, 1);
    -moz-box-shadow: 0px 9px 10px -10px rgba(208, 208, 208, 1);
    box-shadow: 0px 9px 10px -10px rgba(208, 208, 208, 1);
}
.trend-item:nth-child(3) img{
    width: 50%;
    margin: 0 auto;
}
.trend-item-content{
    padding: 16px 0;
    line-height: 1.9;
}
.trend-item-content h4:first-of-type{
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
    opacity: 0.8;
}
.trend-item-content h4:last-of-type{
    font-weight: 600;
    font-size: 20px;
}
.chevron-icon{
    background: var(--blackRussian);
    color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 16px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.chevron-icon:hover{
    background: var(--pacificBlue);
}
/* featured */
.featured-item-img{
    width:100%;
    height: 360px;
    text-align: center;
        
}
.featured-item-img:hover{
    box-shadow: 5px 12px 15px rgba(30,30,200,0.3);
    cursor: pointer;
}
.featured-btns button:last-child{
    background: white;
    color: var(--blackRussian);
    margin-left: 10px;
}
.featured-btns button:last-child:hover{
    color: var(--pacificBlue);
    border-color: var(--pacificBlue);
}
.featured-item > div{
    padding: 24px;
}
.featured-item .item-price{
    font-weight: 700;
    font-size: 20px;
}
.featured-item{
    margin-bottom: 36px;

}
.featured-item:last-child{
    margin-bottom: 0;
}

/* blog */
.blog-item{
    
    margin: 30px 0;
    box-shadow: 5px 12px 15px rgba(30,30,200,0.3);
}
.smoll-heading{
    font-size: 25px;
   text-align: center;
   text-transform: capitalize;
   background-color:rgb(47, 47, 248);
   color: #ffffff;
   box-shadow: 5px 12px 15px rgba(30,30,200,0.3);
   border-radius: 20px;
}
.blog-item:last-of-type{
    margin-bottom: 0;
}
.blog-item-img{
    overflow: hidden;
}
.blog-item-img img{
    transition: transform 0.4s ease-in-out;
}
.blog-item-img:hover img{
    transform: scale(1.1);
}
.blog-item-content{
    padding: 28px;

}

/* Media Queries */
@media screen and (min-width: 768px){
    .trend-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 32px;
    }
    .trend-item{
        margin: 0;
    }
    .featured-item{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .featured-item:nth-child(even) .featured-item-img{
        order: 2;
    }
    .blog-grid{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 16px;
    }
    .footer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 16px;
    }
}

@media screen and (min-width: 992px){
    .containe-one{
        padding: 5rem 10rem;
    }
    .head-body-content{
        flex: 1;
        height: auto;
        align-items: flex-start;
        text-align: left;
    }
    .head-body-img{
        flex: 1;
    }
    .head-body-img img{
        width: 100%;
    }
    .blog-grid{
        grid-gap: 32px;
    }
    .footer{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media screen and (min-width: 1200px){
    .trend-grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .featured-item{
        grid-gap: 20px;
    }
}

@media screen and (max-width: 400px){
    .head-top{
        flex-direction: column;
    }
    .head-icon:first-child{
        margin-left: 0;
    }
    .brand-name{
        margin-bottom: 20px;
    }
    .head-body-content h1{
        font-size: 30px;
    }
    .head-body-content p{
        display: none;
    }
    .head-body.container-one{
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }
    .featured-btns{
        display: flex;
        flex-direction: column;
    }
    .featured-btns button{
        width: 100%;
        margin: 8px 0!important;
    }
    .form-control, .subscribe-btn{
        font-size: 16px;
    }
    .form-control{
        width: 255px;
    }
    .circle-box{
        height: 150px;
        width: 150px;
    }
    .circle-box.circle-1{
        top: -75px;
        left: -75px;
    }
    .circle-box.circle-2{
        bottom: -75px;
        right: -75px;
    }
}
footer{
	width: 100%;	
	background: linear-gradient(to right, #00093c, #2d0b00);
	color: #fff;
	padding: 100px 0 30px;
	border-top-left-radius: 125px;
	font-size:13px ;
	line-height: 20px;

  }
  .footer-row{
	width: 85%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
  }
  .col{
	flex-basis: 25%;
	padding: 10px;
  }
 /* .col:nth-child(2), .col:nth-child(3){	
	flex-basis: 15%;
  }*/
  .logo-footer{
	width: 80px;
	margin-bottom: 30px;
  }
  .col h3{
	width: fit-content;
	margin-bottom: 40px;
	position: relative;
  }
  .email-id{
	width: fit-content;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
  }
  ul li{
	list-style: none;
	margin-bottom: 12px;

  }
  ul li a{
	text-decoration: none;
	color: #ffffff;
  }
  form{
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	margin-bottom: 50px;
  }
  form .far{
	font-size: 18px;
	margin-right: 10px;
  }
  form input{
	width: 100%;
	background-color: transparent;
	color: #ccc;
	border:0;
	outline: none;
  }
  form button{
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
  }
  form button .fas{
	font-size: 16px;
	color: #ccc;
  }
  .social-icons .fab{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #000;
	background: #fff;
	margin-right: 15px;
	cursor: pointer;

  }
 .footer-hr{
	width: 90%;
	border: 0;
	border-bottom: 1px solid #ccc;
	margin: 20px auto;
  }
  .copyright{
	text-align: center;
}
.copyright a{
	color: #ffffff;
	
  }
  .underline{
	width: 100%;
	height: 5px;
	background: #767676;
	border-radius: 3px;
	position: absolute;
	top:25px;
	left: 0;
	overflow: hidden;
  }
  .underline span{
	width: 15%;
	height: 100%;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 10px;
	animation: moving 2s linear infinite;
  }
  .col a{
	color: #ffffff;

  }
  @keyframes moving{
	0%{
		left: -20px;
	}
    100%{
		left: 100%;
	}  
}
@media(max-width:700px){
	footer{	/*	bottom:unset;*/

	
	
}
.col{
	flex-basis: 100%;
	
  }
 .col:nth-child(2), .col:nth-child(3){	
	flex-basis: 100%;
}
}

