/* HOMEPAGE AND BASIC STYLING */
html
{
	scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}
body
{
	/* font-family: 'Dancing Script', cursive; */
  /*background-image: url("../img/bgvector.jpg"); 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen; */
  background-color : #ebe688;
  font-family: 'Kaushan Script', cursive;
}
.active{
  text-decoration: underline;
}
.bg-img {
    position: relative;
  	width: 100%;
    height: 100vh;
    background: #1C1D21;
    overflow: hidden;
		z-index: 3;
}
.bg-img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bgImg.jpg") no-repeat;
    background-size: cover;
    opacity: .3;
    animation: anim 25s linear infinite;
}
@keyframes anim {
    50%
    {
        transform: scale(2);
    }
    100%
    {
        transform: scale(1);
    }
}
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 4;
    width: 100%;
    box-sizing: border-box;
}
/*scroll down*/
/*end scroll down*/

/* NAVBAR */
nav{
    position: fixed;
    width: 100%;
    z-index: 999;
}
.logo_nav{
  width: 100px;
}
nav ul{
    list-style: none;
    background-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: #fff;
    padding: 0;
    text-align: center;
    margin: 0;
    transition: 1s;
}

nav.black ul{
    background-color: rgba(0, 0, 0, 0.8);
}
nav ul li{
    display: inline-block;
    padding: 20px;
}

.lst > a{
    text-decoration: none;
    color: #eeeeee;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Kaushan Script', cursive;

}
.lst > a:hover{
  text-decoration: none;
  color: #eeeeee;
  border-bottom: 2px solid #9a7944;
  font-weight: bold;
}

.modalCustom
{
  font-family: 'Raleway', sans-serif;
}

.menu-icon{
    width: 100%;
    background-color: #000;
    text-align: right;
    box-sizing: border-box;
    padding: 15px 24px;
    cursor: pointer;
    color: #fff;
    display: none;
}

