@import url("https://fonts.googleapis.com/css2?family=Poltawski+Nowy:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

html,
body {
  scroll-behavior: smooth;
}
body {
  color: #716c80;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

a:hover {
  text-decoration: none;
}

/* header */
header{
  box-shadow: 0 3px 3px rgb(0 0 0 / 10%); 
}
header .header-top {
  background: #0f1b28;
  padding: 10px 0;
}

header .header-top .ht-left ul li .fa {
  margin-right: 7px;
  display: inline-block;
}

header .header-top .ht-right .scocial-media {
  margin-bottom: 0;
  text-align: right;
}

header .header-top .ht-right .scocial-media a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-bottom: 0;
  color: white;
  display: inline-block;
}

header .header-top .ht-left ul li {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding-right: 15px;
}

.navbar-brand {
  display: flex;
}
.navbar-brand img {
  margin-right: 10px;
}
.navbar-brand span {
  color: #716c80 !important;
}
.navbar-brand h2 {
  margin: 0;
  color: black;
  font-family: "Poltawski Nowy", serif;
}

.header-area {
  background-color: white;
}
.header-area p {
  font-size: 36px;
  color: #666;
  font-weight: bolder;
}

.header-area .nav-link {
  transition: 0.7s;
  color: #716c80 !important;
}

.header-area .active {
  color: #ffb11f !important;
}

.header-area .nav-item:hover .nav-link {
  color: #ffb11f !important;
}

.header-area .nav-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.header-area .nav-item:last-child {
  margin: 0;
}

.header-area .nav-item .btn {
  padding: 10px 20px;
  color: white !important;
  background: #ffb11f;
  margin: 0;
}
.header-area .nav-item .btn:hover {
  color: white !important;
}
/* end of header */

/*section 1*/
.sec1 {
  background-image: url(../images/bg-1.jpg);
  padding: 250px 0 150px;
  /*background-position: top;*/
  background-position: center;
  background-size: cover;
}
.caption h5 {
  color: #181818;
  text-transform: capitalize;
}
.caption {
  width: 55%;
}
.caption h2 {
  font-family: "Poltawski Nowy", serif;
  color: #181818;
  font-size: 50px;
  font-weight: 700;
}
.btn {
  position: relative;
  z-index: 1;
  /*border: 0;*/
}
.btn {
  background: #ffb11f !important;
  display: inline-block;
  border-color: transparent;
  padding: 10px 27px;
  color: white;
  border: 0;
}
.btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  background: #0f1b28;
  transition: transform 0.7s ease-in-out;
  z-index: -1;
}
.btn:hover::after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
.btn:hover {
  color: white !important;
}
.sec2Bx {
  border-radius: 3px;
  padding: 40px 20px;
  display: flex;
  align-items: start;
  color: white;
  box-shadow: 0 3px 7px rgb(0 0 0 / 35%);
  margin-bottom: 20px;
  transition: 0.7s;
}
.sec2Bx:hover {
  transform: translateY(-5px);
}
.sec2Bx .btn {
  color: #ffb11f;
  background: white !important;
  box-shadow: 0 3px 7px rgb(0 0 0 / 28%);
  border-color: transparent;
  transition: 0.7s;
}
.sec2Bx .sec2content {
  padding-left: 15px;
}
.about-sec {
  background: #fff7e9;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-sec .about-content-bx {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  height: 100%;
}
.about-sec .about-content-bx p {
  text-align: left;
}
.about-sec .about-content-bx h1 {
  font-weight: bolder;
  padding: 20px 0;
  color: black;
}
/*section 3*/
.title h6,
.title h2 {
  margin: 0;
  color: #181818;
}
.title h2 {
  color: #181818;
  font-size: 72px;
  font-weight: 700;
}
.sec3 {
  padding: 70px 0;
}
.sec3 .title {
  margin-bottom: 50px;
}
.pro {
  background: white;
  box-shadow: 2px 4px 12px rgb(0 0 0 / 25%);
  margin-bottom: 30px;
  border-radius: 6px;
  padding: 20px 0;
  transition: 0.7s;
  position: relative;
}
.pro .btn {
  color: white !important;
}
.pro::before {
  position: absolute;
  content: "";
  /*background: #ffb11f;*/
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  border: 26px solid #ffb11f;
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.pro:hover {
  transform: translateY(-10px);
}

.pro a p {
  color: black;
  padding: 10px 0;
  font-size: 14px;
  font-weight: bolder;
  font-family: "Libre Baskerville", serif;
}
/*end of section 3*/

/* vegPack */
.vgPck-section {
  padding: 70px 0;
}

.vgPck-thumb {
  position: relative;
  z-index: 1;
}

.vgPck-thumb::before {
    position: absolute;
    content: "";
    width: 90%;
    height: 120%;
    bottom: -10%;
    left: 50%;
    z-index: 1;
    border: 10px solid #fff;
    transform: translateX(-50%);
}

.section-header h6 {
  color: #ffb11f;
}

.section-header h3 {
  color: white;
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  font-family: "Poltawski Nowy", serif;
}

.vgPck-area h3 {
  color: white !important;
  font-size: 40px !important;
}
.vgPck-area p {
  color: white;
}
.vgPck-area .btn {
  background: #fff !important;
  margin-top: 30px;
  display: inline-block;
  padding: 13px 49px;
  border-radius: 3px;
  color: #ffb11f;
}

/* organicPro */
.organicPro {
  background: #f8fafe;
  padding: 120px 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h3 {
  font-family: "Poltawski Nowy", serif;
  color: black;
  font-size: 45px;
}

.organicPro .product-item-2 {
  margin-bottom: 45px;
}

.organicPro .product-inner {
  font-family: "Poltawski Nowy", serif;
  text-transform: capitalize;
  box-shadow: 0 0 6px rgba(8, 136, 136, 0.08);
  position: relative;
  border: 10px solid #fff;
  background: #eff4f8;
  cursor: pointer;
  text-align: center;
}

.organicPro .food_item .product-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item5.jpg);
  background-size: cover;
  background-position: center;
  transition: all 0.7s ease;
}
.organicPro .food_item:nth-child(2) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item1.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .food_item:nth-child(3) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item2.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .food_item:nth-child(4) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item6.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .food_item:nth-child(5) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item3.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .food_item:nth-child(6) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item4.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .food_item:nth-child(7) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item7.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .food_item:nth-child(8) .product-inner::before{
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(../images/item8.jpg);
  background-size: cover;
  background-position: center;
}
.organicPro .product-thumb {
  padding: 20px 0 0;
  overflow: hidden;
}

