/* body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #007bff;
}

p {
    font-size: 18px;
    line-height: 1.6;
} */
/* @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');
body{
    font-family: Poppins;
    margin: 0;
    background-color: #010101;
    color: #eee;
}
svg{
    width: 25px;
}
header{
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    backgroud-color: var
}
header .logo{
    font-weight: bold;
}
header .menu{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
} */
/* css slider */

body{
    font-family: Poppins;
    margin: 0;
    background-color: white;
    color: white ;
}
.slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h2{
    font-size: 100px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
    display: flex;
    justify-content:space-evenly;

}
.arrows button{
    background-color:black;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color:grey;
    transition: .5s;
}
.arrows button:hover{
    background-color:;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
/* @media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
} */
:root{
    --primary-color:  #c98d83;
    --secondary : #783b31;
    --bg: #f2f1ec;
    --black: black;
    --white: white;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  *{
    font-family: 'Vidaloka', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
  }
  .login-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color:;
    color: white;
    text-align: center;
    font-size: 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
/* @media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
} */
:root{
    --primary-color:  #c98d83;
    --secondary : #783b31;
    --bg: #f2f1ec;
    --black: #000;
    --white: white;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  *{
    font-family: 'Vidaloka', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
  }
  .login-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color:;
    color: white;
    text-align: center;
    font-size: 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  
.login-btn:hover {
    background-color:white;
  }
  
  .login-btn:active {
    background-color: ;
  }
  
  
  
  html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
  }
  
  html::-webkit-scrollbar{
    width: .8rem;
  }
  
  html::-webkit-scrollbar-track{background: transparent;
  }
  
  html::-webkit-scrollbar-thumb{
    background: black;
    border-radius: 5rem;
  }
  
  section{
    padding: 2rem 7%;
  }
  
  .heading{
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 3rem;
    padding: 1.2rem 0;
    font-size: 4rem;
  }
  
  .heading span{
    color: var(--secondary);
    text-transform: uppercase;
  }
  
  .btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    background: var(--primary-color);
    cursor: pointer;
  }
  
  .btn:hover{
    background: var(--secondary);
  }
  
  /* header */
  
  .header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 8000;
    background: ;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
  }
  
  .header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
  }
  
  .header .logo i{
    color: var(--secondary);
    padding-right: .5rem;
  }
  
  .header .navbar a{
    font-size: 1.7rem;
    color: var(--white);
    margin: 0 1rem;
  }
  
  .header .navbar a:hover{
    color: var(--primary-color);
  }
  
  .header .icons div{
    font-size: 2.5rem;
    margin-left: 1.7rem;
    color: var(--white);
    cursor: pointer;
  }
.header .icons div:hover{
    color: var(--primary-color);
  }
  
  #menu-btn{
    display: none;
  }
  
  /* shopping cart */
  
  .cart-items-container{
    position: fixed;
    top: 0; right: -105%;
    width: 35rem;
    background: var(--white);
    display: flex;
    flex-flow: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
    z-index: 1200;
    padding: 2rem;
    text-align: center;
  }
  
  .cart-items-container.active{
    right: 0;
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
  }
  
  .cart-items-container #close-form{
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-size: 4rem;
    cursor: pointer;
    color: var(--black);
  }
  
  .cart-items-container #close-form:hover{
    transform: rotate(90deg);
    color: var(--primary-color);
  }
  
  .cart-items-container .title{
    font-size: 2.5rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .2rem;
  }
  
  .cart-items-container .cart-item{
    position: relative;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .cart-items-container .cart-item .fa-times{
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    color: var(--black);
    cursor: pointer;
  }
  
  .cart-items-container .cart-item .fa-times:hover{
    color: var(--primary-color);
  }
  
  .cart-items-container .cart-item img{
    height: 7rem;
  }
  
  .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
  }
  
  .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: left;
  }
  
  /* end */
  
  /* home */
  
  @keyframes fadeIn{
    0%{
      transform: translateY(-4rem) scale(1.1);
      opacity: 0;
    }
  }
  
  .home{
    padding: 0;
  }
