/*
  [Table of contents]
  1 header css
  2 owl.carousel
  3 footer css
*/

/* Root css */

:root {
  --primary-font: Josefin Sans;

  /* Color */
  --primary-color: #000;
  --primary-bg-color: #fff;

  /* Hover Color */
  --primary-color-hover: rgb(184,134,11); 
  --primary-bg-color-hover: #000;

  /* --secondary-color: #000; */
}

/* Root css close */

/* default css */

* {
  outline: none !important;
}

body {
  display: flex;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  min-height: 100vh;
  flex-direction: column;
  color: var(--primary-color);
  font-family: var(--primary-font);
  background-color: var(--primary-bg-color);
}

p,
ul,
ol {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-color);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--primary-color);
  font-family: var(--primary-font);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: var(--primary-color);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover {
  color: var(--primary-color-hover);
}

.dropdown-toggle::after {
  border: none;
  content: "\f107";
  vertical-align: unset;
  font-family: "Font Awesome 5 Pro";
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.sec-head {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 600;
}

.btn {
  color: #fff;
  margin: 0 auto;
  display: block;
  padding: 10px 25px;
  border-radius: 6px;
  background-color: var(--primary-color-hover);
  box-shadow: 0 0 4px var(--primary-color-hover);
}

.btn:hover {
  color: #fff;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

/* defalut css*/

/* header css */

header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  transition: all 0.5s;
  background-color: #fff;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
}

header.fixed {
  transition: all 0.5s;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .nav-link {
  margin: 0 15px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s;
  color: var(--primary-color);
}

.navbar .navbar-nav .active>.nav-link {
  color: var(--primary-color-hover);
  /*color: #fff;*/
  font-weight: 500;
}

.navbar .nav-item:hover .nav-link {
  color: var(--primary-color-hover);
  transition: all 0.5s;
}

.navbar-nav .dropdown-menu {
  right: 0;
  left: auto;
  border: none;
  min-width: 200px;
  margin-top: 10px;
  box-shadow: 0 0 8px #0002;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
  background-color: rgb(184,134,11);
  color: #fff;
}

.navbar-brand {
  display: block;
  max-width: 40px;
  padding: 0;
  margin: 0;
}

img {
  /* max-width: 100%; */
  max-height: 100%;
}

.navbar .navbar-nav .dropdown-toggle {
  display: flex;
  margin: 0;
  align-items: center;
  padding: 5px 30px 5px 5px;
}

.navbar .navbar-nav .dropdown-toggle img {
  border-radius: 100%;
  width: 30px;
  height: 30px;
}

.dropdown-toggle::after {
  position: absolute;
  top: 7px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
}

.dropdown {
  border-radius: 60px;
  box-shadow: 0 0 8px #0004;
}

.navbar-nav {
  align-items: center;
}

.search-input {
  top: 0%;
  right: 0;
  left: auto;
  width: 100%;
  display: block;
  min-width: 280px;
  position: relative;
  border-radius: 10px;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0 0 22px #0002;

}

.navbar .navbar-nav .search .nav-link {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  padding: 0;
  margin: 0;
  width: 40px;
  line-height: 50px;
  text-align: center;
  border: none;
  background-color: #fff;
}

.search {
  position: relative;
}

.search-input input {
  margin: 0;
  width: 100%;
  display: block;
  padding: 10px 16px;
  border-radius: 5px;
}

/* header css */

/* Banner css */

  .banner-sec {
    padding: 0;
    height: 80vh;
  }

  .banner-sec:before {
    position: absolute;
    /*top: 27em;*/
    top: 71%;
    right: 50px;
    background: url(../../images/banner/chilly.png);
    width: 103px;
    height: 151px;
    content: "";
    z-index: 2;

    animation: bounce 5s infinite;
	-webkit-animation: bounce 5s infinite;
	-moz-animation: bounce 5s infinite;
	-o-animation: bounce 5s infinite;
}
/* 
.bounce {
	position: absolute;
	bottom: 30px;
	left: 50% ;
	width: 60px;
	height: 60px ;
	margin-left:-30px;
	border: 2px solid #990000;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	-ms-border-radius:50%;
	border-radius:50%;
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
} */
 
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	40% {-webkit-transform: translateY(-15px);}
	60% {-webkit-transform: translateY(-5px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-15px);}
	60% {-moz-transform: translateY(-5px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-15px);}
	60% {-o-transform: translateY(-5px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-15px);}
	60% {transform: translateY(-5px);}
}

.banner-sec .item {
  height: 80vh;
  position: relative;
}

.banner-sec .item .banner-contant {
  left: 100px;
  bottom: 60px;
  position: absolute;
  /*animate the banner*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.owl-item.active h4 {
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.banner-contant h1 {
  /*color: #fff;
  font-size: 60px;*/

    font-family: "Give You Glory", cursive;
    color: #fff;
    font-size: 3.7em;
    font-weight: 700;
}

.banner-contant h4 {
    color: #fff;
    max-width: 700px;
    font-family: "Give You Glory", cursive;
    font-weight: 300;
    line-height: 36px;
    font-size: 24px;
}

.banner-sec .item img {
  filter: brightness(0.3);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar {
  padding: 10px 15px;
}


.banner-carousel .owl-nav span,
.pro-ref-carousel .owl-nav span {
  width: 40px;
  height: 40px;
  color: #fff;
  display: block;
  font-size: 50px;
  line-height: 40px;
  border-radius: 100%;
  background-color: var(--primary-color-hover);
  z-index: 999;


}

.banner-carousel .owl-nav,
.pro-ref-carousel .owl-nav {
  top: 50%;
  left: 50%;
  height: 0;
  display: flex;
  position: absolute;
  align-items: center;
  width: calc(100% - 50px);
  justify-content: space-between;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.banner-carousel .owl-dots,
.product-details-img .owl-dots {
  left: 50%;
  bottom: 10px;
  position: absolute;
  transform: translateX(-50%);
}

.banner-carousel .owl-dots .owl-dot,
.product-details-img .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  margin: 0 4px;
  border-radius: 50px;
  background-color: #fff6;
/*  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;*/

    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;

}

.banner-carousel .owl-dots .owl-dot.active,
.product-details-img .owl-dots .owl-dot.active {
  width: 30px;
  background-color: #fff;
}

/* Banner css */

/* Feature css */

.feature-box {
  height: 240px;
  margin: 18px;
  overflow: hidden;
  max-height: 300px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.2);
}

.feature-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.feature-contant {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.feature-contant h2 {
  color: #fff;
  margin-bottom: 0;
  white-space: nowrap;
}

/* Feature css */

/* Our Product css */

.pro-box {
  height: 100%;
  display: block;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.1);
}

.favourite [class*="col-"],
.product-prev-sec [class*="col-"] {
  margin-bottom: 30px;
}

.pro-img {
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  max-height: 220px;
  position: relative;
  align-items: center;
  margin-bottom: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.cat-product .pro-img {
  max-height: 200px;
}

.pro-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.pro-img .i {
  position: absolute;
  /*top: 10px;*/
  bottom: 1px;
  right: 12px;
  width: 38px;
  height: 38px;
  text-align: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 30px;
  border-radius: 6px;
  color: #fff;
  padding: 6px;
  /*background-color: rgba(255, 255, 255, 0.4);*/
  background-color: rgb(184,134,11);
}



.pro-box p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 10px;
  font-weight: 500;
}

#sync2 .owl-stage {
  margin: 0 auto;
}

#sync2 {
  position: relative;
  margin: 0 auto 20px;
  max-width: calc(100% - 40px);
}

.product-prev-sec #sync2 .owl-nav {
  width: calc(100% + 20px);
}

.product-prev-sec .nav-pills {
  margin-bottom: 30px;
  justify-content: center;
}

.product-tab {
  display: flex;
  cursor: pointer;
  line-height: 1.5;
  font-weight: 500;
  margin: 10px 7px;
  padding: 8px 14px;
  border-radius: 6px;
  align-items: center;
  background-color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.current .product-tab {
  color: #000;
  border-color: var(--primary-color-hover);
}

.product-prev-sec .nav-pills .nav-link img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 3px;
}

.pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-prev-sec .tab-pane {
  text-align: center;
}

.product-prev-sec .owl-item .tab-pane {
  padding: 20px;
}

.product-prev-sec .row {
  text-align: left;
}

.product-prev-sec .btn {
  display: inline-block;
}

.owl-carousel .owl-item .product-tab img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 5px;
}

/* Our Product css */

/* About Us css */

.about-box {
  padding: 12px;
  display: flex;
  border-radius: 10px;
  align-items: center;
  border: 1px solid var(--primary-color-hover);
}

.about-img {
  display: flex;
  overflow: hidden;
  max-width: 600px;
  max-height: 350px;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.about-contant {
  padding-left: 40px;
  flex-basis: calc(100% - 600px);
}

.about-sec {
  padding-top: 0;
}

.about-contant p {
  font-weight: 400;
}

.product-prev-sec {
  /*padding-top: 0px;*/
}

/* About Us css */

/* Review css */

.review-profile {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 100%;
  overflow: hidden;
}

.review-carousel .item {
  text-align: center;
}

.review-carousel {
  max-width: 700px;
  margin: 60px auto 0;
}

.review-carousel h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0 10px;
}

.review-carousel p {
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}

.review-carousel .owl-nav,
#sync2 .owl-nav {
  top: 50%;
  left: 50%;
  height: 0;
  width: 130%;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: space-between;
  transform: translate(-50%, -50%);
}

.review-carousel .owl-nav span,
#sync2 .owl-nav span {
  font-size: 38px;
  line-height: 30px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  color: #fff;
  background-color: var(--primary-color-hover);
}

/* Review css */

/* Contact Us css */

body input,
body textarea {
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 16px 20px;
  margin-bottom: 22px;
}

.contact-form {
  max-width: 650px;
  margin-left: auto;
  padding: 60px 50px;
  border-radius: 14px;
  /*background-color: rgba(254, 115, 76, 0.2); rgb(184,134,11)*/
  background-color: rgba(193, 159, 50, 0.2); 
}

body textarea {
  height: 140px;
  resize: none;
}

.contact-box {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--primary-color-hover);
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px auto;
}

.contact-box i {
  background-color: var(--primary-color-hover);
  color: #fff;
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  margin-right: 20px;
}

.contact-box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

/* Contact Us css */

/* footer css */

footer {
  background-color: var(--primary-color-hover);
  padding-top: 50px;
  position: relative;
  z-index: 0;
  margin-top: auto;
}

.contact-from {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.footer-head {
  display: block;
  align-items: center;
  flex-basis: 33.33%;
  padding: 0;
  max-width: 33.33%;
}

.footer-logo {
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
}

.footer-head p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  padding: 20px 0;
}

.footer-socialmedia {
  text-align: center;
  margin: 20px 0;
  flex-basis: 33.33%;
  max-width: 33.33%;
}

.footer-socialmedia a {
  margin: 0 10px;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 46px;
  text-align: center;
  border-radius: 7px;
  font-size: 20px;
  color: var(--primary-color-hover);
}

.download-app-icon img {
  height: 100%;
}

