#wrapper{
  font-family: cursive;
}
.container{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
#subheader{
  width: 100%;
  height: 50px;
  background: #0a930a;
  margin-top: -14px;
}
#subheader p{
  float: left;
  margin-top:7px;
}
#subheader a{
  float: right;
  line-height: 30px;
  color: white;
  margin-left: 50px;

}
a{
  text-decoration: none;
  margin-left: 7px;

}
#subheader a:hover{
  font-size: 20px;
  color:#ffa232;
  transition: all .7s ;
  transition-timing-function: ease-in-out;
}
/*Logo styling*/
#main-header{
  width: 100%;
  height: 100px;
  background: #1aaa1a;
  float: left;
  margin-top: -13px;
}
#logo{
  width: 250px;
  float: left;
  margin-top: 10px;
  margin-left: 15px;
}
#first{
  color: black;
  margin-left: 15px;
  font-weight: bold;
  font-family:cursive;
  font-size: 45px;
}
#second {
    font-size: 25px;
    font-family: cursive;
    font-weight: bold;
}
/*Styling for search area*/
#search{
 float: left;
 padding: 30px;
  width: 700px;
  height: 50px;
  border: none;
  border-radius:20px;
  margin-left: 77px;

}
.place{

  width: 500px;
  height: 25px;
  border: none;
  border-radius:10px;
  padding-left:10px;
  background-color:whitesmoke;

}
.sub-btn{
margin-left: -16px;
  background: brown;
  color: white;
  height: 28px;
  border: none;
  border-radius: 10px;
}
/*Cart and login button styling*/


#cart-log a:hover{
  color:#ff12ab;
  font-size: 20px;
}
#cart-log{
font-family: sens-serif;

  margin-top: 37px;
  font-size: 15px;
}
#cart-log a {
    text-decoration: none;
    color: #fff;
    padding-left: 25px;
    margin-left: 20px;
    border-left: 2px solid black;
}
/*Styling The navigation bar*/

#nabbar{
  font-family: cursive;
  width: 100%;
  height: 35px;
  background: #1aaa1a;
  float: left;
  box-shadow::10px 14px 50px 2px red;
}
nav{
 margin: 0 auto;
  width: 1280px;

}
nav a{
  color: white;
  margin-left: 45px;
}
nav a:hover{
  color: black;
  transition: all 1s ease;
}
/*Styling on image-slide*/

#slider{
  width: 100%;
  max-width: 100%;
  float: left;
  overflow: hidden;
  height: 500px;


}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto{
  bottom: 30px;
}

/*Working on manual sliding if u want to work with*/
/*.slides{
  width: 100%;
  height: 450px;
}*/

/*#slider{
  width: 100%;
  height: 450px;
  overflow: hidden;
}
#slider .slides{
  display: block;
  width: 100%;
  height: 450px;
  padding: 0;
  margin:0;
}
#slider .slide{

  float: left;
  list-style-type: none;
  height: 450px;
  width: 100%;
}*/
/*Ending of image sliding manual process*/

/*Styling of design heading-block*/
#head-block{
  width: 100%;
  height: auto;
  color: #1aaa1a;
  font-size: 22px;
  float: left;
}
#head-block h2{

    line-height: 35px;
    border-left: 20px solid #1aaa1a;
    padding: 10px;
}

/*Styling Catbox*/
.catbox{
  float: left;
  overflow: hidden;
  width: 246px;
  position: relative;
  height: 250px;

}
.catbox span{
  position: absolute;
  bottom: 30px;
  display: block;
  width: 100%;
  z-index: 1;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  height: 35px;
  line-height: 35px;
  color: white;
}

.catbox img{
  max-width: 100%;
  transition: all 0.5s ease;
}
.catbox:hover img{
  transform: scale(1.3,1.3);
  transition: all 0.5s ease;
}
.catbox:hover span{
  color: #1aaa1a;
}
/*styling product*/

.prod-box{
  width: 246px;
  height: 250px;
  margin: 0 20 30 0;
  overflow: hidden;
  position: relative;
  float: left;
}

.prod-box img{
  max-width: 100%;
}

.pro-trans{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
}

.prod-box:hover .pro-trans{
  opacity: 1;
  transition: all 0.5s ease;
}
.pro-feature{
  font-family: verdana;
  text-align: center;
  margin-top: -150px;
  transition: all 0.5s ease;
}
.prod-box:hover .pro-feature{
  margin-top: 150px;
  transition: all 0.5s ease;
}

/*styling offer*/

.offer{
  float: left;

  margin-left:40px;

  margin-right:10px;
  overflow: hidden;
  position: relative;

}


.offer:last-child{
  margin-right: 0px;
}
/*Styling the particular offer*/
.offer img{
  max-width: 100%;
}
.offer-trans{
  position: absolute;
  /*top: 0;
  left: 0;
  bottom: 0;
  right: 0;*/
  background-color: rgba(0, 0, 0, 0.6);
  /*width: 100%;
  height: 100%;*/
  opacity: 0;
  transition: all 0.5s ease;
}
.offer:hover .offer-trans{
  opacity: 1;
  transition: all 0.5s ease;
}
.offer-feature{
  font-family: verdana;
  text-align: center;
  margin-top: -4550px;
  transition: all 0.5s ease;
}
.offer:hover .offer-feature{
  margin-top: 350px;
  transition: all 0.5s ease;
}
/*Styling the button*/
.pro-feature .btn:hover{
  font-style: italic;
  font-weight: bold;
  background-color: green;
}

/*Design for Footer*/
#footer{
  width: 100%;
  height: 300px;
  float: left;
  background: #fefefe;

}
.footer_sub1{
  width: 35%;
  float: left;
}
.footer_sub2{
  width: 20%;
  float: left;
}
.font-class {
    font-size: 30px;
    margin-left: 25px;
    color: cornflowerblue;
}
.font-class a:hover{
  max-width: 100%;
  font-size: 50px;
  color: #1aaa1a;
}
.footer_sub3{
  width: 30%;
  float: left;
}
.sub3 .sub_btn {
    width: 412px;
    background: whitesmoke;
    float: left;
    border: none;
    height: 50px;
    border-radius: 20px;
    padding-left: 23px;
}
.sub3 #butn {
    font-size: 15px;
    float: left;
    border: none;
    margin-top: -52px;
    margin-left: 435px;
    width: 92px;
    height: 49px;
    background: antiquewhite;
    font-style: italic;
    font-weight: bold;
    border-radius: 20px;
}
#butn:hover{
  color:#1aaa1a;
}

.sub3 p {
    color: #999;
    width: 420px;
    padding-left: 23px;
    padding-top: 58px;
}