.home .slide{
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home .slide::before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: white;
    z-index: -1;
  }
  
  .home .slide .content{
    text-align: center;
    width: 70rem;
    display: none;
  }
  
  .home .slide .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    padding: 2rem 0;
    animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
  }
  
  .home .slide .content .btn{
    animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .4s backwards;
  }
  
  .home .swiper-slide-active .content{
    display: inline-block;
  }
  
  .swiper-button-next,
  .swiper-button-prev{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    margin-left: 1.5rem;
    background: var(--white);
    color: var(--black);
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover{
    background: var(--primary-color);
    color: var(--white);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after{
    font-size: 1.5rem;
  }
  
  /* end */
  
  /* banner */
  
  .banner{
    background: url(../images/banner-bg.jpg);
    background-size: cover !important;
    background-position: center !important;
  }
  
  .banner img{
    margin-top: 3rem;
    height: 100%;
    width: 100%;
  }
  
  /* banner end*/
  
  /* about */
  
  .about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .about .row .image{
    flex: 1 1 40rem;
  }
  
  .about .row .image img{
    width: 100%;
    height: 100%;
  }
  
  .about .row .content{
    flex: 1 1 40rem;
  }
  
  .about .row .content h3{
    color: var(--black);
    font-size: 3.5rem;
    line-height: 1.5;
  }
  
  .about .row .content h3 span{
    color: var(--secondary);
  }
  
  .about .row .content p{
    font-size: 1.4rem;
    color: #444;
    padding: 1rem 0;
    line-height: 2;
  }
  
  /* about end*/
  
  /* product */
  
  .product{
    background: var(--bg);
  }
  
  .product .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
    gap: 2rem;
  }
  
  .product .box-container .box{
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .product .box-container .box .image{
    height: 35rem;
    width: 100%;
    padding: 1.1rem;
  }
  
  .product .box-container .box .image img{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
  }
  
  .product .box-container .box .content{
    padding: 2rem;
    padding-top: 0;
  }
  
  .product .box-container .box .content h3{
    color: var(--black);
    font-size: 2.5rem;
  }
  
  .product .box-container .box .content .stars{
    padding: 1rem 0;
  }
  
  .product .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--secondary);
  }
  
  .product .box-container .box .content .price{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--secondary);
    margin-right: 1rem;
  }
  
  /* product end */
  
  /* gallery */
  
  .gallery .gallery-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .gallery .gallery-container .box{
    height: 40rem;
    position: relative;
    overflow: hidden;
  }
  
  .gallery .gallery-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .gallery .gallery-container .box:hover img{
    transform: scale(1.1);
  }
  
  .gallery .gallery-container .box .icons{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  
  .gallery .gallery-container .box .icons i{
    font-size: 6rem;
    color: var(--white);
  }
  
  .gallery .gallery-container .box:hover .icons{
    display: flex;
  }
  video {
      height:fit-content;
      width: 100%;
  }
  
  
  /* gallery end*/
  
  
  /* weekly promotions */
  
  .promotion{
    background: url(../images/promotion.jpg) no-repeat;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .promotion .box-container{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 4rem;
  }
  
  .promotion .box-container .box{
    flex: 1 1 55rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .promotion .box-container .box .content{
    text-align: center;
  }
  
  .promotion .box-container .box .content h3{
    font-size: 3rem;
    color: var(--black);
  }
  
  .promotion .box-container .box .content p{
    font-size: 1.4rem;
    color: #444;
    padding: 1rem 0;
    line-height: 1.8;
  }
  
  /* weekly promotions ends*/
  
  /* team */
  
  .team .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .team .box-container .box{
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
  }
  
  .team .box-container .box .image{
    height: 35rem;
    width: 100%;
    padding: 1.1rem;
    overflow: hidden;
    position: relative;
  }
 
  .team .box-container .box .image img{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
  }
  
  .team .box-container .box:hover .image img{
    transform: scale(1.1);
  }
  
  .team .box-container .box .content{
    padding: 2rem;
    padding-top: 0;
  }
  
  .team .box-container .box .content h3{
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .team .box-container .box .content p{
    color: var(--black);
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  
  .team .box-container .box .content .share i{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    background: none;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--primary-color);
    border: .1rem solid var(--primary-color);
    margin: .5rem;
  }
  
  .team .box-container .box .content .share i:hover{
    color: var(--white);
    border: .1rem solid var(--secondary);
    background: var(--secondary);
    box-shadow: var(--box-shadow);
    transition: .4s linear;
    cursor: pointer;
  }
  
  
  /* team */
  
  /* parallax */
  
  .parallax{
    background: url(../images/parallax.jpg) no-repeat;
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0;
    position: relative;
  }
  
  .parallax::before{
    content: '';
    position: absolute;
    top: 0; left: 0; 
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  
  .parallax .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .parallax .box-container .box{
    text-align: center;
    justify-content: center;
  }
  
  .parallax .box-container .box .image{
    padding-top: 5rem;
  }
  
  .parallax .box-container .box .image img{
    height: 35%;
    width: 35%;
    object-fit: cover;
  }
  
  .parallax .box-container .box .content{
    padding: 2rem;
  }
  
  .parallax .box-container .box .content h3{
    color: var(--white);
    font-size: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  
  .parallax .box-container .box .content p{
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.8;
  }
  
  /* parallax end */
  
  /* review */
  
  .review{
    background: var(--bg);
  }
  
  .review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }
  
  .review .box-container .box{
    border: .1rem solid rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
  }
  
  .review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .review .box-container .box .stars i{
    font-size: 1.5rem;
    color: var(--secondary);
  }
  
  .review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
    padding-top: 1rem;
  }
  
  /* review end */
  
  /* order */
  
  .order .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .order .row .image{
    flex: 1 1 30rem;
  }
  
  .order .row .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .order .row form{
    flex: 1 1 50rem;
    padding: 5rem;
  }
  
  .order .row form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .order .row form .inputBox input,
  .order .row form textarea{
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: var(--secondary);
    text-transform: capitalize;
    background: var(--bg);
    border-radius: .5rem;
    width: 49%;
  }
  
  .order .row form .inputBox input:focus,
  .order .row form textarea:focus{
    border: .1rem solid var(--primary-color);
  }
  
  .order .row form textarea{
    width: 100%;
    resize: none;
    height: 15rem;
  }
  
  /* order */
  
  /* footer */
  
  .footer{
    background: var(--bg);
    text-align: center;
  }
  
  .footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
  
  .footer .box-container .box h3{
    text-transform: capitalize;
    font-size: 2.2rem;
    color: var(--secondary);
    padding: 1rem 0;
  }
  
  .footer .box-container .box p{
    font-size: 1.5rem;
    line-height: 2;
    color: #444;
    padding: .5rem 0;
  }
  
  .footer .box-container .box .share{
    margin-top: 1rem;
  }
  
  .footer .box-container .box .share a{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 10%;
    font-size: 1.7rem;
    background: var(--primary-color);
    color: var(--white);
    margin-right: .3rem;
  }
  
  .footer .box-container .box .share a:hover{
    background: var(--secondary);
  }
  
  .footer .box-container .box .link{
    font-size: 1.7rem;
    line-height: 2;
    color: var(--primary-color);
    padding: .5rem 0;
    display: block;
  }
  
  .footer .box-container .box .link:hover{
    color: var(--secondary);
    text-decoration: underline;
  }
  
  .footer .credit{
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--primary-color);
    border-top: .1rem solid var(--secondary);
  }
  
  .footer .credit span{
    color: var(--secondary);
  }
  /* footer */
  
  @media (max-width: 991px){
  
    html{
      font-size: 55%;
    }
  
    .header{
      padding: 2rem;
    }
  
    section{
      padding: 2rem;
    }
  
  }
  
  @media (max-width: 768px){
    #menu-btn{
      display: inline-block;
    }
  
    .fa-times{
      transform: rotate(180deg);
    }
  
    .header .navbar{
      position: absolute;
      top: 99%;
      left: 0; right: 0;
      background: var(--white);
      border-top: .1rem solid var(--secondary);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
  
    .header .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  
    .header .navbar a{
      display: block;
      margin: 2rem;
    }
  
    .home .slide .content{
      width: 40rem;
    }
  
    .home .slide .content h3{
      font-size: 4rem;
    }
  
  }
  
  @media (max-width: 450px){
  
    html{
      font-size: 50%;
    }
  
    .home .slide .content h3{
      font-size: 3rem;
    }
  }
  









/* 












/* body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #007bff;
}

p {
    font-size: 18px;
    line-height: 1.6;
} */
/* @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');
body{
    font-family: Poppins;
    margin: 0;
    background-color: #010101;
    color: #eee;
}
svg{
    width: 25px;
}
header{
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    backgroud-color: var
}
header .logo{
    font-weight: bold;
}
header .menu{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
} */
/* css slider */

/* body{
    font-family: Poppins;
    margin: 0;
    background-color: white;
    color: white ;
}
.slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h2{
    font-size: 100px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
    display: flex;
    justify-content:space-evenly;

}
.arrows button{
    background-color:black;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color:grey;
    transition: .5s;
}
.arrows button:hover{
    background-color:;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
/* @media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
} */
/* :root{
    --primary-color:  #c98d83;
    --secondary : #783b31;
    --bg: #f2f1ec;
    --black: black;
    --white: white;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  *{
    font-family: 'Vidaloka', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
  }
  .login-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--secondary);
    color: white;
    text-align: center;
    font-size: 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px; */
/*     height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
/* @media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start; */
/*     }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
} */
/* :root{
    --primary-color:  #c98d83; */ */
/*     --secondary : #783b31;
    --bg: #f2f1ec;
    --black: #000;
    --white: white;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
  }
  
  *{
    font-family: 'Vidaloka', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
  } */
/*   .login-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--secondary);
    color: white;
    text-align: center;
    font-size: 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  
.login-btn:hover {
    background-color:var(--primary-color);
  }
  
  .login-btn:active {
    background-color: ;
  }
  
  
  
  html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
  }
  
  html::-webkit-scrollbar{
    width: .8rem;
  }
  
  html::-webkit-scrollbar-track{background: transparent;
  }
  
  html::-webkit-scrollbar-thumb{
    background: black;
    border-radius: 5rem;
  }
  
  section{
    padding: 2rem 7%;
  }
  
  .heading{
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 3rem;
    padding: 1.2rem 0;
    font-size: 4rem;
  }
  
  .heading span{
    color: var(--secondary);
    text-transform: uppercase; */
/*   }
  
  .btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    background: var(--primary-color);
    cursor: pointer;
  }
  
  .btn:hover{
    background: var(--secondary);
  }
   */
  /* header */
  
/*   .header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 8000;
    background: ;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
  }
  
  .header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
  }
  
  .header .logo i{
    color: var(--secondary);
    padding-right: .5rem; */
/*   }
  
  .header .navbar a{
    font-size: 1.7rem;
    color: var(--white);
    margin: 0 1rem;
  }
  
  .header .navbar a:hover{
    color: var(--primary-color);
  }
  
  .header .icons div{
    font-size: 2.5rem;
    margin-left: 1.7rem;
    color: var(--white);
    cursor: pointer;
  }
.header .icons div:hover{
    color: var(--primary-color);
  }
  
  #menu-btn{
    display: none; */
/*   }
  
  /* shopping cart */
  
/*   .cart-items-container{
    position: fixed;
    top: 0; right: -105%;
    width: 35rem;
    background: var(--white);
    display: flex;
    flex-flow: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
    z-index: 1200;
    padding: 2rem;
    text-align: center;
  } */
/*   
  .cart-items-container.active{
    right: 0;
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
  }
  
  .cart-items-container #close-form{
    position: absolute;
    top: 1.5rem;
    right: 2.5rem; */
/*     font-size: 4rem;
    cursor: pointer;
    color: var(--black);
  }
   */
/*   .cart-items-container #close-form:hover{
    transform: rotate(90deg);
    color: var(--primary-color);
  } */
/*   
  .cart-items-container .title{
    font-size: 2.5rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .2rem;
  } */ 
  
/*   .cart-items-container .cart-item{
    position: relative;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .cart-items-container .cart-item .fa-times{
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    color: var(--black);
    cursor: pointer;
  }
  
  .cart-items-container .cart-item .fa-times:hover{
    color: var(--primary-color);
  }
  
  .cart-items-container .cart-item img{
    height: 7rem;
  }
  
  .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
  }
  
  .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: left;
  }
   */
  /* end */
  
  /* home */
/*   
  @keyframes fadeIn{
    0%{
      transform: translateY(-4rem) scale(1.1);
      opacity: 0;
    }
  }
  
  .home{
    padding: 0;
  }
.home .slide{
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home .slide::before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: white;
    z-index: -1;
  }
  
  .home .slide .content{
    text-align: center;
    width: 70rem;
    display: none;
  }
  
  .home .slide .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    padding: 2rem 0;
    animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
  }
  
  .home .slide .content .btn{
    animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .4s backwards;
  }
  
  .home .swiper-slide-active .content{
    display: inline-block;
  }
  
  .swiper-button-next,
  .swiper-button-prev{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    margin-left: 1.5rem;
    background: var(--white);
    color: var(--black);
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover{
    background: var(--primary-color);
    color: var(--white);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after{
    font-size: 1.5rem;
  }
   */
  /* end */
  
  /* banner */
/*   
  .banner{
    background: url(../images/banner-bg.jpg);
    background-size: cover !important;
    background-position: center !important;
  }
  
  .banner img{
    margin-top: 3rem;
    height: 100%;
    width: 100%;
  } */
  
  /* banner end*/
  
/*
  
  .about .row .image img{
    width: 100%;
    height: 100%;
  }
  
  .about .row .content{
    flex: 1 1 40rem;
  }
  
  .about .row .content h3{
    color: var(--black);
    font-size: 3.5rem;
    line-height: 1.5;
  }
  
  .about .row .content h3 span{
    color: var(--secondary);
  }
  
  .about .row .content p{
    font-size: 1.4rem;
    color: #444;
    padding: 1rem 0;
    line-height: 2;
  } */
  
  /* about end*/
  
  /* product */
  
/*   .product{
    background: var(--bg);
  }
  
  .product .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
    gap: 2rem;
  }
  
  .product .box-container .box{
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .product .box-container .box .image{
    height: 35rem;
    width: 100%;
    padding: 1.1rem;
  }
  
  .product .box-container .box .image img{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
  }
  
  .product .box-container .box .content{
    padding: 2rem;
    padding-top: 0;
  }
  
  .product .box-container .box .content h3{
    color: var(--black);
    font-size: 2.5rem;
  }
  
  .product .box-container .box .content .stars{
    padding: 1rem 0;
  }
  
  .product .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--secondary);
  }
  
  .product .box-container .box .content .price{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--secondary);
    margin-right: 1rem;
  } */
  
  /* product end */
  
  /* gallery */
  
/*   .gallery .gallery-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .gallery .gallery-container .box{
    height: 40rem;
    position: relative;
    overflow: hidden;
  }
  
  .gallery .gallery-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .gallery .gallery-container .box:hover img{
    transform: scale(1.1);
  }
  
  .gallery .gallery-container .box .icons{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  
  .gallery .gallery-container .box .icons i{
    font-size: 6rem;
    color: var(--white);
  }
  
  .gallery .gallery-container .box:hover .icons{
    display: flex;
  }
  video {
      height:fit-content;
      width: 100%;
  } */
  
  
  /* gallery end*/
  
  
  /* weekly promotions */
  
/*   .promotion{
    background: url(../images/promotion.jpg) no-repeat;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .promotion .box-container{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 4rem;
  }
  
  .promotion .box-container .box{
    flex: 1 1 55rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .promotion .box-container .box .content{
    text-align: center;
  }
  
  .promotion .box-container .box .content h3{
    font-size: 3rem;
    color: var(--black);
  }
  
  .promotion .box-container .box .content p{
    font-size: 1.4rem;
    color: #444;
    padding: 1rem 0;
    line-height: 1.8;
  }
   */
  /* weekly promotions ends*/
  
  /* team */
  
/*   .team .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .team .box-container .box{
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
  }
  
  .team .box-container .box .image{
    height: 35rem;
    width: 100%;
    padding: 1.1rem;
    overflow: hidden;
    position: relative;
  }
 
  .team .box-container .box .image img{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
  }
  
  .team .box-container .box:hover .image img{
    transform: scale(1.1);
  }
  
  .team .box-container .box .content{
    padding: 2rem;
    padding-top: 0;
  } */
  
/*   .team .box-container .box .content h3{
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 1rem; */
/*   }
  
  .team .box-container .box .content p{
    color: var(--black);
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  
  .team .box-container .box .content .share i{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    background: none;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--primary-color);
    border: .1rem solid var(--primary-color);
    margin: .5rem;
  }
  
  .team .box-container .box .content .share i:hover{
    color: var(--white);
    border: .1rem solid var(--secondary);
    background: var(--secondary);
    box-shadow: var(--box-shadow);
    transition: .4s linear;
    cursor: pointer;
  }
   */
  
  /* team */
  
  /* parallax */
  
/*   .parallax{
    background: url(../images/parallax.jpg) no-repeat;
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0;
    position: relative;
  }
  
  .parallax::before{
    content: '';
    position: absolute;
    top: 0; left: 0; 
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  
  .parallax .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .parallax .box-container .box{
    text-align: center;
    justify-content: center;
  }
  
  .parallax .box-container .box .image{
    padding-top: 5rem;
  }
  
  .parallax .box-container .box .image img{
    height: 35%;
    width: 35%;
    object-fit: cover;
  }
  
  .parallax .box-container .box .content{
    padding: 2rem;
  }
  
  .parallax .box-container .box .content h3{
    color: var(--white);
    font-size: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  
  .parallax .box-container .box .content p{
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.8;
  } */
  
  /* parallax end */
  
  /* review */
  
/*   .review{
    background: var(--bg);
  }
  
  .review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }
  
  .review .box-container .box{
    border: .1rem solid rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
  }
  
  .review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .review .box-container .box .stars i{
    font-size: 1.5rem;
    color: var(--secondary);
  }
  
  .review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
    padding-top: 1rem;
  } */
  
  /* review end */
  
  /* order */
  
/*   .order .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .order .row .image{
    flex: 1 1 30rem;
  }
  
  .order .row .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .order .row form{
    flex: 1 1 50rem;
    padding: 5rem;
  }
  
  .order .row form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .order .row form .inputBox input,
  .order .row form textarea{
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: var(--secondary);
    text-transform: capitalize;
    background: var(--bg);
    border-radius: .5rem;
    width: 49%;
  }
  
  .order .row form .inputBox input:focus,
  .order .row form textarea:focus{
    border: .1rem solid var(--primary-color);
  }
  
  .order .row form textarea{
    width: 100%;
    resize: none;
    height: 15rem;
  } */
  
  /* order */
  
  /* footer */
  
/*   .footer{
    background: var(--bg);
    text-align: center;
  }
  
  .footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
  
  .footer .box-container .box h3{
    text-transform: capitalize;
    font-size: 2.2rem;
    color: var(--secondary);
    padding: 1rem 0;
  }
  
  .footer .box-container .box p{
    font-size: 1.5rem;
    line-height: 2;
    color: #444;
    padding: .5rem 0;
  }
  
  .footer .box-container .box .share{
    margin-top: 1rem;
  }
  
  .footer .box-container .box .share a{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 10%;
    font-size: 1.7rem;
    background: var(--primary-color);
    color: var(--white);
    margin-right: .3rem;
  }
  
  .footer .box-container .box .share a:hover{
    background: var(--secondary);
  }
  
  .footer .box-container .box .link{
    font-size: 1.7rem;
    line-height: 2;
    color: var(--primary-color);
    padding: .5rem 0;
    display: block;
  }
  
  .footer .box-container .box .link:hover{
    color: var(--secondary);
    text-decoration: underline;
  }
  
  .footer .credit{
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--primary-color);
    border-top: .1rem solid var(--secondary);
  }
  
  .footer .credit span{
    color: var(--secondary);
  } */
  /* footer */
  
/*   @media (max-width: 991px){
  
    html{
      font-size: 55%;
    }
  
    .header{
      padding: 2rem;
    }
  
    section{
      padding: 2rem;
    }
  
  }
  
  @media (max-width: 768px){
    #menu-btn{
      display: inline-block;
    }
  
    .fa-times{
      transform: rotate(180deg);
    }
  
    .header .navbar{
      position: absolute;
      top: 99%;
      left: 0; right: 0;
      background: var(--white);
      border-top: .1rem solid var(--secondary);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
  
    .header .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  
    .header .navbar a{
      display: block;
      margin: 2rem;
    }
  
    .home .slide .content{
      width: 40rem;
    }
  
    .home .slide .content h3{
      font-size: 4rem;
    }
  
  }
  
  @media (max-width: 450px){
  
    html{
      font-size: 50%;
    }
  
    .home .slide .content h3{
      font-size: 3rem;
    }
  } */
   