.copy-right {
  font-size: 15px;
  color: #fff;
  padding: 8px 0;
  border-top: 1px solid #fff;
}

.download-app p {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

.download-app-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.download-app-icon {
  height: 40px;
  margin-left: 10px;
}

.download-app {
  text-align: right;
  flex-basis: 33.33%;
  max-width: 33.33%;
}

/* footer css */

/* product page css */

.glyphicon {
  margin-right: 5px;
}

.thumbnail {
  margin-bottom: 20px;
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.item.list-group-item {
  float: none;
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
}

.item.list-group-item:nth-of-type(odd):hover,
.item.list-group-item:hover {
  background: #428bca;
}

.item.list-group-item .list-group-image {
  margin-right: 10px;
}

.item.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.item.list-group-item .caption {
  padding: 9px 9px 0px 9px;
}

.item.list-group-item:nth-of-type(odd) {
  background: #eeeeee;
}

.item.list-group-item:before,
.item.list-group-item:after {
  display: table;
  content: " ";
}

.item.list-group-item img {
  float: left;
}

.item.list-group-item:after {
  clear: both;
}

.list-group-item-text {
  margin: 0 0 11px;
}

.cat-product .col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 50%;
  max-width: 50%;
}

.btn-wrap .btn {
  margin: 0;
  padding: 0;
  width: 50%;
  height: 40px;
  display: block;
  border-radius: 0;
  box-shadow: none;
  line-height: 40px;
  position: relative;
  background-color: #fff;
  color: var(--primary-color-hover);
}

.btn-wrap {
  top: 0;
  right: 0;
  width: 150px;
  display: flex;
  overflow: hidden;
  margin-left: auto;
  border-radius: 6px;
  align-items: center;
  position: absolute;
  border: 1px solid var(--primary-color-hover);
}

.btn-wrap .btn input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.btn-wrap .btn#grid {
  border-left: 1px solid var(--primary-color-hover);
}

.btn-wrap .btn.active {
  color: #fff;
  background-color: var(--primary-color-hover);
}

.cart-pro-head {
  position: relative;
}

.pagination {
  justify-content: center;
  margin-bottom: 0;
}

.pagination .page-item {
  margin: 0 8px;
}

.pagination .page-link {
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: var(--primary-color-hover);
  border-radius: 100% !important;
  border-color: rgba(254, 115, 76, 0.4);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-size: 45px;
}

.page-item.active .page-link {
  background-color: var(--primary-color-hover);
  border-color: var(--primary-color-hover);
}

.page-item.disabled .page-link {
  color: var(--primary-color-hover);
  border-color: rgba(254, 115, 76, 0.4);
  opacity: 0.5;
}

.page-link:hover {
  background-color: transparent;
}

.page-link:focus {
  box-shadow: none;
}

.pagination .page-item.disabled {
  cursor: no-drop;
}

.cat-product .col-12 .pro-box {
  display: flex;
  flex-direction: row;
}

.cat-product .col-12 .pro-img {
  margin-bottom: 0;
  max-width: 200px;
}

.cat-product .col-12 .product-details-wrap {
  flex-basis: calc(100% - 200px);
  max-width: calc(100% - 200px);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* product page css */

/* product Details page css */

.product-details-sec,
.product-list-sec,
.profile-sec,
.favourite,
.order-details,
.cart {
  padding-top: 120px;
}

.product-details-sec .sec-head {
  text-align: left;
  margin: 30px 0 10px;
}

.product-details-img {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 12px #0002;
}

.product-details-img .item {
  height: 400px;
}

.product-details-sec small {
  color: #0009;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.pro-details-name-wrap i {
  color: var(--primary-color-hover);
  font-size: 28px;
}

.product-details-sec .pricing {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.product-details-sec .open-time {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pro-ref-carousel .owl-item {
  margin: 20px 0;
}

.product-details-sec p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.pro-ref-carousel .owl-item .item {
  margin-left: 10px;
}

.product-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-sec .btn {
  margin: 0;
}

.product-rev-wrap {
  display: flex;
}

.cat-aside {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.cat-product {
  padding-left: 30px;
  flex-basis: calc(100% - 300px);
  max-width: calc(100% - 300px);
}

.cat-check {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  margin: 20px 10px;
  padding: 10px 10px;
  user-select: none;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}

.cat-check.active {
  border-color: var(--primary-color-hover);
}

.cat-aside h3 {
  margin: 19px 0;
  font-size: 26px;
}

.cat-check img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 10px;
}

.cat-check p {
  color: #000;
  font-weight: 500;
}

.product-details {
  display: flex;
  align-items: center;
  margin-top: 8px;
  justify-content: space-between;
}

.product-details h4 {
  font-size: 20px;
  margin-bottom: 0;
  transition: all 0.5s;
  /*max-width: calc(100% - 60px);*/
}

.product-details a {
  display: block;
}

.product-details a:hover h4 {
  color: var(--primary-color-hover);
}

.product-details .pro-pricing {
  font-size: 24px;
  padding-right: 0;
}

.product-details p {
  margin-top: 0;
  padding-right: 6px;
  margin-bottom: 0;
  font-size: 14px;
  max-width: 300px;
}

.product-details .btn {
  margin-right: 0;
  padding: 7px 16px;
}

.pro-details-display {
  display: flex;
  flex-direction: column;
}

.extra-food-wrap {
  height: 100%;
  display: flex;
  margin-top: 20px;
  align-items: flex-start;
}

.extra-food li {
  position: relative;
  margin-bottom: 16px;
}

.extra-food li input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin-bottom: 0;
}

.extra-food li p {
  padding-left: 36px;
  position: relative;
}

.extra-food li p::before {
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 5px;
  border: 1px solid var(--primary-color-hover);
}

.extra-food {
  margin-right: 60px;
}

.extra-food li p::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  opacity: 0;
  border-radius: 3px;
  transition: all 0.5s;
  background-color: var(--primary-color-hover);
}

.extra-food li input:checked+p::after {
  opacity: 1;
}

.pro-details-name-wrap {
  display: flex;
  margin-bottom: 2px;
  align-items: center;
  justify-content: space-between;
}

.pro-details-name-wrap .sec-head {
  margin: 0;
  padding-right: 25px;
}

.extra-food h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.pro-details-add-wrap {
  margin-top: auto;
  margin-left: auto;
  text-align: right;
}

.product-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* product Details page css */

/* Cart css */

.cart-box {
  padding: 8px;
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 8px #0004;
}

.cart-pro-img {
  /* width: 100px; */
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}

.cart-pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-pro-edit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-box textarea {
  height: 80px;
  margin-bottom: 0;
  padding: 8px 16px;
  background-color: #0001;
}

.pro-add {
  display: flex;
  align-items: center;
}

.pro-add input {
  margin: 0;
  padding: 0;
  width: 50px;
  text-align: center;
}

.cart-pro-details {
  padding-left: 25px;
  padding-right: 10px;
  /* flex-basis: calc(100% - 100px); */
  flex-basis: calc(100%);
  /* max-width: calc(100% - 100px); */
}

.cart-pro-name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
}

.pro-add span {
  text-align: center;
  min-width: 25px;
  height: 25px;
  line-height: 25px;
  display: block;
  font-size: 26px;
  color: var(--primary-color-hover);
  border-radius: 100%;
  border: 1px solid var(--primary-color-hover);
}

.cart-pricing {
  font-size: 25px;
  font-weight: 500;
}

.cart-pro-edit i {
  font-size: 20px;
  color: red;
}

.cart-summary {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--primary-color-hover);
}

.pro-total,
.cart-total {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  align-items: center;
  padding: 10px 0 6px;
  margin-bottom: 0;
  border-top: 1px dashed #ccc;
  justify-content: space-between;
}

.pro-total span,
.cart-total span {
  font-weight: 500;
}

.no-fo-pro {
  font-size: 20px;
  font-weight: 600;
}

.cart-total {
  border-top: 2px dashed #000;
  border-bottom: 2px dashed #000;
}

.promo-wrap {
  display: flex;
}

.promo-wrap input {
  margin-bottom: 0;
  padding: 10px 20px;
  border-radius: 7px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid var(--primary-color-hover);
}

.promo-wrap .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.promo-code {
  max-width: 320px;
}

.promo-code p {
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  font-weight: 600;
  user-select: none;
}

.promo-box {
  position: relative;
  padding: 10px 10px 5px;
  border-top: 1px solid #000;
}

.promo-modal .close {
  width: 40px;
  height: 40px;
  opacity: 1;
  font-weight: 300;
  margin-left: auto;
}

.promo-modal .close span {
  line-height: 0.5;
  font-size: 50px;
}

.promo-box .btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 14px;
  font-size: 14px;
}

.promo-box p {
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 400;
}

.promo-box .promo-title {
  font-size: 20px;
}

.promo-code-here span {
  font-weight: 700;
  text-decoration: underline;
}

.promo-box .promo-code-here {
  font-size: 17px;
}

.promo-box small {
  color: #717171;
  font-weight: 300;
}

.promo-modal .modal-content {
  border-radius: 10px;
  border: none;
}

body .promo-modal.modal {
  background-color: rgba(254, 115, 76, 0.2);
}

.modal-head {
  display: flex;
  padding: 10px 10px 0 20px;
  align-items: center;
}

.modal-head h4 {
  margin-bottom: 0;
}

.promo-modal .modal-body {
  padding-top: 8px;
}

.cart-summary textarea {
  margin-bottom: 0;
  background-color: #0001;
}

.cart-summary input {
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 38px rgb(0 0 0 / 0.1);
}

/* Cart css */

/* Sign Up css */

.signup-sec {
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.signup-sec .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.5);
}

.signup-logo a {
  z-index: 9;
  display: flex;
  position: relative;
  align-items: center;
  margin: 0 auto 30px;
}

.signup-sec form {
  padding: 50px 40px;
  max-width: 650px;
  margin: 0 auto;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  border: 1px solid var(--primary-color-hover);
  justify-content: space-between;
  backdrop-filter: blur(7px);
}

.signup-sec form .w-50 {
  width: calc(50% - 11px) !important;
}

.signup-sec form .btn {
  width: 100%;
}

.signup-sec form input {
  padding: 12px 20px;
  border-radius: 6px;
}

