
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*::after,
*::before{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0
  
}

body{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
	
}

:root{
	--darkgray:#434348;
	--darkblue:#090D22;
	--blue:#007EEF;

}


.top-header {
	padding: 15px 0;
	border-block: 1px solid #E3E3E4;
	background: #FFFFFF;
}

.top-header .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-header .lt-block .d-flex{
	gap: 50px;
}

.top-header .lt-block .d-flex .email{
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-header .lt-block .d-flex .phone{
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-header .lt-block .d-flex .icon{
	color: #FF575E;
	font-size: 15px;
}

.top-header .lt-block .d-flex a{
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color:var(--darkgray) ;
}

.top-header .rt-block h5{
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color:var(--darkgray) ;

}

.top-header .rt-block h5 a{
	color: #FF575D;
	padding: 0 5px;
	display:inline-block;
}




/**********header********************/

.header{
	padding: 30px 0;
	background: #fff;
}

.header .d-flex{
    align-items: center;
}

.header .lt-block {
    width: 70%;
}

.header .lt-block .flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo-block{
	width: 120px;
}

.header .logo-block img{
	width: 100%;
}

.header .lt-block nav .primary-nav{
	display: flex;
}

.header .rt-block {
	margin-inline-start: auto;
}

.header .rt-block .flex{
	display: flex;
	align-items: center;
	gap: 25px;
}

.header .rt-block .input-filed{
	position: relative;
}

.control {
    outline: none;
    height: 36px;
    padding-inline-start: 50px;
    padding-inline-end: 15px;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translate(-0, -50%);
    color: #ACADAE;
}




.primary-nav li{
  display:inline-block;
  margin:0 10px;
  overflow:hidden;
}

.primary-nav li a{
  padding:0 10px 0 10px;
  position: relative;
  display:inline-block;
  text-decoration:none;
  color:#434347;
  font-size:16px;
  margin:0;
  text-transform: uppercase;
}

li a::before,
li a::after{
  position: absolute;
  transition:all 0.35s ease;
}

  
li a::before{
  position: absolute;
  content:"";
  left:100%;
  width:5px;
  height:100%;
  background-color:#007EEF;
  display: block;
}

li a::after{
    position: absolute;
    left:100%;
    top:0;
    content:attr(data-hover);
    color:#007EEF;
    white-space:nowrap;
     padding:0 10px 0 10px;
  }

  li:hover a,
  .current a{
    transform:translateX(-100%);
      transition:all 0.35s ease;
  }

  .shop a{
  	color: #ACADAE;
  }
  .menu{
  	display: none;
  }





/* ****************** banner**************/

.banner {
    background: #EFF4FF;
    padding-block-start: 140px;
    height: 800px;
    overflow: hidden;
}

.banner .d-flex{

}

.banner .lt-block {
	width: 50%;
}

.banner .lt-block .text-content {

}

.banner .lt-block .text-content h5{
	font-size: 16px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--blue);
	text-transform: uppercase;
}

.banner .lt-block .text-content h1{
	font-size: 60px;
	font-weight: 700;
	color: var(--darkblue);
	text-transform: capitalize;
	padding-block-start: 16px;
}

.banner .lt-block .text-content h1 span{
	display: block;
}

#explore{
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	width: 180px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	border-radius: 4px;
	border:none;
	margin-block-start: 35px;
	transition: all 0.5s ease;
}

#explore:hover{
	background:#FF575E;
	transition: all 0.5s ease;
}

.banner .lt-block{
	position: relative;
}

.banner .lt-block .text-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-0, -100%);
}





.banner .rt-block {
	width: 50%;
}



.banner .rt-block .image-block{
    position: relative;
    z-index: 333;
}

.banner .rt-block .image-block::after {
    position: absolute;
    content: "";
    height: 100%;
    border-right: 8px solid red;
    right: 0;
    z-index: -1;
    border-left: 8px solid #FE4D4D;
    left: 10%;
    border-top: 8px solid red;
}

.banner .rt-block .image-block img {
    width: 100%;
    object-fit: cover;
    position: relative;
    top: -100px;
}






/*****************information*************/

.information {
    position: relative;
    top: -60px;
    z-index: 333;
}

.information .d-flex{
	justify-content: space-between;
	flex-wrap: wrap;
}

.information .d-flex .box {
    width: 30%;
    padding: 0 30px;
}