.organicPro .product-content {
  background: white;
  padding: 20px 20px 0;
  text-align: center;
}

.organicPro .rating {
  color: #e9ba17;
}

.organicPro .contOpt {
  position: absolute;
  opacity: 0;
  transition: all 0.7s ease;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.product-item-2:hover .product-inner::before {
  transform: scale(1);
}

.product-item-2:hover .contOpt {
  opacity: 1;
}

.contOpt .btn {
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-top: 30px;
  display: inline-block;
  padding: 9px 12px;
  border-radius: 3px;
  background-color: #ffb11f;
}

/*newsletter*/
.newsletter {
  padding: 120px 0 60px;
  background: white;
}

.newsletterTitle h3 {
  margin: 0;
  font-family: "Poltawski Nowy", serif;
  color: #ffb11f;
}

.newsletterTitle {
  display: flex;
  align-items: center;
  height: 100%;
}

.newsletter form .form-group .btn {
  border-radius: 0;
  color: #fff;
  background: #ffb11f;
}

/*end of newsletter*/

/*start of contact-form*/

.contact-bx-2 {
  padding: 30px 0;
}

.contact-bx-1 .contact-bx {
  /*background-color:black;*/
  color: white;
  height: 200px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  padding: 40px;
  border: 4px solid hwb(39deg 12% 0%);
  border-radius: 13px;
  border-top: none;
  border-right: none;
  border-left: none;
  box-shadow: 0px 0px 2px rgb(255 176 31 / 70%);
}
.contact-bx-1 .contact-bx i {
  margin-right: 19px;
  background-color: #ffb11f;
  border-radius: 100%;
  font-size: 20px;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-bx-1 .contact-bx p {
  color: black;
  margin-top: 13px;
  margin-bottom: 1rem;
  font-weight: 450;
}
form .lb1 {
  font-weight: bold;
}
form input[type="radio"] {
  margin: 0 5px;
}

/*end of contact-form*/

/*start of product details*/

.proDetailSec {
  padding: 70px 0;
  background: #f8fafe;
}

.proimg {
  margin: 20px 0px 20px 20px;
}

.proimg img {
  width: 100%;
  padding: 15px;
  background: #eff4f8;
}

.pro-outter {
  background: #fff;
  box-shadow: 0 0 6px rgba(8, 136, 136, 0.08);
  margin-bottom: 20px;
}

.prodetail {
  padding: 20px;
}

.prodetail h3 {
  font-family: "Poltawski Nowy", serif;
  text-transform: capitalize;
  color: #ffb11f;
  position: relative;
}

.prodetail h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  background: #f0f0f0;
  height: 2px;
  width: 30px;
}

.prodetail ul {
  padding-left: 15px;
}

.prodetail ul li {
  color: #716c80;
  list-style: square;
  font-size: 15px;
  line-height: 26px;
}

.prodetail ul li::marker {
  color: #ffb11f;
}

.prodetail ul li b {
  color: #333;
}

.prodetail h5 {
  color: #ffb11f;
  font-weight: 600;
}

/*end of product details*/

/*footer*/
footer {
  background: #0f1b28;
  position: relative;
  padding: 70px 0 50px;
}

footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  background: url(images/footer-top-bg.png) no-repeat;
  transform: translateY(-50%);
}