.scroll>a {
  position: absolute;
  left: 50%;
  bottom: 90px;
  display: block;
  text-align: center;
  font-size: 30px;
  z-index: 200;
  text-decoration: none;
  text-shadow: 0;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  z-index: 9;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 4s ease-in-out infinite;
  -moz-animation:    fade_move_down 4s ease-in-out infinite;
  animation:         fade_move_down 4s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@-moz-keyframes fade_move_down {
  0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@keyframes fade_move_down {
  0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
}

@media(max-width: 580px){
    nav ul{
        max-height: 0px;
        background-color: rgba(0, 0, 0, 0.8);
    }
    nav.black ul{
        background-color: rgba(0, 0, 0, 0.8);
    }
    .showing{
        max-height: 30em;
    }
    .lst{
        box-sizing: border-box;
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }
    .lst>a{
      font-size: 20px;
    }
    .menu-icon{
        display: block;
    }
}

/* NAVBAR ENDS */

.logo
{
	max-height: 175px;
}
.text-title
{
	font-family: 'Noto Serif', serif;
	color:#F9F871;
	font-weight: lighter;
}


/*category*/
.categoryBox
{
  background-color: black;
  position: relative;
  height:20rem;
  outline: 5px solid white;
  outline-offset: -40px;
  transition: all ease-in-out 300ms;
}
.categoryBox:hover
{
  outline: 5px solid white;
  outline-offset: -20px;
  transform: scale(1.02);
}
.categoryImg
{
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: .3;
}
.categoryText
{
  color: white;
  position: absolute;
  top: 25% ;
  left: 20%;
  font-size: 2rem;
  /* text-shadow: .1px .7px grey; */
  /* mix-blend-mode: screen; */
}

.categoryText::first-letter
{
  font-size:3rem;
  font-weight: bold;
  color: red;
}
.text-featured::first-letter{
  font-size: 3rem;
  font-weight: bold;
  color: red;
}

/*end category*/
/*parallax*/
.parallax-bg {
  background-image: url("./img/background1.jpg");
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen;
}
/*end of parallax*/
/*test featured Products*/

.text-featured
{
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color:white;
  z-index: 100;
}


.text-featured::first-letter{
  font-size: 3rem;
  font-weight: bold;
  color: red;
}
.text-featured > h1{
  font-family: 'Kaushan Script', cursive;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-width: 250px;
  /* margin: .3rem; */
  text-align: center;
  font-family: arial;
  position: relative;
}
.featuredImage
{
  height: 20rem;
  opacity: 1;
  transition: .5s ease;
  backface-visibility: hidden;
  object-fit: cover;
}
.featuredText
{
  font-size: 1.5rem;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.card:hover .featuredImage {
  opacity: 0.3;
}

.card:hover .featuredText {
  opacity: 1;
}
.card button {
  position: absolute;
  bottom: 0;
  left: 0;
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
  opacity: 0.7;
}

/*end test featured*/
/*recipes*/
.recipeBox
{
  /* background-color: black; */
  position: relative;
  height:20rem;
}
.recipeImg
{
  height: 100%;
  width: 100%;
  object-fit: cover;
  outline: 5px solid white;
  outline-offset: -40px;
  transition: all ease-in-out 300ms;
}
.recipeText
{
  background-color: black;
  color: white;
  width: 100%;
  height: 30%;
  position: absolute;
  bottom:0 ;
  left: 0;
  opacity:0;
  transition: 500ms ease;
  cursor: pointer;
  text-align: center;
  font-size: 2rem;
  padding: .5rem;
}

.recipeImg:hover
{
  transform: scale(1.01);
}
.recipeBox:hover .recipeText {
  opacity:.7;
}
/*end recipes*/
/*end*/
#footer
{
    position: relative;
}

.footer-copyright p {
	font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
   }

 .back-to-top {
  position: fixed;
  display: none;
  background: #C00;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 20px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 1;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

.back-to-top:hover
{
	  opacity: 0.8;
}
.footer_logo{
  width: 110px;
  height: auto;
}
@media screen and (max-width: 768px)
 {
   .logo
   {
     height: 100px;
   }
   .text-title
   {
     font-size: 1.5rem;
   }
  .back-to-top
   {
    bottom: 15px;
  }
  .categoryBox
  {
    height: 10rem;
  }
  .categoryText
  {
    font-size: 2rem;
  }
}

@media screen and (max-width: 560px)
{
  .footer_logo{
    width: 80px;
  }

  .categoryText
  {
    font-size: 1.5rem;
  }
}

/* HOMEPAGE ENDS */





/* ABOUT US */
.bg_image
{
  /*background: url(../img/bgvector.jpg) repeat;
  background-position: center;
  background-attachment: fixed; */
  background-color : #ebe688;
} 
.section-title {
  font-size: 55px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.section-description {
  font-family: 'Neucha', cursive;
  text-align: center;
  margin-bottom: 40px;
  font-weight: lighter;
  font-size: 20px;
}
.test{
  object-fit: cover;
  width: 100%;
  height: 27rem;
}
.about-header
{
 color: white;
 position: relative;
}
.about-top{
  position: absolute;
  top:25%;
  left:12%;
  background-color: black;
  opacity: .7;
}
#about {
  margin-top: 0px;
  background-color: black;
}

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  margin-top: 80px; 
  max-width: 100%;
  outline: 5px solid #111;
  outline-offset: -10px;
}
#about .about-content {
  background: transparent;
  padding: 25px 5px 30px;
}

#about .about-titles{
  margin: 0 20px 0 30px ;
  border-bottom: 1px solid black;
  color: #111;
  font-weight: 700;
  font-size: 35px;
  font-family: 'Neucha', cursive;
}

#about .about-text {
  color: #222;
  padding: 3px 10px 10px 25px;
  line-height: 22px;
  margin-bottom: 15px;
  font-family: 'Neucha', cursive;
  font-size: 18px;
}


#about .about-text:last-child {
  margin-bottom: 0;
}


@media (max-width: 768px) {
.about-top{
  top:15%;
  left:0;
}
.section-title{
  font-size: 33px;
}
.section-description{
  font-size: 18px;
}
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 10px;
  }
  #about .about-titles
  {
    margin:  0 20px 0 30px ;
  }
}



/* ABOUT US ENDS */




/* PRODUCTS */
.prod_sec{
  width: 100%;
  margin: 0px 0px;
  padding: 20px 0px;
}

.banner_prod{
  width: 100%;
  height: 200px;
  margin-top: 70px;
  z-index: -1;
}