.signup-sec .container {
  height: 100vh;
  display: flex;
  overflow: auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.signup-logo p {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

.signup-logo img {
  width: 100%;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  margin-right: 30px;
}

.navbar .navbar-nav .nav-link.sign-btn {
  padding: 5px 16px;
  color: #fff;
}

.already {
  width: 100%;
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

.already a {
  color: var(--primary-color-hover);
}

/* Sign Up css */

/* History css */

.order-box {
  display: flex;
  padding: 10px 20px;
  border-radius: 10px;
  align-items: flex-start;
  box-shadow: 0 0 16px rgb(0 0 0 / 0.1);
}

.order-box-no {
  flex-basis: 75%;
  max-width: 75%;
}

.order-box-price {
  flex-basis: 25%;
  max-width: 25%;
  text-align: right;
}

.order-box-no h4 {
  color: #0006;
  font-size: 16px;
  margin-bottom: 2px;
}

.order-box-no h4 span {
  color: #000;
  font-size: 18px;
}

.order-box-no .order-qty {
  font-weight: 400;
  margin-bottom: 0;
}

.order-box-no .order-qty span {
  font-weight: 500;
  font-size: 22px;
}

.order-box .order-status {
  font-size: 16px;
  font-weight: 400;
}

.order-box .order-status span {
  color: var(--primary-color-hover);
  font-weight: 600;
}

.order-box-price h5 {
  color: var(--primary-color-hover);
}

.order-box-price p {
  font-weight: 500;
}

/* History css */

/* Our App css */

.our-app .sec-head {
  text-align: left;
}

.our-app .our-app-icon {
  max-width: 180px;
  display: block;
  margin-left: auto;
  margin: 15px 0 15px auto;
}

.our-app .our-app-icon img {
  width: 100%;
  height: 100%;
}

.our-app {
  /*background-color: rgb(254 115 76 / 0.2); rgb(184,134,11)*/
  background-color: rgb(184 134 11 / 0.2); 
}

.our-app p {
  font-weight: 400;
}

/* Our App css */

/* Order Details css */

.order-details-img {
  height: 100px;
  overflow: hidden;
  max-width: 100px;
  border-radius: 10px;
  margin-right: 20px;
}

.order-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-details h3 {
  font-size: 22px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  justify-content: space-between;
}

.order-payment-summary,
.order-add {
  padding: 15px 0;
  max-width: 500px;
  margin-left: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 19px rgb(0 0 0 / 0.1);
}

.order-payment-summary p {
  display: flex;
  padding: 10px 20px;
  font-weight: 500;
  margin-bottom: 0;
  align-items: center;
  justify-content: space-between;
}

.order-payment-summary h3 {
  margin-bottom: 20px;
  font-size: 24px;
  padding: 0 20px;
}

.order-payment-summary .order-details-total {
  border-top: 1px solid #000;
  padding-top: 14px;
  padding-bottom: 0;
}

.order-add p {
  font-weight: 400;
  border-radius: 7px;
  padding: 6px 14px;
  background-color: rgb(204 204 204 / 0.3);
}

.order-add {
  padding: 10px 10px;
}

.order-details-box {
  display: flex;
  padding: 10px;
  border-radius: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  box-shadow: 0 0 19px rgb(0 0 0 / 0.1);
}

.order-details-name {
  flex-basis: calc(100% - 120px);
  max-width: calc(100% - 120px);
}

.order-details-name p {
  font-weight: 600;
  margin-bottom: 4px;
}

.order-details-name .cart-pro-note {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 14px;
  background-color: #0001;
  border-radius: 10px;
  margin-bottom: 0;
}

.order-details-name span {
  color: var(--primary-color-hover);
}

.order-add h6 {
  font-size: 18px;
  padding-left: 6px;
}

.order-details-name a {
  display: block;
  color: #000;
}

.order-details-name a:hover h3 {
  color: var(--primary-color-hover);
}

footer .container {
  align-items: center;
}

.show-menu {
  overflow: hidden;
}

/* Order Details css */

.order-details .sec-head+p {
  color: #0006;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.order-details .sec-head {
  margin-bottom: 5px;
}

.ingredients-box {
  height: 180px;
  margin: 16px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.2);
}

.ingredients-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox-infobar {
  display: none;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  display: none;
}

.value-button {
  cursor: pointer;
}

#myBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 45px;
  height: 45px;
  z-index: 9999;
  line-height: 50px;
  font-size: 26px;
  text-align: center;
  border-radius: 10px;
  color: #ff582a;
  cursor: pointer;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.2);
}

#success-msg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  margin: 0 !important;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 6px 10px;
  font-weight: 500;
  color: #155724;
  background-color: #d4edda;
  border-color: #d4edda;
}

#error-msg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  margin: 0 !important;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 6px 10px;
  font-weight: 500;
  color: red;
  background-color: #ffbaba;
  border-color: #ffbaba;
}

.alert-danger {
  color: red;
  background-color: #ffbaba;
}

.cart-btn span {
  position: absolute;
  top: 5px;
  right: 13px;
  width: 16px;
  height: 16px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  border-radius: 100%;
  /*background-color: var(--primary-color-hover);*/ 
  /*background-color: rgb(193 159 50 /0.8);*/
  background-color: #444;
}

.cart-btn {
  position: relative;
}

.search-product {
  padding: 0 !important;
  flex-basis: 100% !important;
  max-width: 100% !important;
}

.pro-details-name-wrap i {
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 30px;
  border-radius: 6px;
  color: #fff;
  padding: 6px;
  background-color: rgb(184,134,11);
}

.pro-details-display textarea {
  margin-bottom: 0;
  background-color: #0001;
  margin-top: 20px;
}

.delivery-btn-wrap {
  display: flex;
  align-items: center;
}

.delivery-btn-wrap .btn {
  flex-basis: calc(50% - 14px);
  max-width: calc(50% - 14px);
}

.cart-addons {
  display: flex;
  line-height: 1.6;
  padding: 4px 20px;
  align-items: center;
  /*border-bottom: 1px solid rgb(254 115 76 / 0.4); (193 159 50 / 0.2);*/
  border-bottom: 1px solid rgb(184 134 11 /0.4) 
}

.cart-addons-wrap {
  max-width: 210px;
  padding: 2px 0;
  margin-bottom: 16px;
  border-radius: 6px;
  /* padding: 10px 20px; */
  /*border: 1px solid rgb(254 115 76 / 0.4); (193 159 50 / 0.2);*/
  border: 1px solid rgb(184 134 11 /0.4); 
}

.cart-addons b {
  width: 90px;
}

.cart-addons:last-child {
  border-bottom: none;
}

.cart-delivery-type {
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
}

.cart-delivery-type-box {
  cursor: pointer;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  user-select: none;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0 0 38px rgb(0 0 0 / 0.1);
}

.cart-delivery-type-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  object-fit: contain;
}

.cart-summary .promo-wrap {
  margin-bottom: 20px;
}

.cart-delivery-type-box p {
  font-weight: 600;
}

.cart-delivery-type label {
  position: relative;
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
}

.cart-delivery-type label input {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  opacity: 0;
  z-index: -1;
}

label input:checked+.cart-delivery-type-box {
  background-color: #C0C0C0;

}
#preloader {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999;
  background: rgb(0 0 0 / 45%); 
}

.loader {
  position: absolute;
  width: 5rem;
  height: 10rem;
  top: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transform: translateY(-50%); 
}

#preloader2 {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999;
  background: rgb(0 0 0 / 45%); 
}

.loader2 {
  position: absolute;
  width: 5rem;
  height: 10rem;
  top: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transform: translateY(-50%); 
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }


.container {
  width: 100%;
}

.progressbar {
  counter-reset: step;
}
.progressbar li {
  list-style: none;
  display: inline-block;
  width: 12.33%;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height : 30px;
  border: 1px solid #ddd;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
}
.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  top: 15px;
  left: -50%;
  z-index : -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: #fe724c;
}
.progressbar li.active:before {
  border-color: #fe724c;
} 
.progressbar li.active + li:after {
  background-color: #fe724c;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 6vw;
    color: #FFD600;
    cursor: pointer
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}




