*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Jost', sans-serif;
    perspective: 600px;
}
.header .container1{
    width: 88%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 10px 0;

}
.header .container1 .left-nav{
    display: flex;
    align-items: center;
}
.header .container1 .left-nav a{
    text-decoration: none;
    color: rgb(58, 58, 58);
    font-size: 14px;
    padding: 0 10px;
}
.header .container1 a{
    position: relative;
}
.header .container1 a::after{
    content: '';
    position: absolute;
    width: 2px;
    height: 0px;
    background-color: rgb(235, 103, 59);
    left: 0px;
    bottom: 0px;
    opacity: 1;
    transition: 1s;
}
.header .container1 a:hover::after{
    height: 100%;
    transition: 1s;
}
.header .container1 a::before{
    content: '';
    position: absolute;
    width: 2px;
    height: 0px;
    background-color: rgb(235, 103, 59);
    right: 0px;
    top: 0px;
    opacity: 1;
    transition: 1s;
}
.header .container1 a:hover::before{
    height: 100%;
    transition: 1s;
}
.header .container1 .right-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .container1 .right-nav a{
    text-decoration: none;
    color: rgb(68, 68, 68);
    font-size: 14px;
    padding: 0 10px;
}
.header .container1 .right-nav a i{
    color: black;
    transition: 1s;
}
.header .container1 .right-nav a:hover i{
    color: rgb(235, 103, 59);
    transform: rotateY(180deg);
    transition: 1s;
}
.header .container2{
    width: 88%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.header .container2 .logo{
    padding: 10px;
}
.header .container2 .nav{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45%;
}
.header .container2 .nav .nav-link{
    font-size: 18px;
    padding: 10px;
    text-decoration: none;
    color: black;
    position: relative;
}
.header .container2 .nav .nav-link:hover{
    color: rgb(235, 103, 59);
}
.header .container2 .nav .pages i{
    margin-left: 5px;
    font-size: 10px;
    display: inline;
}
.header .container2 .nav .nav-link::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom:-2px;
    left: -2px;
    border:2px solid rgb(235, 103, 59);
    border-top: 0;
    border-bottom: 0;
    opacity: 1;
    /* transform: scaleX(0); */
    transition: .5s;
}
.header .container2 .nav .nav-link:hover::before{
    height: 101%;
    transition: .5s;
    /* transform: scaleX(1); */
}
.header .container2 .nav .nav-link::after{
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top:0px;
    left: -2px;
    border: 2px solid rgb(235, 103, 59);
    border-left: 0;
    border-right: 0;
    opacity: 1;
    transition: .5s;
    /* transform: scaleY(0); */
}
.header .container2 .nav .nav-link:hover::after{
   width: 103%;
   /* transform: scaleY(1); */
}
.header .container2 .icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .container2 .icons a{
    font-size: 20px;
    padding: 10px;
    text-decoration: none;
    color: black;
    position: relative;
}
.header .container2 .icons a:hover{
    color: rgb(235, 103, 59);
}
.header .container3 {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(58, 58, 58);
}
.header .container2 .icons a span{
    position: absolute;
    top: -5px;
    right: 10px;
    background-color: rgb(235, 103, 59);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 50%;
}
.header .container2 .icons .cart:hover span{
    top:-10px;
    transition: .5s;
}
.header .container3 p{
    font-size: 18px;
    color: white;
}
/* drop dow */
.header .container2 .nav .drop-down{
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    width: 280px;
    background-color: white;
    box-shadow: 1px 1px 2px #00000070, -1px -1px 2px #00000070;
    border-radius: 20px;
    top: 50px;
    left: 350px;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    z-index: 10;
    transform: scale(0,0);
    padding:0 15px;
}
.header .container2 .nav .drop-down h4{
    font-size: 20px;
    color: rgb(100, 100, 100);
    margin-bottom: 10px;
    border-bottom: 1px dashed rgb(235, 103, 59);
    font-weight: 300;
    height: 30px;
}
.header .container2 .nav .drop-down a{
    height: 30px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    transition: 0.3s;
}
.header .container2 .nav .drop-down a:hover{
    color: rgb(235, 103, 59);
    transform: scale(1.1,1.1);
}
.header .container2 .nav .pages:hover .drop-down{
    top: 50px;
    left: 350px;
    opacity: 1;
    visibility: visible;
    transition: 1s;
    transform: scale(1,1);
}
.header .container2 .nav .drop-down .column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
}
/*  */
.header .container3 p a{
    color: rgb(235, 103, 59);
    transition: 0.3s;
}
.header .container3 p a:hover{
    letter-spacing: 2px;
}
/* hero section */
.hero{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px;
    background-color: rgb(247, 244, 243);
}
.hero .hero-content{
    width: 50%;
    padding: 10px;
    text-align: center;
}
.hero .hero-content h4{
  font-family: "Clicker Script", cursive;
    font-size: 40px;
    color: rgb(235, 103, 59);
    margin-bottom: 20px;
    font-weight: lighter;
}
.hero .hero-content h3{
    font-size: 50px;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    font-weight: bolder;
}
.hero .hero-content h3 span{
    color: rgb(235, 103, 59);
    font-family:"Playfair Display", serif;
}
.hero .hero-content p{
    font-size: 16px;
    color: rgb(110, 110, 110);
    margin-bottom: 50px;
    line-height: 1.5;
    padding: 0 70px;
}
.hero .hero-content .hero-btn{
    text-decoration: none;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    text-transform: uppercase;
    transition: .5s;
}
.hero .hero-content .hero-btn:hover{
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    color: black;

}
/* ---------------------------------------------section1 -----------------------------------------------*/
.section1{
    display: flex;
    width: 88%;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 50px 0px;
}
.section1 .product-card{
    width: 30%;
    height: 450px;
    background-color: rgb(247, 244, 243);
    position: relative;
    overflow: hidden;
}
.section1 .product-card img{
    transition: .5s;
}
.section1 .product-card::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom:0;
    left: 0;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(255, 255, 255, 0));
    opacity: .7;
}
.section1 .product-card .product-info{
    width: 100%;
    position: absolute;
    bottom: -22px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    text-align: center;
    transition: .5s;
    z-index: 3;
}
.section1 .product-card .product-info h3{
    font-size: 28px;
    margin-bottom: 15px;
}
.section1 .product-card .product-info a{
    text-decoration: none;
    color: rgb(235, 103, 59);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: bold;
    border-bottom: 2px solid rgb(235, 103, 59);
}
.section1 .product-card:hover .product-info{
    bottom: 20px;
    transition: .5s;
}
.section1 .product-card:hover img{
    transform: scale(1.1);
    transition: .5s;
}
/*------------------------------------- section2 --------------------------------------------------*/
.section2{
    width: 100%;
    padding: 60px 0px;
}
.section2 .trending-header{
    margin: auto;
    width: 88%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.section2 .trending-header h3{
    font-size: 36px;
    color: rgb(235, 103, 59);
    font-weight: 600;
}
.section2 .trending-header .trending-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
}
.section2 .trending-header .trending-nav a{
    height: 100%;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 20px;
    transition: .5s;
    text-transform: capitalize;
}
.section2 .trending-header .trending-nav .active{
    color: rgb(235, 103, 59);
    position: relative;
}
.section2 .trending-header .trending-nav .active::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: rgb(235, 103, 59);
    bottom: -41px;
    left: 0px;
}
.section2 hr{
    width: 88%;
    margin: 20px auto;
}
.section2 .trending-products{
    width: 88%;
    margin: auto;
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.section2 .trending-products .product-card{
    position: relative;
    perspective: 1000px;
    overflow: hidden;
}
.section2 .trending-products .product-card .product-info{
    text-align: center;
    margin-top: 15px;
}
.section2 .trending-products .product-card .product-info a{
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    text-decoration: none;
    color: black;
}
.section2 .trending-products .product-card .product-info p{
    font-size: 20px;
    color: rgb(110, 110, 110);
    padding: 10px 0;
}
.section2 .trending-products .product-card .product-info span{
    font-size: 20px;
    padding: 0 15px;
}
.section2 .trending-products .product-card:hover .product-info a{
    color: rgb(235, 103, 59);
    transition: .2s;
}

.section2 .trending-products .product-card::after{
    content: "";
    width: 315px;
    height: 395px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/trend1.png);
    background-size: cover;
    backface-visibility: hidden;
    transform: rotateY(90deg);
    transition: 1s;
    transform-style: preserve-3d;

}
   