.banner_prod > h2{
  font-size: 40px;
  color: #fff;
  text-align: center;
  position: absolute;
  margin: 0 auto;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.banner_prod > img{
  width: 100%;
  height: 350px;
  overflow: hidden;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}
.main{
  margin-top: -4rem;
  position: relative;
  margin-left: 0px;
  margin-right: 0px;
  z-index: 1;
  
  background-color:transparent;
}
.category_prod{
  width: 100%;
  padding-top: 65px;
  font-size: 20px;
  background-color: #345;
}

.category_prod > table{
  background-color: #345;
  text-align: center;
}

.items_tab>a{
  text-decoration: none;
  color: #fff;
}
.items_tab>a:hover{
  border-bottom: 2px solid #fff;
}

.prod_display{
  width: 100%;
  padding: 10px 10px;
  background-color: transparent;
}
.spice>div{
  display: inline-flex;
  float: left;
}
.card-img-body{
  background-color: #567;
}
.card-img-body>h3{
  font-size: 20px;
  color: #fff;
}
.card:hover .img{
  opacity: 0.3;
}
.card:hover .middle{
  opacity: 1;
}
.middle{
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.prod-test
{
  clip-path: polygon(48% 80%, 100% 56%, 100% 0, 0 0, 0 56%);
  /* margin-bottom: -10%; */
}

/* PRODUCTS ENDS */




/* CONTACT US */

.cont-test
{
  clip-path: polygon(48% 80%, 100% 56%, 100% 0, 0 0, 0 56%);
  margin-bottom: -10%;
}

.contact_div{
    font-family: 'Roboto', sans-serif;
    margin-top: 40px;
}
.contact-map-physical {
    margin-top: 2em;
}  
.address-mdl {
    border-left: 1px solid black;
    border-right: 1px solid black;
}
/*.address h5 {
    font-size: 1.2em;
    font-weight: 600;
    color: #000;
}*/

.address p { 
    margin-top: 1em;
    font-size: 14.5px;
    letter-spacing: .5px;
}

h2.heading {
    padding: 10px 30px 10px 30px;
    border-top:2px solid white;
    border-bottom:2px solid white;
    font-size: 40px;
    color: white;
    top:30%;
    left:40%;
    text-transform: capitalize;
    font-weight: 600;
    position: absolute;
    font-family: 'Kaushan Script', cursive;
}
h2.heading span {
    font-weight: 300;
}
p.heading {
    padding-left: 118px;
    margin-bottom: 50px;
    font-size:14px;
    font-weight: 600;
    color:#000;
    text-transform:capitalize;
}


.contact-map-physical input[type="text"],.contact-map-physical input[type="email"] {
    width: 100%;
    color: #999;
    background: none;
    outline: none;
    font-size: .9em;
    padding: .7em .8em;
    border: solid 1px #ccc;
    -webkit-appearance: none;
    display: inline-block;
} 
input.email {
    margin: 1em 0;
}
.contact-map-physical textarea {
    resize: none;
    width: 100%;
    background: none;
    color: #999;
    font-size: .9em;
    outline: none;
    padding: .7em .8em;
    border: solid 1px #ccc;
    min-height: 10em;
    -webkit-appearance: none;
    margin-top: 1em;
}
.contact-map-physical input[type="submit"] {
    border: none;
    margin: 1em 1em 0 0;
    font-size: 14px;
    color: #fff;
    background: #F44336;
    padding: 10px 30px;
    text-transform: capitalize;
    letter-spacing: 2px;
    -webkit-appearance: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
}
.contact-map-physical input[type="submit"]:hover {
    background: #ccc;
    color: #000;
}

.contact {
    padding: 5em 0;
}

/* CONTACT US ENDS */


/* Responsive Design */

@media(max-width:1280px){
    
    h2.heading {
        font-size: 38px;
    }
    
    h2.heading:before {
        bottom: -10px;
    }
}
@media(max-width:1080px){
 
    p.heading {
        margin-bottom: 40px;
    }
    
    h2.heading {
        font-size: 36px;
    }
    
    .contact-map-physical {
        margin-top: 0em;
    }
}

@media(max-width:800px){
         .address-mdl {
    border:none;
}
    h2.heading {
        font-size: 32px;
        left: 30%;
    }
    h2.heading:after {
        top: 48px;
    }
    p.heading {
        margin-bottom: 25px;
    }
    
}


@media(max-width:568px){

    .contact{
        padding: 3em 0;
    }
    .text-featured{
      top: 2%;
    }

    .text-featured>h1{
      font-size: 25px;
    }
    #about .about-img img {
      margin-top: 10px;
    }
    
}

@media(max-width:414px){
    
    h2.heading {
        font-size: 30px;
        left:20%;
    }
    .categoryText{
      font-size: 1rem;
    }
    .parallax-bg {
    height: 100%;
}

    
}

@media(max-width:320px){
    h2.heading {
        font-size: 28px;
    }
    h2.heading:after {
        top: 44px;
    }
    
}

/* //Responsive Design */