footer p {
  margin: 0;
  color: white;
  /* font-size: 15px; */
}

.foot2 li {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: white;
  margin-bottom: 15px;
}

.foot2 li .fa {
  color: #ffb11f;
  position: relative;
  top: 5px;
  display: inline-block;
  margin-right: 10px;
}

footer h5 {
  color: #fff;
  margin: 0 0 20px;
  font-family: "Poltawski Nowy", serif;
  position: relative;
}

footer h5::before {
  position: absolute;
  content: "";
  bottom: -4px;
  border-radius: 10px;
  left: 0;
  background-color: #ffb11f;
  height: 1px;
  width: 10%;
}

.footMap {
  height: 200px;
  overflow: hidden;
}

footer li a {
  color: white;
  transition: 0.7s;
}

footer li:hover a {
  color: #ffb11f;
}

footer .foot1 a:last-child {
  text-decoration: underline;
  color: #ffb11f;
}

footer .navbar-brand {
      display: flex;
      align-items: center;
}
footer .navbar-brand span {
  color: white !important;
}
footer .navbar-brand h2 {
  color: white;
  font-size: 20px;
}

/*end of footer*/

.contact_info {
      background-image: url(../images/conatctbg.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      position: relative;
      z-index: 1;
      height: 100%;
      padding: 30px 15px 0;
      color: white;
}
.contact_info .fa{
  margin-right: 10px;
}
.contact_info::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
}
.contact_info p{
      padding-left: 6%;
}
.about-sec .img {
    height: 100%;
    background-image: url(../images/abt.jpg);
    background-size: cover;
    background-position: center;
}
.appt-form-sec{
  padding: 3% 0;
}

.career-form-body{
    background-image: linear-gradient(rgb(255 255 255 / .7), rgb(255 255 255 / .7)), url(https://media.istockphoto.com/id/515373062/vector/food-seamless-background.jpg?s=612x612&w=0&k=20&c=hexa_lBms2zsFxEHASUeYhNu17i8JfV3TGOoDark-tk=);
    background-repeat: repeat;
    background-position: center;
}

.career-form .form-control:focus{
    box-shadow: none !important;
    border-color: rgb(0 0 0 / .1) !important;
    outline: none !important;
}
.career-form-body .container{
    box-shadow: 0 0 9px 9px rgb(0 0 0 / 6%);
    border-radius: 9px;
}

@media only screen and (max-width: 575px) {
  
  
  .contact-bx-1 .contact-bx {
    /* background-color: black; */
    color: white;
    width: 100%;
    /* height: 200px; */
    margin: -49px 0;
    padding: 22px 117px;
    display: flex;
    align-items: center;
  }
  .contact-img img {
    padding: 0 72px;
    margin-bottom: 60px;
  }
  footer .foot1 {
    padding: 19px 0px !important;
  }
  footer .foot2 {
    padding: 19px 0px !important;
  }
  footer .foot3 {
    padding: 19px 0px !important;
  }
  footer .foot4 {
    padding: 19px 0px !important;
  }
}

@media only screen and (max-width: 320px) {
  .contact-bx-1 .contact-bx {
    /* background-color: black; */
    color: white;
    width: 100%;
    /* height: 200px; */
    margin: -38px 0;
    padding: 0px 0px !important;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 360px) {
  .contact-bx-1 .contact-bx {
    /* background-color: black; */
    color: white;
    width: 100%;
    /* height: 200px; */
    margin: -38px 0;
    padding: 0px 0px !important;
    display: flex;
    align-items: center;
  }
}

@media only screen and (max-width: 992px){
  .appt-form-sec{
    padding-top: calc(100vh - 80vh);
  }
  .vgPck-area{
    padding-top: 60px;
  }
  .contact_form{
    padding-top: 60px;
  }
  .caption {
      width: 70%;
  }
  .caption h2 {
      font-family: "Poltawski Nowy", serif;
      color: #181818;
      font-size: 40px;
      font-weight: 700;
  }
  .sec1 {
      background-image: url(../images/bg-1.jpg);
      padding: 150px 0 100px;
      /* background-position: top; */
      background-position: bottom;
      background-size: cover;
  }
}
.whatsapp-icon{
    position : fixed;
    bottom : 20px;
    right : 20px;
    z-index : 9999;
}