*{
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

.z-cards{
    margin: 100px 100px;
}

.z-card-img{
    height:280px;
    object-fit: cover;
    filter: brightness(70%);
}


.z-card-effect:hover{
    transition: transform .2s;
    transform: scale(1.05);
    cursor: pointer;
}

.z-card-img:hover{
    filter: brightness(100%);
}

@media screen and (max-width: 1300px) {
    .z-cards{
        margin: 10px;
    }
    
    .z-card-img{
        height:280px;
        object-fit: cover;
        filter: brightness(100%);
    }

    .z-card-effect:hover{
        transition: transform .2s;
        transform: scale(1.05);
        cursor: pointer;
    }

}

/*------------------ whatsapp-btn css code---------------------------- */

@import url("https://fonts.googleapis.com/css?family=Roboto");
/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 8;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}
@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: .3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: .3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4.0s ease 4;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  bottom: 85px;
  right: 6px;
  transition: .5s;
  border-radius: 10px;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight .6s 0.0s both;
}
.popup-whatsapp > div {
  margin: 5px;
}
@media (max-width: 680px) {
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}
.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: column;
}
.popup-whatsapp > .content-whatsapp.-top p {
  color: #585858;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 1.0em;
}
.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}
.closePopup:hover {
  background-color: #f71d1d;
  transition: .3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}
.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: .3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight .6s 0.0s both;
}

input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: .3s;
}
@media (max-width: 420px) {
  input.whats-input[type=text] {
    width: 225px;
  }
}
input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}
input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: .3s;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #333333;
}

  /*------------------ whatsapp-btn css code---------------------------- */




/* social css start*/
.Social-icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .Social-icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 10px;
  }
  
  .Social-icon-bar a:hover {
    background-color: #cf2317;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .instagram {
    background: red;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #bb0000;
    color: white;
  }
  
  @media (max-width:960px)
  {
      .Social-icon-bar{
          left: 0%;
      }
  }
/* social css end*/








/*above nav start*/
.z-container {
    position: relative;
}
.z-navigation-app{
    background-color: white;
    position: absolute;
    top: 1px;
    cursor: pointer;
    max-width: 35rem;
    color: white;
    font-size: 1rem;
    margin-left: 0px;
    line-height: 1.5;
}
.z-img-style{
    height: 470px;
    background-attachment: fixed;
    width: 100%;
    background-position: center;
    z-index: -2;
    object-fit: cover;
    filter: brightness(50%);
}

.z-nav-bar{
    position: absolute;
    top: 15px;
    /* right: 500px; */
    left: 23%;
    /* transform: translate(50%, -10%); */
    font-size: 18px;
    color: white;
    overflow: hidden;
    
}


.z-nav-bar-ul li{
    list-style-type: none;
    float: left;
    margin-left: 50px;
    line-height: 1.5;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    padding:10px;
}

.z-nav-bar-li{
    font-family:Arial;
    font-size: large;
   
}

.z-nav-bar-li:hover{
    background-color: #060606;
}


.z-text-center {
    position: absolute;
    top: 55%;
    width: 100%;
    text-align: center;
    color: white;
    
}

.z-text-center-heading{
    font-family:monospace;
    font-weight: 600;
    font-size: 300%;
    font-style: italic;
    letter-spacing: -4.5px;
}



.z-text-center-p{
    font-weight: 400;
    font-size: 300%;
}



.border-0:focus{
    outline: none;
}

.z-zomato-responsive{
    display: none;
}

@media screen and (max-width: 1050px) {
    .z-nav-bar-ul , .z-navigation-app {
        display: none;
    }
    .z-zomato-responsive{
        display: inline;
        position: absolute;
        top: 2px;
        right: 20px;
        font-size: 40px;
    }
    .offcanvas-title{
        position:absolute;
        right:4px;
        top:8px;
    }

    .offcanvas-body{
        margin-top: 5px;
    }

    .z-navigation-app{
      display: block;
    }

}

@media screen and (max-width: 700px) {
  .z-text-center-heading{
    font-family:monospace;
    font-weight: 300;
    font-size: 200%;
    font-style: italic;
    letter-spacing: -4.5px;
}


}


@media screen and (max-width: 1300px) {
    .z-search-tab,.z-text-location{
        display: block;
        text-align: center;
    }

}

/*abov nav end*/