.information .d-flex .box .flex{
	display: flex;
	gap: 12px;
}

.information .d-flex .box .flex .icon img{
	width: 100%;
}

.information .d-flex .box .flex h4{
	font-size: 20px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--darkblue);
}

.information .d-flex .box .flex h5{
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: var(--darkgray);
	padding-block-start: 10px;
}

.information .content{
	background: #fff;
	padding: 35px 0;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	border-right: 10px;
}



/*****************collection***********/


.collection{
	padding-block-start: 50px;
}

.collection .col-lg-6:nth-child(1){
	background:#DFF5FF;
}

/*.collection .col-lg-6 .box{
	background: #DFF5FF;
}*/

.collection .col-lg-6 .box .text{
	padding: 0 0 0 70px;
}

.collection .col-lg-6 .box .text h5{
	font-size: 18px;
	line-height: 1.3;
	font-weight: 400;
	color: #3F444A;

}

.collection .col-lg-6 .box .text h3{
	font-size: 34px;
	line-height: 1.3;
	font-weight: 700;
	color:#0A0E23;
	padding-block-start: 9px;

}

.collection .col-lg-6:nth-child(1) .box{
   padding:0 0 20px 0;
}

.collection .col-lg-6 .box .text h5 span{
	color:#FF575D;
}

.collection .col-lg-6 .box .image-block {
	width:500px;
	margin: 0 auto;
}

.collection .col-lg-6 .box .image-block img{
	width: 100%;
}

.collection .col-lg-6 .row .col-lg-12 .box{
	position: relative;
}

.collection .col-lg-6 .row .col-lg-12 .box .image-text {
    position: absolute;
    top: 14%;
    left: 7%;
}

.collection .col-lg-6 .row .col-lg-12 .box .image-text h5{
    font-size: 18px;
	line-height: 1.3;
	font-weight: 400;
	color: #3F444A;
}

.collection .col-lg-6 .row .col-lg-12 .box .image-text h3{
    font-size: 34px;
	line-height: 1.3;
	font-weight: 700;
	color: #0A0E23;
}

.collection .col-lg-6 .row .col-lg-12 .box .image-text h3 span{
    color:#fff;
}



.collection .col-lg-6 .row .col-lg-12:nth-child(1){
	margin: 0 0 10px 0;
}

.collection .col-lg-6 .row .col-lg-12 .image-box img{
	width: 100%;
}

.collection .col-lg-6 .row .col-lg-12:nth-child(2) .box{
	background: #FF788F;
}



/****************new-arrivals ********************************/


.new-arrivals {
     padding: 120px 0 0 0;
}

.new-arrivals .title h2{
	font-size: 42px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: capitalize;
	color: #0A0E23;
	text-align: center;
	padding-block-end: 60px;

} 

.new-arrivals .col-lg-3 .box .image-box{
	position: relative;
	transition: all 0.5s ease;
	overflow: hidden;
}



.new-arrivals .col-lg-3 .box .image-box .hover-block {
    position: absolute;
    width: 100%;
    bottom: 10%;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}

.new-arrivals .col-lg-3 .box .image-box:hover .hover-block{
   transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
    visibility: visible;

}

.new-arrivals .col-lg-3 .box .image-box img{
	width: 100%;
	transition: all 0.5s ease;
}
	


.new-arrivals .col-lg-3 .box .image-box:hover img{
	scale: 1.1;
	transition: all 0.5s ease;
}






.new-arrivals .col-lg-3 .box .image-box .hover-block .d-flex{
	gap: 10px;
	justify-content: center;
}

.new-arrivals .col-lg-3 .box .image-box .hover-block .d-flex .icon{
	padding: 10px 15px;
	background: #FFFFFF;
	border-radius: 5px;
	cursor: pointer;
}

.new-arrivals .col-lg-3 .box .image-box .hover-block .d-flex .icon:hover{
	background: #FF575D;
	color: #fff;
}



.new-arrivals .bottom-block{
	text-align: center;
	background: #fff;
	padding: 30px 0 15px 0;
}

.new-arrivals .bottom-block h5{
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;

}

.new-arrivals .bottom-block .d-flex{
	align-items: center;
	gap: 10px;
	justify-content: center;
	padding-block-start: 10px;
}