.section2 .trending-products .product-card:hover::after{
      transform: rotateY(0deg);
}
.section2 .trending-products .product-card .icons{
    background-color: white;
    width: 55%;
    height: 50px;
    position: absolute;
    bottom: 115px;
    left:20%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    z-index: 2;
    opacity: 0;
}
.section2 .trending-products .product-card .icons a{
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: black;
    font-size: 20px;
    padding: 10px 15px;
    
}
.section2 .trending-products .product-card .icons a:hover{
    background-color: rgb(235, 103, 59);
    color: white;
    transition: .5s;
}
.section2 .trending-products .product-card:hover .icons{
    bottom: 125px;
    transition: .5s;
    opacity: 1;
}
.section2 .trending-products .left, .right{
    font-size: 30px;
    color: rgb(200, 200, 200);
    cursor: pointer;
    transition: .5s;
    position: absolute;
}
.section2 .left{
    left:-40px;
    top:40%;
}
.section2 .right{
    right:-40px;
    top:40%;
}
.section2 .left:hover, .right:hover{
    color: rgb(150, 150, 150);
    transition: .5s;
}
/* ------------------------------------------------section3---------------------------------------------------- */
.section3{
    height: 60%;
    width: 100%;
    background-color:rgb(219, 219, 219);
    margin: 50px 0;
    border-top: 1px solid rgb(150, 150, 150);
    border-bottom: 1px solid rgb(150, 150, 150);
    position: relative;
}
.section3 h2{
    font-size: 36px;
    color: rgb(235, 103, 59);
    padding: 30px 0;
    text-align: center;

}
.section3 .description{
    font-size: 22px;
    color: rgb(100, 100, 100);
    padding: 0 30%;
    line-height: 1.5;
    text-align: center;
}
.section3 .customer-test{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.section3 .customer-test img{

    border-radius: 50%;
}
.section3 .customer-test .customer-info{
padding: 0px 10px;
}
.section3 .customer-test .customer-info p{
    font-size: 16px;
    color: rgb(110, 110, 110);
    font-weight: bold;
}
.section3 .left,.section3 .right{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    color: rgb(110, 110, 110);
    cursor: pointer;
    transition: .5s;
    position: absolute;

}
.section3 .left{
    left:80px;
    top:50%;
}
.section3 .right{
    right:80px;
    top:50%;
}
.section3 .left:hover,.section3 .right:hover{
        background-color: rgb(235, 103, 59);
    color: rgb(255, 255, 255);
    transition: .5s;
}
/* ---------------------------------------------section4------------------------------------------------ */
.section4{
    width: 100%;
    padding: 30px 0px;

}
.section4 .like-header{
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: rgb(235, 103, 59);
}
.section4 .like-products{
    width: 88%;
    margin: auto;
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.section4 .like-products .product-card .product-info{
    text-align: center;
    margin-top: 15px;
}
.section4 .like-products .product-card .product-info a{
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    text-decoration: none;
    color: black;
}
.section4 .like-products .product-card .product-info p{
    font-size: 20px;
    color: rgb(110, 110, 110);
    padding: 10px 0;
}
.section4 .like-products .product-card .product-info span{
    font-size: 20px;
    padding: 0 15px;
}
.section4 .like-products .product-card:hover .product-info a{
    color: rgb(235, 103, 59);
    transition: .2s;
}
.section4 .like-products .product-card{
    position: relative;
    perspective: 600px;
    overflow: hidden;
}
.section4 .like-products .product-card::after{
    content: "";
    width: 315px;
    height: 390px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/like-hover.webp);
    background-size: cover;
    backface-visibility: hidden;
    transform: translateY(-370px);
    transition: 1s;
    transform-style: preserve-3d;
    opacity: 0;
    visibility: hidden;

}
   
.section4 .like-products .product-card:hover::after{
      transform: translateY(0px);
      opacity: 1;
      visibility: visible;
      height: 390px;
}
.section4 .like-products .product-card .icons{
    background-color: white;
    width: 55%;
    height: 50px;
    position: absolute;
    bottom: 115px;
    left:20%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    z-index: 2;
    opacity: 0;
}
.section4 .like-products .product-card .icons a{
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: black;
    font-size: 20px;
    padding: 10px 15px;
    
}
.section4 .like-products .product-card .icons a:hover{
    background-color: rgb(235, 103, 59);
    color: white;
    transition: .5s;
}
.section4 .like-products .product-card:hover .icons{
    bottom: 125px;
    transition: .5s;
    opacity: 1;
}
.section4 .like-products .left, .right{
    font-size: 30px;
    color: rgb(200, 200, 200);
    cursor: pointer;
    transition: .5s;
    position: absolute;
}
.section4 .left{
    left:-40px;
    top:40%;
}
.section4 .right{
    right:-40px;
    top:40%;
}
.section4 .left:hover, .right:hover{
    color: rgb(150, 150, 150);
    transition: .5s;
} 
/*--------------------------------------------------------- section5------------------------------------------ */
.section5{
    width:100%;
    height: 100vh;
    padding: 20px 0;
    background-color: rgb(247, 244, 243);
    border-top:2px solid rgb(215, 212, 212) ;
    border-bottom: 2px solid rgb(215, 212, 212);
}
.section5 .latest-header{
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: rgb(235, 103, 59);   
    height: auto;
    padding-bottom: 20px;
}
.section5 .latest-products{
    width: 88%;
    margin: auto;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.section5 .latest-products .product-card{
    width: 30%;
}
.section5 .latest-products .product-card img{
    width: 100%;
    height: 400px;
    transition: .5s;
}
.section5 .latest-products .product-card .product-info span{
    font-size: 18px;
    color :rgb(110, 110, 110);
    padding: 15px 0;
}
.section5 .latest-products .product-card .product-info{
    padding: 15px 0;
}

.section5 .latest-products .product-card .product-info h4{
    font-size: 20px;
    margin: 15px 0;
    font-weight: 400;
}
.section5 .latest-products .product-card .product-info p{
    font-size: 18px;
    color: rgb(150, 150, 150);
    margin-bottom: 15px;
}
.section5 .latest-products .product-card .product-info a{
    font-size: 24px;
    color: rgb(235, 103, 59);
    transition: .5s;
    display: inline-block;
}
.section5 .latest-products .product-card:hover .product-info h4{
    color: rgb(235, 103, 59);
}
.section5 .latest-products .product-card .product-info a:hover{
 transform: scale(1.1,1.1);
transition: .5s;
}
.section5 .latest-products .product-card img:hover{
    transform: scale(1.05,1.05);
    transition: .5s;
}
/* -------------------------------------------------section6 ------------------------------------------------------------*/
.section6{
    width: 100%;
}
.section6 .services-container{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
}
.section6 .services-container .service-card{
    text-align: center;
}
.section6 .services-container .service-card h4{
    font-size: 20px;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}
.section6 .services-container .service-card p{
   color: rgb(110, 110, 110);
   padding: 0 50px;
}

.section6 .services-container .service-card .icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 10px;
  overflow: hidden;
}

.section6 .services-container .service-card .icon i {
  font-size: 50px;
  position: absolute;
  color: rgb(150, 150, 150);
  display: block;
  transition:0.5s;
}

.section6 .services-container .service-card .icon .front {
  top: 0;
  opacity: 1;

}

.section6 .services-container .service-card .icon .back {
  top: 100%;
  opacity: 0;
    color: rgb(235, 103, 59);
}

.section6 .services-container .service-card .icon:hover .front {
  top: -100%;
  opacity: 0;
}

.section6 .services-container .service-card .icon:hover .back {
  top: 0;
  opacity: 1;
}
/* -------------------------------------------section7------------------------------------------- */
.footer{
    width: 100%;
    background-color: rgb(58, 58, 58);
    color: white;
}
.footer .container1{
    width: 88%;
    min-height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 20px 0 0;
    border-bottom: 1px solid rgb(100, 100, 100);
}
.footer .container1 .text h4{
    font-size: 25px;
    margin-bottom: 15px;
}
.footer .container1 .text p{
    font-size: 18px;
    color: rgb(200, 200, 200);
}
.footer .container1 .contact{
    display: flex;
    align-items: center;
    justify-content: center;
}    
.footer .container1 .contact input{
    width: 450px;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
}
.footer .container1 .contact a{
    text-decoration: none;
    background-color: rgb(235, 103, 59);
    color: white;
    height: 50px;
    padding: 10px 30px;
    font-size: 22px;
    margin-left: 10px;
    transition: .5s;
}
.footer .container1 .contact a:hover{
transform: scale(1.1,1.1);
}

.footer .container1 .social a i{
  font-size: 24px;
    color: white;
    margin: 0 5px;
    transition: .5s;
}
.footer .container1 .social a i:hover{
    color: rgb(235, 103, 59);
    transition: .5s;
    transform: scale(1.1,1.1);
}
.footer .container2{
    width: 88%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:auto;
    padding: 50px 0;
    border-bottom: 1px solid rgb(100, 100, 100);
}
.footer .container2 .footer-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer .container2 .logo{
    width: 110px;
    height: 110px;
    padding: 15px 7px;
    background-color: white;
    border-radius: 50%;
    align-self: flex-start;
}
.footer .container2 .footer-column h4{
    font-size: 22px;
    margin-bottom: 25px;
}
.footer .container2 .footer-column a{
    text-decoration: none;
    color: rgb(200, 200, 200);
    font-size: 16px;
    margin-bottom: 10px;
    transition: .5s;
}
.footer .container2 .footer-column a:hover{
    text-decoration: underline;
    transform: scale(1.1,1.1);
    transition: .5s;
}
.footer .container3{
    width: 88%;
    text-align: center;
    margin: auto;
    padding: 30px 0;
}
.footer .container3 p{
    font-size: 16px;
    color: rgb(200, 200, 200);
}
.footer .container3 p a{
    text-decoration: none;
    color: rgb(235, 103, 59);
    transition: .5s;
}
.footer .container3 p a:hover{
    letter-spacing: 2px;
    transition: .5s;
    text-decoration: underline;
}
@keyframes heartColorChange {
    0% { color: rgb(0, 0, 0); 
    transform: scale(1,1); }
    50% { color: rgb(235, 103, 59);
    transform: scale(1.2,1.2); }
    100%{ color: rgb(0, 0, 0);
    transform: scale(1,1);}
}
.footer .container3 p i {
    animation: heartColorChange 1s infinite;
}