*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}
li{
    list-style: none;
}

body{
    font-family: 'Roboto';
    
}

.navbar {
    position: sticky;
    top: 0;
    opacity: 0.9;
    z-index: 99999;
    background-color: whitesmoke;
}


/* Header */

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.header-h1 {
    font-family: 'Robot',sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1;
    font-size: 6rem;
}
span{
    color: #956459;
}
.header-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-p {
    font-family: 'Roboto',sans-serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.875rem;
    margin-top: 30px;
}
.btn {
    background-image: none;
    padding: 12px 42px 13px;
    color: #ffffff !important;
    background-color: #956459 !important;
    border: 1px solid transparent;
}
.btn:hover{
    background-color: #000000 !important;
    border-color: #ffffff;
    color: #ffffff !important;
}


/* HEader End */


/* About */

.about {
    background-color: black;
    padding: 70px 0;
    
}
.about-pic {
    width: 300px;
    
}
.about-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.about-h2 {
    font-family: 'Roboto',sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    font-size: 2.25rem;
    color: #ffffff;
}
.about-p {
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* About Us  End*/



/* Best */
.best{
    margin: 100px 0;
}

.new-product-h2 {
    font-family: 'Roboto',sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    font-size: 2.25rem;
    margin-bottom: 50px;
}
.new-product-p {
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.125rem;
    width: 280px;
    text-align: center;
}

.new-products__pic {
    width: 300px;
    margin-bottom: 10px;
}

.new-product__block{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}

.new-product__item{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    height: 464px;
}
/* best End*/


/* Product */

.product {
    /* background-color: #000; */
    background: #000000;
    background: -webkit-linear-gradient(to top, #434343, #000000);
    background: linear-gradient(to top, #956459be, #000000);
    padding: 50px 50px;
}
.product-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

/* Product End */

/* Shop */

.shop {
    margin-top: 50px 0 100px 0;
    padding: 50px 0;
}
.shop-h2{
    color: #000;
    margin-bottom: 50px;
}
.shop-block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.shop-item {
    width: 320px;
    height: 400px;
    transition: 0.5s;
    padding: 20px 0 ;
    margin: 20px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
.shop-item:hover{
    /* background-color: #956459; */
    background: #B79891;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #94716B, #B79891);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #94716B, #B79891); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    transition: 0.5s;
    border-radius: 20px;
}
.shop-pic {
    width: 300px;
    margin: 10px 0;
}
.shop-pic__v2{
    width: 270px;
}

.shop-a{
    color: #000;
    text-transform: uppercase;
}
.shop-a:hover{
    color: #ffffff;
}
.shop-a__v2{
    font-size: 15px;
}
/* Shop End*/

/* Contact */
.contact{
    background: #000000;
    background: -webkit-linear-gradient(to top, #434343, #000000);
    background: linear-gradient(to top, #956459be, #000000);
    padding: 100px 0;
}

.contact-block {
    display: flex;
    justify-content: space-between;
}
.contact-theme {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: bold;
    font-size: 35px;
    line-height: 54px;
    color: rgb(228, 168, 19);
    padding-top: 60px;
    max-width: 456px;
}
.contact form {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}  
.contact input, textarea{
    outline: none;
    background: none;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #fff;
    
    height: 70px;
    margin-bottom: 20px;
    color: #fff;
}

::placeholder{
  color: whitesmoke;
}

textarea {
    height: 65px;
}
.contact-p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
    padding: 0;
    margin: 0;
    width: 263px;
    height: 45px;
}



.contact-a{
    border-style: solid;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: auto;
    letter-spacing: normal;
    text-align: center;
    padding: 10px 30px;
    border-radius: 0;
    border-color: #fff;
    color: #fff;
}

.contact-a:hover{
  color: #fff;
}

.prod-h5{
    font-size: 60px;
    padding-bottom: 100px;
}

.contact-info {
    margin-top: 25px;
  }
  .contact-h6, .logo {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }
  .contact-p {
    font-size: 1.125rem;
    color: #fff;
  }
  
  .contact-info a{
    color: #fff;
  }
  
  .logo-v2:hover{
      color: #fff;
  }
/* Contact End */