.new-arrivals .bottom-block .d-flex span{
	font-size: 12px;
	line-height: 1.3;
	font-weight: 400;
	color: #434347;
}

.new-arrivals .bottom-block h3{
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	padding-block-start: 15px;
}

#view-product{
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	background: var(--blue);
	border: none;
	width: 230px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	margin-block-start: 40px;
	border-radius: 4px;
	transition: all 0.5s ease;

}

#view-product:hover{
	background:#FF575E;
	transition: all 0.5s ease;
}




/**************deal-of-the-week************/


.deal-of-the-week{
    background: #EDF3FF;
    padding-block-start: 55px;
    margin-block-start: 120px;
}

.deal-of-the-week .col-lg-6 .box .text-content h5{
    font-size: 16px;
    line-height: 1.3;
	font-weight: 500;
	color: #434347;
}

.deal-of-the-week .col-lg-6 .box .text-content h2 {
    font-size: 52px;
    line-height: 1.3;
    font-weight: 700;
    color: #090D22;
    padding: 15px 0;
}

.deal-of-the-week .col-lg-6 .box .text-content h1{
    font-size: 64px;
    line-height: 1.3;
	font-weight: 700;
	color:#FF575D;
	position: relative;
}

.deal-of-the-week .col-lg-6 .box .text-content h1 span{
	font-size:18px;
    line-height: 1.3;
	font-weight: 600;
	padding: 0 10px;
	background:#FF575D ;
	color: #fff;
	border-radius: 6px;
	position: absolute;
	top: 18px;

}

#countdown {
	padding-block-start: 30px;
}

#countdown ul{
	display: flex;
    gap: 30px;
}

#countdown li {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    color: #434347;
    letter-spacing: 4px;
    text-align: center;
}

#countdown li span {
    display: block;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    width: max-content;
    margin: 0 auto;
    color: #0A0D23;
}


#shop-collection{
	width: 230px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background: var(--blue);
	border: none;
	letter-spacing: 3px;
	border-radius: 4px;
	margin-block-start:50px;
	transition: all 0.5s ease;
}

#shop-collection:hover{
	background:#FF575E;
	transition: all 0.5s ease;
}






/*****************offer*************/

.offer{
  position: relative;
  margin-block-start: 120px;
}

.offer .offer-bg img{
	width: 100%;
}

.offer .text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.offer .text-content h5{
	font-size: 18px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--blue);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.offer .text-content h2{
	font-size: 58px;
	line-height: 1.3;
	font-weight: 800;
	color: var(--darkblue);
	text-transform: uppercase;
	padding-block-start: 15px;
}

.offer .text-content h2 span{
	color: #FF575E;
}

.offer .text-content p{
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #434347;
	padding-block-start: 22px;
	
}

.offer .text-content p span{
	display: block;
}

#shop-now{
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	background: var(--blue);
	width: 160px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	border:none;
	margin: 0 auto;
	margin-block-start: 35px;
	transition: all 0.5s ease;
}

#shop-now:hover{
	background:#FF575E;
	transition: all 0.5s ease;
}



/**************blog******************/



.blog{
    padding: 120px 0 0 0;
}

.blog .title h2{
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: capitalize;
    color: #0A0E23;
    text-align: center;
    padding-block-end: 60px;
} 

.blog .col-lg-4 .box{
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.blog .col-lg-4 .box .image-block{
	overflow: hidden;
	transition: all 0.5s ease;
}

.blog .col-lg-4 .box .image-block img{
	width: 100%;
	transition: all 0.5s ease;
}

.blog .col-lg-4 .box:hover .image-block img{
	scale: 1.2;
	transition: all 0.5s ease;
}


.blog .col-lg-4 .box .middle-block{
	padding: 30px;
}

.blog .col-lg-4 .box .middle-block h3{
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	text-transform: capitalize;
	color:var(--darkblue);
}

.blog .col-lg-4 .box .middle-block p{
	font-size: 16px;
	line-height:26px;
	font-weight: 400;
	color:#434347;
	padding-block-start: 15px;
	margin: 0;
}

#read-more{
	all: unset;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--blue);
	text-transform: uppercase;
	padding-block-start: 15px;
	cursor: pointer;
}

.blog .col-lg-4 .box .bottom-block{
    padding-block-start: 35px;
}

#admin{
    all: unset;
    padding: 0 40px 0 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: capitalize;
    color: #6E6E72;
    border-right: 2px solid #6E6E72;
}


