@import url('https://fonts.googleapis.com/css2?family=Glory:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Philosopher', sans-serif;
}
body{
    background-color: #f1f1f1;
}
.home_background{
    filter: brightness(1);
    clip-path: circle(75.9% at 42% -27%);
}
.details_header{
    font-family: 'Glory', sans-serif;
    background-color: #007e35;
    color: white;
}
.details_header h5{
    letter-spacing: 1px;
    font-size: 16px;
    word-spacing: 2px;
}
.details_header i{
    font-size: 20px;
    margin-left: 4%;
}
.details_header>.row{
    align-items: baseline;
}
/* main nav */
.navbar-brand{
    width: 15%;
}
.navbar{
    border-top: 1px dotted lightgray;
    background-color: #007e35;
    backdrop-filter: blur(4px);
    padding:0%;
}
.navbar-nav li a{
    color: #fff;
    font-weight: 700;
    transition: ease-out .5s;
}
.navbar-nav li:hover{
    transform: translate(0px, -5px);
    stroke: #fff;
    color: #f1f1f1;
    font-weight: 700;
    transition: ease-out .5s;
}
/* footer */
footer{
    bottom: 0;
    width: 100%;
}
.footer_part_1{
    color: #fff;
    background-color: #007e35;
}
.footer_part_2{
    color: #fff;
    background-color: #007e35;
}
/* special product box */
.special_product_box{
    border: 1px solid lightgray;
    border-radius: 18px;
}

/* image gallery */
.image_gallery1{
    height: 70vh;
    background: url(/static/images/Premium.jpg) center;
    background-repeat: no-repeat;
    transition: ease-in 1s;
    background-size:contain;
}
.image_gallery1:hover{
    height: 70vh;
    transition: ease-out 1s;
    background: url(/static/images/Kesar-Dhoop-Sticks.jpg) center;
    background-repeat: no-repeat;
    background-size:contain;
}
.image_gallery2{
    height: 70vh;
    background: url(/static/images/Premium-Dhoop-Sticks.jpg) center;
    background-repeat: no-repeat;
    transition: ease-in 1s;
    background-size:contain;
}
.image_gallery2:hover{
    height: 70vh;
    transition: ease-in 1s;
    background: url(/static/images/Roll-Packets.jpg) center;
    background-repeat: no-repeat;
    background-size:contain;
}

/* about */
.about_image{
    border: 2px solid lightgray;
    box-shadow: -3px -4px 16px lightgrey;
}

.home_background img{
	width:100%;
}
/* for all button */
.btn {
    background: #00b94e;
    color: white;
    font-size: 13px;
    padding: 3% 10%;
    text-transform: uppercase;
    font-weight: 600;
    font-family: sans-serif;
  }
  .btn:hover {
    background:white;
    color:#01923ea4;
  }

  /* product_page_link_text */
  .product_page_link_text{
      font-size: 18px;
      font-weight: 600;
      color: #000000;
  }
  .product_page_link_text:hover{
    color: #007e35;
}
.product_box{
    overflow: hidden;
    box-shadow: 1px 1px 5px lightgray;
    border-radius: 12px;
}
.special_product_box{
    overflow: hidden;
    box-shadow: 1px 1px 5px lightgray;
    border-radius: 12px;
}
.category_image{
    transform: scaleY(1);
    transition: ease-out 1s;
}
.category_image:hover{
    transition: ease-in 1s;
    transform:scale(1.1) ;
    filter: brightness(.5);
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 26px;
    border: none;
    outline: none;
    background: #007e35;
    color: white;
    cursor: pointer;
    padding: 2px 11px;
  }
  
  #myBtn:hover {
    background: #27c76a;
  }