/*new design*/
/* Phone landscape and bigger */
@media (min-width: 640px) {
    /* Whole */
    .uk-width-1-1\@s {
      width: 100%;
    }
    /* Halves */
    .uk-width-1-2\@s {
      width: 50%;
    }
    /* Thirds */
    .uk-width-1-3\@s {
      width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@s {
      width: calc(100% * 2 / 3.001);
    }
    /* Quarters */
    .uk-width-1-4\@s {
      width: 25%;
    }
    .uk-width-3-4\@s {
      width: 75%;
    }
    /* Fifths */
    .uk-width-1-5\@s {
      width: 20%;
    }
    .uk-width-2-5\@s {
      width: 40%;
    }
    .uk-width-3-5\@s {
      width: 60%;
    }
    .uk-width-4-5\@s {
      width: 80%;
    }
    /* Sixths */
    .uk-width-1-6\@s {
      width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@s {
      width: calc(100% * 5 / 6.001);
    }
    /* Pixel */
    .uk-width-small\@s {
      width: 150px;
    }
    .uk-width-medium\@s {
      width: 300px;
    }
    .uk-width-large\@s {
      width: 450px;
    }
    .uk-width-xlarge\@s {
      width: 600px;
    }
    .uk-width-xxlarge\@s {
      width: 750px;
    }
    /* Auto */
    .uk-width-auto\@s {
      width: auto;
    }
    /* Expand */
    .uk-width-expand\@s {
      flex: 1;
      min-width: 1px;
    }
  }
  /* Tablet landscape and bigger */
  @media (min-width: 960px) {
    /* Whole */
    .uk-width-1-1\@m {
      width: 100%;
    }
    /* Halves */
    .uk-width-1-2\@m {
      width: 50%;
    }
    /* Thirds */
    .uk-width-1-3\@m {
      width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@m {
      width: calc(100% * 2 / 3.001);
    }
    /* Quarters */
    .uk-width-1-4\@m {
      width: 25%;
    }
    .uk-width-3-4\@m {
      width: 75%;
    }
    /* Fifths */
    .uk-width-1-5\@m {
      width: 20%;
    }
    .uk-width-2-5\@m {
      width: 40%;
    }
    .uk-width-3-5\@m {
      width: 60%;
    }
    .uk-width-4-5\@m {
      width: 80%;
    }
    /* Sixths */
    .uk-width-1-6\@m {
      width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@m {
      width: calc(100% * 5 / 6.001);
    }
    /* Pixel */
    .uk-width-small\@m {
      width: 150px;
    }
    .uk-width-medium\@m {
      width: 300px;
    }
    .uk-width-large\@m {
      width: 450px;
    }
    .uk-width-xlarge\@m {
      width: 600px;
    }
    .uk-width-xxlarge\@m {
      width: 750px;
    }
    /* Auto */
    .uk-width-auto\@m {
      width: auto;
    }
    /* Expand */
    .uk-width-expand\@m {
      flex: 1;
      min-width: 1px;
    }
  }
  /* Desktop and bigger */
  @media (min-width: 1200px) {
    /* Whole */
    .uk-width-1-1\@l {
      width: 100%;
    }
    /* Halves */
    .uk-width-1-2\@l {
      width: 50%;
    }
    /* Thirds */
    .uk-width-1-3\@l {
      width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@l {
      width: calc(100% * 2 / 3.001);
    }
    /* Quarters */
    .uk-width-1-4\@l {
      width: 25%;
    }
    .uk-width-3-4\@l {
      width: 75%;
    }
    /* Fifths */
    .uk-width-1-5\@l {
      width: 20%;
    }
    .uk-width-2-5\@l {
      width: 40%;
    }
    .uk-width-3-5\@l {
      width: 60%;
    }
    .uk-width-4-5\@l {
      width: 80%;
    }
    /* Sixths */
    .uk-width-1-6\@l {
      width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@l {
      width: calc(100% * 5 / 6.001);
    }
    /* Pixel */
    .uk-width-small\@l {
      width: 150px;
    }
    .uk-width-medium\@l {
      width: 300px;
    }
    .uk-width-large\@l {
      width: 450px;
    }
    .uk-width-xlarge\@l {
      width: 600px;
    }
    .uk-width-xxlarge\@l {
      width: 750px;
    }
    /* Auto */
    .uk-width-auto\@l {
      width: auto;
    }
    /* Expand */
    .uk-width-expand\@l {
      flex: 1;
      min-width: 1px;
    }
  }
  /* Large screen and bigger */
  @media (min-width: 1600px) {
    /* Whole */
    .uk-width-1-1\@xl {
      width: 100%;
    }
    /* Halves */
    .uk-width-1-2\@xl {
      width: 50%;
    }
    /* Thirds */
    .uk-width-1-3\@xl {
      width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@xl {
      width: calc(100% * 2 / 3.001);
    }
    /* Quarters */
    .uk-width-1-4\@xl {
      width: 25%;
    }
    .uk-width-3-4\@xl {
      width: 75%;
    }
    /* Fifths */
    .uk-width-1-5\@xl {
      width: 20%;
    }
    .uk-width-2-5\@xl {
      width: 40%;
    }
    .uk-width-3-5\@xl {
      width: 60%;
    }
    .uk-width-4-5\@xl {
      width: 80%;
    }
    /* Sixths */
    .uk-width-1-6\@xl {
      width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@xl {
      width: calc(100% * 5 / 6.001);
    }
    /* Pixel */
    .uk-width-small\@xl {
      width: 150px;
    }
    .uk-width-medium\@xl {
      width: 300px;
    }
    .uk-width-large\@xl {
      width: 450px;
    }
    .uk-width-xlarge\@xl {
      width: 600px;
    }
    .uk-width-xxlarge\@xl {
      width: 750px;
    }
    /* Auto */
    .uk-width-auto\@xl {
      width: auto;
    }
    /* Expand */
    .uk-width-expand\@xl {
      flex: 1;
      min-width: 1px;
    }
  }

  * + .uk-margin {
    margin-top: 20px !important;
}
.uk-margin {
    margin-bottom: 20px;
}
[class*='uk-width'] {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

  .uk-margin {
    margin-bottom: 20px;
  }

  .uk-width-expand {
    flex: 1;
    min-width: 1px;
  }

  .uk-grid {
    margin-left: -30px;
  }
.uk-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.uk-subnav {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    padding: 0;
    list-style: none;
}

.switcher-Foods{
    /*padding: 8px 25px !important;
    border-radius: 500px !important;
    color: #2b2c43 !important;
    cursor: pointer;*/

    padding: .75rem 1rem; 
    color: #2b2c43 !important;
    font-weight: 500;
    font-size: .9rem;
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    background-color: #fff;
    transition: all .15s ease;
    cursor: pointer;

    border-radius: .35rem;

  }

  .activeCheck {
    padding-bottom: 5px;
    padding-top: 4px;
  }

  
  .uk-subnav-pill > .uk-active > .switcher-Foods {
      background-color: #c1a050 !important;
      color: #fff !important;
      transition: all .4s ease-in-out;
  }

.uk-subnav-pill > * > :first-child {
    padding: 5px 10px;
    background: transparent;
    color: #fff;
  }

  .uk-subnav > * {
    flex: none;
    padding-left: 20px;
    position: relative;
}
  /* Hover + Focus */
  .uk-subnav-pill > * > a:hover,
  .uk-subnav-pill > * > a:focus {
    background-color: #f8f8f8;
    color: #fff;
  }
  /* OnClick */
  .uk-subnav-pill > * > a:active {
    background-color: #f8f8f8;
    color: #666;
  }
  /* Active */
  .uk-subnav-pill > .uk-active > a {
    background-color: #2A2B44 !important;
    color: #fff;
  }

  h3{
    color: #000;
    font-size: 21px;
    font-weight: 600;
  }

  .uk-card-body .uk-card-title{
    font-family: "Montserrat", san-serif !important;
  }
  .uk-color{
     color: #2A2B44 !important;
  }
  .uk-color-2{
     color: #45465a !important;
  }
  .uk-color-heart{
     color: #3858CA !important;
  }
  .uk-color-list{
     color: #666 !important;
  }
  .uk-list-two {
      background: #fff;
      border-radius: 10px;
      padding: 26px 20px 36px;
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
      box-shadow: 0 8px 16px 0 rgba(85,86,138,.06);
  }
  .uk-list-three {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      overflow: hidden;
  }
  .uk-list-three:hover a img {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
  }
  .uk-list-three a img {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      -webkit-transform-origin: center;
      transform-origin: center;
      overflow: hidden;
      transition: -webkit-transform .3s ease-in-out;
      transition: transform .3s ease-in-out;
      transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
  }
  .uk-list-three a img {
      display: block;
  }
  .uk-border-10 {
    border-radius: 10px !important;
  }
  /*
 * The toggle is triggered on touch devices using `:focus` and tabindex
 */
 .uk-animation-toggle:not(:hover):not(:focus) [class*='uk-animation-'] {
    animation-name: none;
  }
  /*
   * 1. Prevent tab highlighting on iOS.
   */
   .uk-animation-toggle {
    /* 1 */
    -webkit-tap-highlight-color: transparent;
  }
  /*
   * Remove outline for `tabindex`
   */
   .uk-animation-toggle:focus {
    outline: none;
  }
  .uk-card-border{
    border-radius: 10px 10px 0px 0px !important;
  }
  a.uk-link-heading,
.uk-link-heading a {
  color: inherit;
}
a.uk-link-heading:hover,
.uk-link-heading a:hover,
.uk-link-toggle:hover .uk-link-heading,
.uk-link-toggle:focus .uk-link-heading {
  color: #c1a050;
  text-decoration: none;
}
.uk-comment-meta {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #000;
  }

  /*
 * Set gutter 
 */
 .uk-subnav-divider {
    margin-left: -41px;
  }
  /*
   * Align items and divider vertically
   */
   .uk-subnav-divider > * {
    display: flex;
    align-items: center;
  }
  /*
   * Divider
   * 1. `nth-child` makes it also work without JS if it's only one row
   */
   .uk-subnav-divider > ::before {
    content: "";
    height: 1.5em;
    margin-left: 0px;
    margin-right: 20px;
  }
  /* 1 */
  .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
    border-left-color: #e5e5e5;
  }
  .uk-margin-remove-top {
    margin-top: 0 !important;
  }
  .uk-margin-top {
    margin-top: 20px !important;
  }
  .uk-animation-slide-left-small {
    animation-name: uk-fade-left-small;
  }
  .uk-text-15{
    font-size: 15px
}
.uk-cat {
    font-size: 12px !important;
    /* background: rgba(69,70,90,.1); */
    background: #c1a050;
    color: #fff !important;
    margin: 0 6px 0 0;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: "Montserrat", san-serif !important;
    font-weight: 300;
}

.text-white{
  color: #fff !important;
}

mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 "Material Design Icons";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.mdi-play::before{content:"\F040A"}.mdi-play-box::before{content:"\F127A"}.mdi-play-box-multiple::before{content:"\F0D19"}.mdi-play-box-multiple-outline::before{content:"\F13E6"}.mdi-play-box-outline::before{content:"\F040B"}.mdi-play-circle::before{content:"\F040C"}.mdi-play-circle-outline::before{content:"\F040D"}.mdi-play-network::before{content:"\F088B"}.mdi-play-network-outline::before{content:"\F0CB7"}.mdi-play-outline::before{content:"\F0F1B"}.mdi-play-pause::before{content:"\F040E"}.mdi-play-protected-content::before{content:"\F040F"}.mdi-play-speed::before{content:"\F08FF"}.mdi-playlist-check::before{content:"\F05C7"}.mdi-playlist-edit::before{content:"\F0900"}.mdi-playlist-minus::before{content:"\F0410"}.mdi-playlist-music::before{content:"\F0CB8"}.mdi-playlist-music-outline::before{content:"\F0CB9"}.mdi-playlist-play::before{content:"\F0411"}.mdi-playlist-plus::before{content:"\F0412"}.mdi-playlist-remove::before{content:"\F0413"}.mdi-playlist-star::before{content:"\F0DF2"}.mdi-plex::before{content:"\F06BA"}.mdi-plus::before{content:"\F0415"}

.rounded-circle{border-radius:50%!important}

.watch-video a .play-icon-circle {
  height: 36px;
  width: 36px;
  background-color: #2f55d4;
  line-height: 36px;
}

.watch-video a .play-icon-circle.play-iconbar {
  font-size: 16px;
}

.watch-video a .play-icon-circle.play {
  top: 77%;
}

.play-icon {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: 0;
  left: 0;
  text-align: center;
}

.play-icon i {
  height: 75px;
  -webkit-text-stroke: 2px #2f55d4;
  -webkit-text-fill-color: transparent;
  width: 75px;
  font-size: 25px;
  line-height: 75px;
  display: inline-block;
}

.play-icon i:hover {
  -webkit-text-stroke: 2px #2f55d4;
  -webkit-text-fill-color: #2f55d4;
}

.mfp-iframe-holder .mfp-content {
  max-width: 1110px;
}










/*section .item {
  height: 100vh;
  position: relative;
}
section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
section .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
section .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
section .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
section .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
section .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
section .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
section .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
section .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
section .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
section .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
section .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
section .owl-nav .owl-prev:focus {
  outline: 0;
}
section .owl-nav .owl-prev:hover {
  background: #000 !important;
}
section .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
section .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
section .owl-nav .owl-next:focus {
  outline: 0;
}
section .owl-nav .owl-next:hover {
  background: #000 !important;
}
section:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
section:hover .owl-next {
  right: 0px;
  opacity: 1;
}*/

/*loader*/
.loading {
   /* Light grey */
  border-top: 6px solid #ff3252; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-main-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
     z-index: 999;
}








/*how it works sections*/
.pt-section {
    min-height: 200px;
    margin: 32px 0;
}
.pt-section-title {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.pt-section-title p {
    color: #000;
    line-height: 24px;
    position: relative;
    margin-top: 43px;
    font-family: "Raleway";
    font-weight: 400;
}
.pt-section .pt-how {
    text-align: center;
    box-shadow: 0 0 8px #0004;
    padding: 38px;
    width: 90%;
    display: table;
    margin: 0 auto;
    margin-top: 48px;
    font-weight: 400;
}
.pt-section .pt-how span {
    background: #ff9f0e; 
    display: inline-block; 
    width: 78px;
    height: 78px;
    text-align: center;
    border-radius: 50%;
    margin: 22px 0 30px 0;
    color: #FFF;
    box-shadow: 0 0 0 3px #FFF, 0 0 0 5px #ff9f0e;
}
.pt-section .pt-how h3 {
    font-size: 20px;
    margin-bottom: 16px;
}
.pt-section .pt-how p {
    font-weight: 500;
    color: #000;
    margin: 0;
    font-family: "Raleway";
}
.pt-section .pt-how span i {
    font-weight: 700;
    font-size: 38px;
    line-height: 78px;
}

/*.pt-section-title h3:before {
    width: 62px;
    left: 46%;
    margin-top: 2%;
}
.pt-section-title h3:before, .pt-section-title h3:after {
    content: "";
    position: absolute;
    height: 5px;
    border-radius: 120px;
    background: rgb(193 159 50);
  }

  .pt-section-title h3:after {
    width: 32px;
    left: 51.5%;
    margin-top: 2%;

}*/

.check_order {
    background: #0001;
    padding: 25px;
    width: 100%;
    /*padding: 20px;*/
    border-radius: 10px;
    border: 1px solid var(--primary-color-hover);

}



.menu_banner_bg {

    background:linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(../../front/images/menu-banner.jpg) no-repeat scroll;
}

.page_header {
    padding-top: 28px;
    position: relative;
}

.sect_pad {
    padding: 100px 0 40px;
}
.text-center {
    text-align: center!important;
}
.page_header_content h1, .page_header_content a {
    color: #fff;
}

.cart {
     padding-top: 40px !important; 
}

.page_header_content li i {
    color: #fff;
    font-size: 10px;
    margin: 0 12px;
}


.bg_img_left {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: url(../../images/banner/1.png) no-repeat;
}

















/* ***************menu page**************** */




/*search box css start here*/
.search-sec{
    padding: 2rem;
}
.search-slt{
    display: block;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    height: calc(3rem + 2px) !important;
    border-radius:0;
}
.wrn-btn{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    height: calc(3rem + 2px) !important;
    border-radius:.5em;
    border: 2px
}
@media (min-width: 992px){
    .search-sec{
        position: relative;
        top: -14rem;
        z-index: 2;
        /*margin-bottom: -10em;*/
        /*background: rgba(26, 70, 104, 0.51);*/
        /*background: rgba(212, 175, 55, 0.51);*/
    }
}

@media (max-width: 992px){
    .search-sec{
        background: rgba(212, 175, 55, 0.8);
    }
}

.btn, .btn-lg{
     border-radius: 2px; 
}

#imageDimension { 
    position: relative;
        height:30em;
        width: 40em;
        overflow: hidden;
     }

.font-white {
    color: #fff;
        /*position: absolute;*/
}

@media (max-width: 568px) and (min-width: 280px) {
    .hero h1 {
        font-size: 2.2em;
        padding-top: 75px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .step-item {
        margin: 0 30px 0;
    }
}

.navbar {
  background:linear-gradient(rgba(0,0,0,0.87), rgba(0,0,0,0.87)), url('http://localhost/UmutuAfterApi1/assets/front/images/menu-bg.jpg');
  padding: .95rem 1rem;
  border-radius: 0;
}


footer {
    /*background: url('http://localhost/UmutuAfterApi1/assets/front/images/pattern.png') center repeat;*/
    background:linear-gradient(rgba(0,0,0,0.94), rgba(0,0,0,0.94)), url('http://localhost/UmutuAfterApi1/assets/front/images/menu-bg.jpg') center repeat;
    padding: 40px 0 10px;
    z-index: 1;
    position: relative;
}

footer li{
    list-style:none;
    background-image:none;
    background-repeat:none;
    background-position:0; 
}




/* html {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
} */
/* body {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #283034;
    font-weight: 300;
}  */
.mb-100 {
    margin-bottom: 100px;
}
.mb-95 {
    margin-bottom: 95px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-85 {
    margin-bottom: 85px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-75 {
    margin-bottom: 75px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-55 {
    margin-bottom: 55px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-0 {
    margin-bottom: 0;
}
.rel {
    position: relative !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-grey {
    background-color: #eaeaea;
}
.bg-coffee {
    background-color: #642f21;
}
.bg-red {
    background-color: #e3000e;
}
.bg-wine {
    background-color: #831619;
}
.bg-01,
.bg-02,
.bg-03,
.bg-04,
.bg-05,
.bg-06 {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll !important;
}
.bg-01 {
    background-image: url(../images/bg-01.jpg);
    background-attachment: fixed !important;
}
.bg-02 {
    background-image: url(../images/bg-02.jpg);
    background-attachment: fixed !important;
}
.bg-03 {
    background-image: url(../images/bg-03.jpg);
}
.bg-04 {
    background-image: url(../images/bg-04.jpg);
}
.bg-05 {
    background-image: url(../images/bg-05.jpg);
    background-attachment: fixed !important;
}
.bg-06 {
    background-image: url(../images/bg-06.jpg);
    background-attachment: fixed !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Oswald, sans-serif;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
}
h6.h6-xs {
    font-size: 1.0625rem;
}
h6.h6-sm {
    font-size: 1.125rem;
}
h6.h6-md {
    font-size: 1.15625rem;
}
h6.h6-lg {
    font-size: 1.1875rem;
}
h5.h5-xs {
    font-size: 1.25rem;
}
h5.h5-sm {
    font-size: 1.375rem;
}
h5.h5-md {
    font-size: 1.5rem;
}
h5.h5-lg {
    font-size: 1.625rem;
}
h4.h4-xs {
    font-size: 1.875rem;
}
h4.h4-sm {
    font-size: 2rem;
}
h4.h4-md {
    font-size: 2.125rem;
}
h4.h4-lg {
    font-size: 2.25rem;
}
h3.h3-xs {
    font-size: 2.5rem;
}
h3.h3-sm {
    font-size: 2.625rem;
}
h3.h3-md {
    font-size: 2.75rem;
}
h3.h3-lg {
    font-size: 2.875rem;
}
h2.h2-xs {
    font-size: 3.125rem;
}
h2.h2-sm {
    font-size: 3.25rem;
}
h2.h2-md {
    font-size: 3.375rem;
}
h2.h2-lg {
    font-size: 3.5rem;
}
p.p-sm {
    font-size: 1rem;
}
p {
    font-size: 1.0625rem;
}
p.p-md {
    font-size: 1.125rem;
}
p.p-lg {
    font-size: 1.1875rem;
}
a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
a:hover {
    color: #333;
    text-decoration: none;
}
a:focus {
    outline: 0;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.txt-list {
    list-style: disc;
    margin-left: 15px;
}
.txt-list li p {
    overflow: hidden;
    margin-bottom: 10px;
}
.txt-300 {
    font-weight: 300;
}
.txt-400 {
    font-weight: 400;
}
.txt-500 {
    font-weight: 500;
}
.txt-700 {
    font-weight: 700;
}
.txt-900 {
    font-weight: 900;
}
.white-color,
.white-color a,
.white-color h2,
.white-color h3,
.white-color h4,
.white-color h5,
.white-color h6,
.white-color li,
.white-color p {
    color: #fff;
}
.grey-color,
.grey-color a,
.grey-color h2,
.grey-color h3,
.grey-color h4,
.grey-color h5,
.grey-color h6,
.grey-color li,
.grey-color p,
.white-color .grey-color {
    color: #757575;
}
.coffee-color,
.coffee-color a,
.coffee-color h2,
.coffee-color h3,
.coffee-color h4,
.coffee-color h5,
.coffee-color h6,
.coffee-color li,
.coffee-color p,
.white-color .coffee-color {
    color: #642f21;
}
.green-color,
.green-color a,
.green-color h2,
.green-color h3,
.green-color h4,
.green-color h5,
.green-color h6,
.green-color li,
.green-color p,
.white-color .green-color {
    color: #94ad10;
}
.red-color,
.red-color a,
.red-color h2,
.red-color h3,
.red-color h4,
.red-color h5,
.red-color h6,
.red-color li,
.red-color p,
.white-color .red-color {
    color: #e3000e;
}
.white-color .wine-color,
.wine-color,
.wine-color a,
.wine-color h2,
.wine-color h3,
.wine-color h4,
.wine-color h5,
.wine-color h6,
.wine-color li,
.wine-color p {
    color: #831619;
}
@keyframes  cssload-invert {
    100% {
        transform: rotate(180deg);
    }
}
@-o-keyframes cssload-invert {
    100% {
        -o-transform: rotate(180deg);
    }
}
@-ms-keyframes cssload-invert {
    100% {
        -ms-transform: rotate(180deg);
    }
}
@-webkit-keyframes cssload-invert {
    100% {
        -webkit-transform: rotate(180deg);
    }
}
@-moz-keyframes cssload-invert {
    100% {
        -moz-transform: rotate(180deg);
    }
}
@keyframes  cssload-ball1 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball1 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball1 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball1 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball1 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@keyframes  cssload-ball2 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball2 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball2 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball2 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball2 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@keyframes  cssload-ball3 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball3 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball3 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball3 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball3 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@keyframes  cssload-ball4 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball4 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball4 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball4 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball4 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
#div-01,
#div-02,
#div-03,
#div-04,
#div-05 {
    width: 100%;
    height: 600px;
}
#div-01 {
    background-image: url(../images/divider-01.jpg);
}
#div-02 {
    background-image: url(../images/divider-02.jpg);
}
#div-03 {
    background-image: url(../images/divider-03.jpg);
}
#div-04 {
    background-image: url(../images/divider-04.jpg);
}
#div-05 {
    background-image: url(../images/divider-05.jpg);
}
#menu-2 {
    background-image: url(../images/menu-2.jpg);
}
#menu-6 .col-lg-3 {
    padding-left: 8px;
    padding-right: 8px;
}
.menu-1-txt {
    padding: 0 10px;
}
.menu-2-txt {
    padding-left: 10px;
}
.menu-3-wrapper {
    padding: 0 3%;
}
.menu-3-txt {
    padding: 0 15px;
}
.menu-5-txt {
    padding: 25px;
}
.menu-6-txt {
    overflow: hidden;
    padding: 25px 20px;
}
.menu-7-txt {
    text-align: center;
    padding-top: 25px;
}
.menu-1-list li,
.menu-2-list li,
.menu-4-list li {
    margin-bottom: 40px;
}
.menu-3-list li {
    margin-bottom: 30px;
}
.menu-1-list li:last-child,
.menu-2-list li:last-child,
.menu-3-list li:last-child,
.menu-4-list li:last-child {
    margin-bottom: 0;
}
.menu-5-item,
.menu-6-item {
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 30px;
}
.menu-7-item {
    margin-bottom: 50px;
}
.bg-01 .menu-5-item,
.bg-01 .menu-6-item,
.bg-02 .menu-5-item,
.bg-02 .menu-6-item,
.bg-04 .menu-5-item,
.bg-04 .menu-6-item {
    border: 1px solid #171717;
}
.menu-3-item-data {
    position: absolute;
    padding: 5px 10px;
    top: 35px;
    right: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.menu-3-item-data h6 {
    font-size: 0.95rem;
    line-height: 1;
    margin-bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.menu-3-list li:hover .menu-3-item-data {
    background-color: #f7be27;
}
.menu-3-list li:hover .menu-3-item-data h6 {
    color: #151515;
}
.menu-title-wrapper {
    margin: 0 0 3px;
    display: table;
}
.menu-item-title {
    position: relative;
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    padding: 0 10px 0 0;
}
.menu-item-dots {
    position: relative;
    display: table-cell;
    height: 3px;
    width: 98%;
    z-index: 1;
    background-image: radial-gradient(circle closest-side, #878889 99%, transparent 100%);
    background-position: 50% 100%;
    background-size: 5px 2px;
    background-repeat: repeat-x;
}
.menu-item-price {
    display: table-cell;
    width: 1%;
    padding: 0 0 0 10px;
    white-space: nowrap;
}
.menu-item-price h5,
.menu-item-price h6,
.menu-item-title h5,
.menu-item-title h6 {
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.menu-3-title {
    text-align: center;
    margin-bottom: 60px;
}
.menu-item-desc {
    margin-top: 12px;
}
.menu-item-desc p {
    font-size: 0.975rem;
    font-weight: 400;
    margin-bottom: 3px;
}
#menu-3 .menu-item-desc p {
    font-size: 1.05rem;
    font-weight: 300;
    padding-right: 15%;
    margin-bottom: 3px;
}
.menu-5-txt h5,
.menu-6-txt h5 {
    margin-top: 5px;
    margin-bottom: 10px;
}
.menu-7-txt h6 {
    margin-bottom: 10px;
}
.menu-5-txt p {
    font-size: 1rem;
    padding-right: 20%;
    margin-bottom: 10px;
}
.menu-6-txt p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.menu-7-txt p {
    font-size: 1rem;
    margin-bottom: 15px;
}
.menu-5-price {
    position: absolute;
    top: 40px;
    right: 25px;
    display: inline-block;
    padding: 7px 12px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.menu-6-price {
    display: inline-block;
    padding: 7px 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.menu-7-price {
    display: inline-block;
    padding: 7px 12px 10px;
    margin-top: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.menu-5-price h5,
.menu-6-price h5,
.menu-7-price h5 {
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 1px;
}
.menu-3-img {
    margin-top: 65px;
    padding: 0 3%;
}
.menu-4-img {
    text-align: center;
    padding-right: 30px;
    margin-bottom: 40px;
}
.menu-5-img,
.menu-5-img img,
.menu-6-img,
.menu-6-img img {
    overflow: hidden;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}
.menu-7-img {
    border: 1px solid #e5e5e5;
    padding: 25px 20px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.menu-5-item:hover img,
.menu-6-item:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.product-txt ul.txt-list li p {
    margin-bottom: 3px;
}
html {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}
body {
    /* font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    color: #283034;
    font-weight: 300;
}
.mb-100 {
    margin-bottom: 100px;
}
.mb-95 {
    margin-bottom: 95px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-85 {
    margin-bottom: 85px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-75 {
    margin-bottom: 75px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-55 {
    margin-bottom: 55px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-0 {
    margin-bottom: 0;
}
.rel {
    position: relative !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-grey {
    background-color: #eaeaea;
}
.bg-coffee {
    background-color: #642f21;
}
.bg-red {
    background-color: #e3000e;
}
.bg-wine {
    background-color: #831619;
}
.bg-01,
.bg-02,
.bg-03,
.bg-04,
.bg-05,
.bg-06 {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll !important;
}
.bg-01 {
    background-image: url(../images/bg-01.jpg);
    background-attachment: fixed !important;
}
.bg-02 {
    background-image: url(../images/bg-02.jpg);
    background-attachment: fixed !important;
}
.bg-03 {
    background-image: url(../images/bg-03.jpg);
}
.bg-04 {
    background-image: url(../images/bg-04.jpg);
}
.bg-05 {
    background-image: url(../images/bg-05.jpg);
    background-attachment: fixed !important;
}
.bg-06 {
    background-image: url(../images/bg-06.jpg);
    background-attachment: fixed !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Oswald, sans-serif;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
}
h6.h6-xs {
    font-size: 1.0625rem;
}
h6.h6-sm {
    font-size: 1.125rem;
}
h6.h6-md {
    font-size: 1.15625rem;
}
h6.h6-lg {
    font-size: 1.1875rem;
}
h5.h5-xs {
    font-size: 1.25rem;
}
h5.h5-sm {
    font-size: 1.375rem;
}
h5.h5-md {
    font-size: 1.5rem;
}
h5.h5-lg {
    font-size: 1.625rem;
}
h4.h4-xs {
    font-size: 1.875rem;
}
h4.h4-sm {
    font-size: 2rem;
}
h4.h4-md {
    font-size: 2.125rem;
}
h4.h4-lg {
    font-size: 2.25rem;
}
h3.h3-xs {
    font-size: 2.5rem;
}
h3.h3-sm {
    font-size: 2.625rem;
}
h3.h3-md {
    font-size: 2.75rem;
}
h3.h3-lg {
    font-size: 2.875rem;
}
h2.h2-xs {
    font-size: 3.125rem;
}
h2.h2-sm {
    font-size: 3.25rem;
}
h2.h2-md {
    font-size: 3.375rem;
}
h2.h2-lg {
    font-size: 3.5rem;
}
p.p-sm {
    font-size: 1rem;
}
p {
    font-size: 1.0625rem;
}
p.p-md {
    font-size: 1.125rem;
}
p.p-lg {
    font-size: 1.1875rem;
}
a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
a:hover {
    color: #333;
    text-decoration: none;
}
a:focus {
    outline: 0;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.txt-list {
    list-style: disc;
    margin-left: 15px;
}
.txt-list li p {
    overflow: hidden;
    margin-bottom: 10px;
}
.txt-300 {
    font-weight: 300;
}
.txt-400 {
    font-weight: 400;
}
.txt-500 {
    font-weight: 500;
}
.txt-700 {
    font-weight: 700;
}
.txt-900 {
    font-weight: 900;
}
.white-color,
.white-color a,
.white-color h2,
.white-color h3,
.white-color h4,
.white-color h5,
.white-color h6,
.white-color li,
.white-color p {
    color: #fff;
}
.grey-color,
.grey-color a,
.grey-color h2,
.grey-color h3,
.grey-color h4,
.grey-color h5,
.grey-color h6,
.grey-color li,
.grey-color p,
.white-color .grey-color {
    color: #757575;
}
.coffee-color,
.coffee-color a,
.coffee-color h2,
.coffee-color h3,
.coffee-color h4,
.coffee-color h5,
.coffee-color h6,
.coffee-color li,
.coffee-color p,
.white-color .coffee-color {
    color: #642f21;
}
.green-color,
.green-color a,
.green-color h2,
.green-color h3,
.green-color h4,
.green-color h5,
.green-color h6,
.green-color li,
.green-color p,
.white-color .green-color {
    color: #94ad10;
}
.red-color,
.red-color a,
.red-color h2,
.red-color h3,
.red-color h4,
.red-color h5,
.red-color h6,
.red-color li,
.red-color p,
.white-color .red-color {
    color: #e3000e;
}
.white-color .wine-color,
.wine-color,
.wine-color a,
.wine-color h2,
.wine-color h3,
.wine-color h4,
.wine-color h5,
.wine-color h6,
.wine-color li,
.wine-color p {
    color: #831619;
}
@keyframes  cssload-invert {
    100% {
        transform: rotate(180deg);
    }
}
@-o-keyframes cssload-invert {
    100% {
        -o-transform: rotate(180deg);
    }
}
@-ms-keyframes cssload-invert {
    100% {
        -ms-transform: rotate(180deg);
    }
}
@-webkit-keyframes cssload-invert {
    100% {
        -webkit-transform: rotate(180deg);
    }
}
@-moz-keyframes cssload-invert {
    100% {
        -moz-transform: rotate(180deg);
    }
}
@keyframes  cssload-ball1 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball1 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball1 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball1 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball1 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(50%, 50%) scale(0.6, 0.6);
    }
}
@keyframes  cssload-ball2 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball2 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball2 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball2 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball2 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(50%, -50%) scale(0.6, 0.6);
    }
}
@keyframes  cssload-ball3 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball3 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball3 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball3 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball3 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(-50%, 25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(-50%, 50%) scale(0.6, 0.6);
    }
}
@keyframes  cssload-ball4 {
    12% {
        transform: none;
    }
    26% {
        transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-o-keyframes cssload-ball4 {
    12% {
        -o-transform: none;
    }
    26% {
        -o-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -o-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -o-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -o-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -o-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-ms-keyframes cssload-ball4 {
    12% {
        -ms-transform: none;
    }
    26% {
        -ms-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -ms-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -ms-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -ms-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -ms-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-webkit-keyframes cssload-ball4 {
    12% {
        -webkit-transform: none;
    }
    26% {
        -webkit-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -webkit-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -webkit-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
@-moz-keyframes cssload-ball4 {
    12% {
        -moz-transform: none;
    }
    26% {
        -moz-transform: translateX(-25%) scale(1, 0.8);
    }
    40% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    60% {
        -moz-transform: translateX(-50%) scale(0.8, 0.8);
    }
    74% {
        -moz-transform: translate(-50%, -25%) scale(0.6, 0.8);
    }
    88% {
        -moz-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
    100% {
        -moz-transform: translate(-50%, -50%) scale(0.6, 0.6);
    }
}
#div-01,
#div-02,
#div-03,
#div-04,
#div-05 {
    width: 100%;
    height: 600px;
}
#div-01 {
    background-image: url(../images/divider-01.jpg);
}
#div-02 {
    background-image: url(../images/divider-02.jpg);
}
#div-03 {
    background-image: url(../images/divider-03.jpg);
}
#div-04 {
    background-image: url(../images/divider-04.jpg);
}
#div-05 {
    background-image: url(../images/divider-05.jpg);
}
#menu-2 {
    background-image: url(../images/menu-2.jpg);
}
#menu-6 .col-lg-3 {
    padding-left: 8px;
    padding-right: 8px;
}
.menu-1-txt {
    padding: 0 10px;
}
.menu-2-txt {
    padding-left: 10px;
}
.menu-3-wrapper {
    padding: 0 3%;
}
.menu-3-txt {
    padding: 0 15px;
}
.menu-5-txt {
    padding: 25px;
}
.menu-6-txt {
    overflow: hidden;
    padding: 25px 20px;
}
.menu-7-txt {
    text-align: center;
    padding-top: 25px;
}
.menu-1-list li,
.menu-2-list li,
.menu-4-list li {
    margin-bottom: 40px;
}
.menu-3-list li {
    margin-bottom: 30px;
}
.menu-1-list li:last-child,
.menu-2-list li:last-child,
.menu-3-list li:last-child,
.menu-4-list li:last-child {
    margin-bottom: 0;
}
.menu-5-item,
.menu-6-item {
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 30px;
}
.menu-7-item {
    margin-bottom: 50px;
}
.bg-01 .menu-5-item,
.bg-01 .menu-6-item,
.bg-02 .menu-5-item,
.bg-02 .menu-6-item,
.bg-04 .menu-5-item,
.bg-04 .menu-6-item {
    border: 1px solid #171717;
}
.menu-3-item-data {
    position: absolute;
    padding: 5px 10px;
    top: 35px;
    right: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.menu-3-item-data h6 {
    font-size: 0.95rem;
    line-height: 1;
    margin-bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.menu-3-list li:hover .menu-3-item-data {
    background-color: #f7be27;
}
.menu-3-list li:hover .menu-3-item-data h6 {
    color: #151515;
}
.menu-title-wrapper {
    margin: 0 0 3px;
    display: table;
}
.menu-item-title {
    position: relative;
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    padding: 0 10px 0 0;
}
.menu-item-dots {
    position: relative;
    display: table-cell;
    height: 3px;
    width: 98%;
    z-index: 1;
    background-image: radial-gradient(circle closest-side, #878889 99%, transparent 100%);
    background-position: 50% 100%;
    background-size: 5px 2px;
    background-repeat: repeat-x;
}
.menu-item-price {
    display: table-cell;
    width: 1%;
    padding: 0 0 0 10px;
    white-space: nowrap;
}
.menu-item-price h5,
.menu-item-price h6,
.menu-item-title h5,
.menu-item-title h6 {
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.menu-3-title {
    text-align: center;
    margin-bottom: 60px;
}
.menu-item-desc {
    margin-top: 12px;
}
.menu-item-desc p {
    font-size: 0.975rem;
    font-weight: 400;
    margin-bottom: 3px;
}
#menu-3 .menu-item-desc p {
    font-size: 1.05rem;
    font-weight: 300;
    padding-right: 15%;
    margin-bottom: 3px;
}
.menu-5-txt h5,
.menu-6-txt h5 {
    margin-top: 5px;
    margin-bottom: 10px;
}
.menu-7-txt h6 {
    margin-bottom: 10px;
}
.menu-5-txt p {
    font-size: 1rem;
    padding-right: 20%;
    margin-bottom: 10px;
}
.menu-6-txt p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.menu-7-txt p {
    font-size: 1rem;
    margin-bottom: 15px;
}
.menu-5-price {
    position: absolute;
    top: 40px;
    right: 25px;
    display: inline-block;
    padding: 7px 12px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.menu-6-price {
    display: inline-block;
    padding: 7px 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.menu-7-price {
    display: inline-block;
    padding: 7px 12px 10px;
    margin-top: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.menu-5-price h5,
.menu-6-price h5,
.menu-7-price h5 {
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 1px;
}
.menu-3-img {
    margin-top: 65px;
    padding: 0 3%;
}
.menu-4-img {
    text-align: center;
    padding-right: 30px;
    margin-bottom: 40px;
}
.menu-5-img,
.menu-5-img img,
.menu-6-img,
.menu-6-img img {
    overflow: hidden;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}
.menu-7-img {
    border: 1px solid #e5e5e5;
    padding: 25px 20px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.menu-5-item:hover img,
.menu-6-item:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.product-txt ul.txt-list li p {
    margin-bottom: 3px;
}@media (min-width:992px) and (max-width:1199.95px){h6.h6-xs{font-size:.95rem}h6.h6-sm{font-size:1rem}h6.h6-md{font-size:1.028rem}h6.h6-lg{font-size:1.056rem}h5.h5-xs{font-size:1.11rem}h5.h5-sm{font-size:1.22rem}h5.h5-md{font-size:1.33rem}h5.h5-lg{font-size:1.44rem}h4.h4-xs{font-size:1.67rem}h4.h4-sm{font-size:1.78rem}h4.h4-md{font-size:1.89rem}h4.h4-lg{font-size:2rem}h3.h3-xs{font-size:2.2rem}h3.h3-sm{font-size:2.33rem}h3.h3-md{font-size:2.44rem}h3.h3-lg{font-size:2.56rem}h2.h2-xs{font-size:2.78rem}h2.h2-sm{font-size:2.89rem}h2.h2-md{font-size:3rem}h2.h2-lg{font-size:3.11rem}p.p-sm{font-size:.95rem}p{font-size:1rem}p.p-md{font-size:1.025rem}p.p-lg{font-size:1.08rem}@-webkit-keyframes stickyTransition{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes  stickyTransition{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}#div-01,#div-02,#div-03,#div-04,#div-05{height:420px}#menu-7 .col-lg-3,#menu-8 .col-lg-3{padding-left:8px;padding-right:8px}.menu-3-wrapper{padding:0}.menu-1-txt,.menu-3-txt{padding:0 5px}.menu-2-txt{padding-left:5px}.menu-5-txt{padding:25px 16px 30px}.menu-6-txt{padding:25px 13px 20px}.menu-title-wrapper h5{font-size:1.3rem}.menu-3-item-data h6{font-size:.915rem}#menu-3 .menu-item-desc p{font-size:1rem}.menu-5-txt p{padding-right:5%;margin-bottom:10px}.menu-6-txt p{font-size:.875rem;margin-bottom:15px}.menu-7-txt p{font-size:.95rem}.menu-5-price{top:35px;right:18px}.menu-3-img{padding:0 5px}}@media (min-width:768px) and (max-width:991.95px){.bg-01,.bg-02,.bg-03,.bg-04,.bg-05{background-attachment:scroll!important}h6.h6-xs{font-size:1rem}h6.h6-sm{font-size:1.05rem}h6.h6-md{font-size:1.1rem}h6.h6-lg{font-size:1.15rem}h5.h5-xs{font-size:1.2rem}h5.h5-sm{font-size:1.3rem}h5.h5-md{font-size:1.35rem}h5.h5-lg{font-size:1.4rem}h4.h4-xs{font-size:1.6rem}h4.h4-sm{font-size:1.7rem}h4.h4-md{font-size:1.6rem}h4.h4-lg{font-size:1.7rem}h3.h3-xs{font-size:1.9rem}h3.h3-sm{font-size:2rem}h3.h3-md{font-size:2.1rem}h3.h3-lg{font-size:2.2rem}h2.h2-xs{font-size:2.4rem}h2.h2-sm{font-size:2.5rem}h2.h2-md{font-size:2.6rem}h2.h2-lg{font-size:2.7rem}p.p-sm{font-size:.95rem}p{font-size:1rem}p.p-md{font-size:1.025rem}p.p-lg{font-size:1.08rem}@-webkit-keyframes stickyTransition{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes  stickyTransition{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}#div-01,#div-02,#div-03,#div-04,#div-05{height:390px}#menu-4{padding-bottom:20px}#menu-6 .col-lg-3{padding-left:15px;padding-right:15px}.menu-3-wrapper{padding:0}.menu-1-txt,.menu-2-txt{padding-left:0}.menu-3-txt{padding:0}.menu-1-list li.resp-lst:last-child{margin-bottom:40px}.menu-3-list li.resp-lst:last-child{margin-bottom:30px}.menu-item-title h5,.menu-item-title h6{font-size:1.5rem}.menu-item-price h5,.menu-item-price h6{font-size:1.5rem}.menu-3-item-data{top:38px}.menu-3-item-data h6{font-size:.95rem}.menu-item-desc p{font-size:1.025rem;margin-bottom:5px}#menu-3 .menu-item-desc p{font-size:1.025rem;padding-right:10%}.menu-5-txt{padding:25px 20px 35px}.menu-5-txt h5,.menu-6-txt h5,.menu-7-txt h5{font-size:1.5rem;margin-top:5px;margin-bottom:10px}.menu-5-price h5,.menu-6-price h5,.menu-7-price h5{font-size:1.35rem;line-height:1;margin-top:0;margin-bottom:1px}.menu-5-txt p{font-size:1rem;padding-right:0;margin-bottom:10px}.menu-6-txt p,.menu-item-desc p{font-size:1rem}.menu-7-txt p{font-size:1rem;padding:0 8%}.menu-3-img{padding:0}.menu-4-img{padding-right:0}.product-description{margin-top:50px}.product-price h5{font-size:1.5rem}}@media (max-width:767px){.bg-01,.bg-02,.bg-03,.bg-04,.bg-05{background-attachment:scroll!important}@-webkit-keyframes stickyTransition{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes  stickyTransition{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.menu-1-list li.resp-lst:last-child,.menu-3-list li.resp-lst:last-child{margin-bottom:40px}.product-description{margin-top:50px}}@media (min-width:480px) and (max-width:767.95px){h6.h6-xs{font-size:1rem}h6.h6-sm{font-size:1.05rem}h6.h6-md{font-size:1.1rem}h6.h6-lg{font-size:1.15rem}h5.h5-xs{font-size:1.4rem}h5.h5-sm{font-size:1.5rem}h5.h5-md{font-size:1.5rem}h5.h5-lg{font-size:1.6rem}h4.h4-xs{font-size:1.6rem}h4.h4-sm{font-size:1.6rem}h4.h4-md{font-size:1.65rem}h4.h4-lg{font-size:1.7rem}h3.h3-xs{font-size:1.9rem}h3.h3-sm{font-size:1.95rem}h3.h3-md{font-size:2rem}h3.h3-lg{font-size:2.05rem}h2.h2-xs{font-size:2.15rem}h2.h2-sm{font-size:2.25rem}h2.h2-md{font-size:2.35rem}h2.h2-lg{font-size:2.45rem}p.p-sm{font-size:1rem}p{font-size:1.0625rem}p.p-md{font-size:1.093rem}p.p-lg{font-size:1.1rem}#div-01,#div-02,#div-03,#div-04,#div-05{height:350px}#menu-5 .col-lg-4,#menu-7 .col-lg-3,#menu-8 .col-lg-3{padding-left:8px;padding-right:8px}.menu-3-wrapper{padding:0}.menu-1-txt,.menu-3-txt{padding:0}.menu-2-txt{padding-left:0}.menu-item-title{margin-bottom:10px}.menu-item-title h5,.menu-item-title h6{font-size:1.5rem}.menu-item-price h5,.menu-item-price h6{font-size:1.5rem}.menu-item-desc p{font-size:1.0625rem;margin-bottom:5px}.menu-3-title{margin-bottom:50px}.menu-3-item-data{top:40px}.menu-5-txt{padding:25px 16px 50px}.menu-6-txt{padding:25px 16px}.menu-5-txt h5,.menu-6-txt h5,.menu-7-txt h5{font-size:1.5rem;margin-top:5px;margin-bottom:10px}.menu-5-price h5,.menu-6-price h5,.menu-7-price h5{font-size:1.4rem;line-height:1;margin-top:0;margin-bottom:1px}.menu-5-txt p{font-size:.95rem;padding-right:0;margin-bottom:10px}.menu-item-desc p{font-size:1.0625rem}#menu-3 .menu-item-desc p{font-size:1.0625rem;padding-right:12%}.menu-5-price{top:-20px;right:20px}.menu-3-img{padding:0;margin-top:40px}.menu-3-img.mb-60{margin-bottom:50px}.menu-4-img{display:none}}@media (min-width:414px) and (max-width:479.95px){h6.h6-xs{font-size:1rem}h6.h6-sm{font-size:1.05rem}h6.h6-md{font-size:1.1rem}h6.h6-lg{font-size:1.15rem}h5.h5-xs{font-size:1.4rem}h5.h5-sm{font-size:1.5rem}h5.h5-md{font-size:1.5rem}h5.h5-lg{font-size:1.6rem}h4.h4-xs{font-size:1.6rem}h4.h4-sm{font-size:1.6rem}h4.h4-md{font-size:1.6rem}h4.h4-lg{font-size:1.65rem}h3.h3-xs{font-size:1.75rem}h3.h3-sm{font-size:1.8rem}h3.h3-md{font-size:1.9rem}h3.h3-lg{font-size:2rem}h2.h2-xs{font-size:2.1rem}h2.h2-sm{font-size:2.2rem}h2.h2-md{font-size:2.3rem}h2.h2-lg{font-size:2.4rem}p.p-sm{font-size:1rem}p{font-size:1.0625rem}p.p-md{font-size:1.1rem}p.p-lg{font-size:1.1rem}#div-01,#div-02,#div-03,#div-04,#div-05{height:300px}#menu-6 .col-lg-3{padding-left:15px;padding-right:15px}.menu-3-wrapper{padding:0}.menu-1-item,.menu-2-item{text-align:center;padding-bottom:30px;border-bottom:1px dashed #666}.menu-3-item,.menu-4-item{text-align:center;padding-bottom:30px;border-bottom:1px dashed #ccc}.menu-1-item:last-child,.menu-2-item:last-child,.menu-3-item:last-child,.menu-4-item:last-child{padding-bottom:0;border-bottom:none}.menu-1-list li.resp-lst:last-child,.menu-2-list li.resp-lst:last-child,.menu-3-list li.resp-lst:last-child,.menu-4-list li.resp-lst:last-child{padding-bottom:30px;border-bottom:1px dashed #ccc;margin-bottom:40px}.menu-item-title{display:block;width:100%;margin-bottom:13px;padding:0}.menu-title-wrapper{margin:0;display:block}.menu-item-dots{display:none}.menu-item-price{display:inline-block;width:auto;padding:0;margin-bottom:0;margin-right:10px}.menu-3-title{margin-bottom:50px}.menu-item-title h5,.menu-item-title h6{font-size:1.7rem}.menu-item-price h5,.menu-item-price h6{font-size:1.7rem}.menu-item-desc p{font-size:1.0625rem;padding:0 10%;margin-bottom:10px}#menu-3 .menu-item-desc p{font-size:1.0625rem;padding:0}#menu-4 .menu-item-desc p{padding:0 5%}.menu-3-item-data{position:relative;display:inline-block;top:0;right:0;margin-top:0;padding:8px 18px}.menu-3-item-data h6{font-size:1.25rem}.menu-1-txt,.menu-3-txt{padding:0}.menu-2-txt{padding-left:0}.menu-5-txt p{font-size:1.0625rem;padding-right:12%;margin-bottom:10px}.menu-6-txt h5,.menu-7-txt h5{font-size:1.7rem}.menu-6-txt p{font-size:1.0625rem}.menu-7-txt p{font-size:1.0625rem;padding:0 10%}.menu-6-price h5,.menu-7-price h5{font-size:1.7rem}.menu-3-img{padding:0;margin-top:40px}.menu-3-img.mb-60{margin-bottom:50px}.menu-4-img{display:none}}@media (min-width:321px) and (max-width:413.95px){h6.h6-xs{font-size:1.1rem}h6.h6-sm{font-size:1.15rem}h6.h6-md{font-size:1.2rem}h6.h6-lg{font-size:1.2rem}h5.h5-xs{font-size:1.4rem}h5.h5-sm{font-size:1.5rem}h5.h5-md{font-size:1.5rem}h5.h5-lg{font-size:1.6rem}h4.h4-xs{font-size:1.6rem}h4.h4-sm{font-size:1.6rem}h4.h4-md{font-size:1.6rem}h4.h4-lg{font-size:1.65rem}h3.h3-xs{font-size:1.7rem}h3.h3-sm{font-size:1.75rem}h3.h3-md{font-size:1.8rem}h3.h3-lg{font-size:1.85rem}h2.h2-xs{font-size:1.9rem}h2.h2-sm{font-size:2rem}h2.h2-md{font-size:2.1rem}h2.h2-lg{font-size:2.2rem}p.p-sm{font-size:1rem}p{font-size:1.0625rem}p.p-md{font-size:1.1rem}p.p-lg{font-size:1.1rem}#div-01,#div-02,#div-03,#div-04,#div-05{height:280px}#menu-6 .col-lg-3{padding-left:15px;padding-right:15px}.menu-3-wrapper{padding:0}.menu-1-item,.menu-2-item{text-align:center;padding-bottom:30px;border-bottom:1px dashed #666}.menu-3-item,.menu-4-item{text-align:center;padding-bottom:30px;border-bottom:1px dashed #ccc}.menu-1-item:last-child,.menu-2-item:last-child,.menu-3-item:last-child,.menu-4-item:last-child{padding-bottom:0;border-bottom:none}.menu-1-list li.resp-lst:last-child,.menu-2-list li.resp-lst:last-child,.menu-3-list li.resp-lst:last-child,.menu-4-list li.resp-lst:last-child{padding-bottom:30px;border-bottom:1px dashed #ccc;margin-bottom:40px}.menu-item-title{display:block;width:100%;margin-bottom:8px;padding:0}.menu-title-wrapper{margin:0;display:block}.menu-item-dots{display:none}.menu-item-price{display:inline-block;width:auto;padding:0;margin-bottom:0;margin-right:10px}.menu-3-title{margin-bottom:50px}.menu-3-item-data{position:relative;display:inline-block;top:0;right:0;margin-top:8px;padding:8px 18px}.menu-3-item-data h6{font-size:1.25rem}.menu-item-desc p{font-size:1.0625rem;padding:0 5%;margin-bottom:10px}#menu-3 .menu-item-desc p{font-size:1.0625rem;padding:0}.menu-1-txt,.menu-3-txt{padding:0}.menu-2-txt{padding-left:0}.menu-5-txt,.menu-6-txt{padding:25px 16px}.menu-5-txt p{font-size:1.0625rem;padding-right:12%;margin-bottom:10px}.menu-6-txt h5,.menu-7-txt h5{font-size:1.7rem}.menu-6-txt p{font-size:1.0625rem}.menu-7-txt p{font-size:1.0625rem;padding:0 10%}.menu-6-price h5,.menu-7-price h5{font-size:1.7rem}.menu-3-img{padding:0;margin-top:40px}.menu-3-img.mb-60{margin-bottom:50px}.menu-4-img{display:none}}@media (max-width:320.95px){h6.h6-xs{font-size:1rem}h6.h6-sm{font-size:1.1rem}h6.h6-md{font-size:1.1rem}h6.h6-lg{font-size:1.15rem}h5.h5-xs{font-size:1.3rem}h5.h5-sm{font-size:1.4rem}h5.h5-md{font-size:1.4rem}h5.h5-lg{font-size:1.5rem}h4.h4-xs{font-size:1.4rem}h4.h4-sm{font-size:1.4rem}h4.h4-md{font-size:1.45rem}h4.h4-lg{font-size:1.45rem}h3.h3-xs{font-size:1.5rem}h3.h3-sm{font-size:1.55rem}h3.h3-md{font-size:1.6rem}h3.h3-lg{font-size:1.65rem}h2.h2-xs{font-size:1.7rem}h2.h2-sm{font-size:1.8rem}h2.h2-md{font-size:1.9rem}h2.h2-lg{font-size:2rem}p.p-sm{font-size:1rem}p{font-size:1rem}p.p-md{font-size:1.05rem}p.p-lg{font-size:1.05rem}#div-01,#div-02,#div-03,#div-04,#div-05{height:250px}#menu-6 .col-lg-3{padding-left:15px;padding-right:15px}.menu-3-wrapper{padding:0}.menu-1-item,.menu-2-item{text-align:center;padding-bottom:30px;border-bottom:1px dashed #666}.menu-3-item,.menu-4-item{text-align:center;padding-bottom:30px;border-bottom:1px dashed #ccc}.menu-1-item:last-child,.menu-2-item:last-child,.menu-3-item:last-child,.menu-4-item:last-child{padding-bottom:0;border-bottom:none}.menu-1-list li.resp-lst:last-child,.menu-2-list li.resp-lst:last-child,.menu-3-list li.resp-lst:last-child,.menu-4-list li.resp-lst:last-child{padding-bottom:30px;border-bottom:1px dashed #ccc;margin-bottom:40px}.menu-item-title{display:block;width:100%;margin-bottom:10px;padding:0}.menu-title-wrapper{margin:0;display:block}.menu-item-dots{display:none}.menu-item-price{display:inline-block;width:auto;padding:0;margin-bottom:0;margin-right:10px}.menu-3-title{margin-bottom:50px}.menu-3-item-data{position:relative;display:inline-block;top:0;right:0;margin-top:8px;padding:8px 18px}.menu-3-item-data h6{font-size:1.25rem}.menu-item-desc p{font-size:1.0625rem;padding:0;margin-bottom:10px}#menu-3 .menu-item-desc p{font-size:1.0625rem;padding:0}.menu-1-txt,.menu-3-txt{padding:0}.menu-2-txt{padding-left:0}.menu-5-txt,.menu-6-txt{padding:25px 16px}.menu-5-txt p{font-size:1.0625rem;padding-right:12%;margin-bottom:10px}.menu-6-txt h5,.menu-7-txt h5{font-size:1.7rem}.menu-6-txt p{font-size:1.0625rem}.menu-7-txt p{font-size:1.0625rem;padding:0 5%}.menu-6-price h5,.menu-7-price h5{font-size:1.7rem}.menu-3-img{padding:0;margin-top:40px}.menu-3-img.mb-60{margin-bottom:50px}.menu-4-img{display:none}}
#menu-3 .menu-item-desc p {
    font-size: 1.05rem;
    font-weight: 300;
    padding-right: 15%;
    margin-bottom: 3px;
}

.discover_tab .nav-tabs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    margin-bottom: 60px;

    top: 29%;
    left: 50%;
    z-index: 9999;
    position: fixed;
    transform: translateX(-50%);
}

/* .view-order-btn {
    left: 50%;
    top: 119px;
    color: #fff;
    z-index: 9999;
    position: fixed;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 6px;
    padding: 10px 40px;
    border: 1px solid #fff;
    background-color: #fe734b;
    transform: translateX(-50%);
    box-shadow: 0 0 4px var(--primary-color-hover);
}

.view-order-btn:hover {
  color: #fff;
} */

.view-order-btn {
  left: 50%;
  bottom: 19px;
  color: #fff;
  z-index: 9999;
  position: fixed;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 6px;
  padding: 10px 40px;
  border: 3px solid #fff;
  background-color: #b8860b;
  transform: translateX(-50%);
  box-shadow: 0 0 4px var(--primary-color-hover);
}

.view-order-btn:hover {
  color: #fff;
}

.discover_tab .nav-tabs li:first-child a {
    padding-left: 56px;
}

.discover_tab .nav-tabs li a.active {
    color: #ec331f;
}

.discover_tab .nav-tabs li a {
    background: #fff;
    border: none;
    border-radius: 0px;
    font-size: 20px;
    font-family: "Lora", serif;
    color: #0e2a4e;
    line-height: 50px;
    padding: 0px 28px;
    position: relative;
}