#comments{
    all: unset;
    padding: 0 0 0 40px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: capitalize;
    color: #6E6E72;
}




/***************follow-us-on****************/

.follow-us-on{
	padding-block-start: 120px;
}

.follow-us-on .title{
	text-align: center;
	padding-block-end: 65px;
}

.follow-us-on .title h2{
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: capitalize;
    color: #0A0E23;
    text-align: center;
}

.follow-us-on .title h5{
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    color: #434347;
    padding-block-start: 15px;
}


.slick-dots{
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-block-start: 80px;
}

.slick-dots li {
    width: 30px;
    height: 5px;
    background:#EDF3FF;
    border-radius: 4px;
    border: 0;
    font-size: 0;
}

.slick-dots li button {
    opacity: 0;
}

.slick-dots li.slick-active {
    background:#FF575D;
}
.slick-slide img {
    display: block;
    width: 100%;
}







/****************footer*******************/


.footer {
    background: #060919;
    padding: 100px 0 60px 0;
    margin: 100px 0 0 0;
}

.footer .top-block{
	padding: 0 0 85px 0;
	border-bottom: 1px solid #1F2230;
}

.footer .title {
	padding-block-end: 20px;
}

.footer .title h4{
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
} 

.footer .col-lg-3 .box p{
    font-size: 14px;
    line-height:24px;
    font-weight: 400;
    color: #EAEAEA;
}

.footer  .box #footer-nav li{
	font-size: 14px;
    font-weight: 400;
    color: #EAEAEA;
    padding:0 0 12px 0 ;
}

.footer  .box #footer-nav .flex{
    display: flex;
    align-items: center;
    padding: 0 0 10px 0;
}

.footer .col-lg-3 .contact .flex{
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px 0;
}

.footer .col-lg-3 .contact .flex a{
	font-size: 14px;
    font-weight: 400;
    color: #EAEAEA;
}

.footer .col-lg-3 .contact .flex:nth-child(3){
	align-items: initial!important;
}

.footer .col-lg-3 .contact .flex .icon a{
    font-size: 15px;
    color: var(--blue);
}

.footer .col-lg-3 .contact .flex a{
	font-size:16px ;
	line-height: 1.3;
	font-weight: 400;
	color:#E9E9E9 ;
}


.footer .end-block .box h4{
	font-size:18px ;
	line-height: 1.3;
	font-weight: 700;
	color: #FFFFFF;
	padding-block-end: 30px;
}

.footer .end-block .input-filed{
	display: flex;
}

.email-control{
	height: 50px;
	width: 350px;
	max-width: 300px;
	background: #161616;
	border:2px solid #2D2D2D;
	outline: none;
	padding-inline-start: 15px;
	color: #fff;
	border-radius: 4px 0 0 4px;
	border-right: none;
	
}

.email-control::placeholder{
	color: #fff;
}

#send{
	width: 120px;
	height: 50px;
	border: none;
    background: #F76B6A;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0;
}

.footer .end-block{
	padding: 30px 0 0 0;
}

.footer .end-block .social {
	display: flex;
	gap: 20px;
	align-items: center;
}

.footer .end-block .col-lg-6:nth-child(2) .box{
    width:max-content;
    margin: 0 0 0 auto;
}

.footer .end-block .social .icon{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border:1px solid #353744;
	transition: all 0.5s ease;
	cursor: pointer;
}

.footer .end-block .social .icon a{
	color: #fff;
	transition: all 0.5s ease;
}

.footer .end-block .social .icon:nth-child(1){
	border:1px solid #007EEF;
}

.footer .end-block .social .icon:nth-child(1) a{
	color: #007EEF;
}

.footer .end-block .social .icon:hover{
	border:1px solid #007EEF;
	transition: all 0.5s ease;
}

.footer .end-block .social .icon:hover a{
	color: #007EEF;
	transition: all 0.5s ease;
}

.copyright .d-flex{
	justify-content: space-between;
}

.copyright{
	background: #01030E;
	padding: 20px 0;
	ro
}

.copyright .d-flex h5{
	font-size: 14px;
	line-height: 1.3;
    font-weight: 400;
    color: #E9E9E9;
}

.back-to-top {
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    bottom: 35px;
    right: 35px;
    border: 2px solid #000;
    
}













