/********** Template CSS **********/
:root {
  --primary: #fcd11c;
  --light: #f7f7f7;
  --dark: #000;
  --green: #01582d;
  --white: #fff;
}
body {
	background: var(--white);
}
.text-primary {
  color: var(--primary) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-light {
  background-color: var(--light) !important;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}
.btn-primary:hover {
  color: var(--white);
  background-color: var(--green);
  border-color: var(--green);
}
.btn-secondary {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.btn-secondary:hover {
  color: var(--dark);
  background-color: var(--primary);
  border-color: var(--primary);
}
.navbar-dark .navbar-toggler {
  color: var(--primary);
  border-color: var(--primary);
}
.ff-secondary {
  font-family: "Pacifico", cursive;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}
[style*="background-image"] {
  background-size: cover;
  background-repeat: no-repeat;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

/* .btn.btn-primary,
.btn.btn-secondary {
  color: var(--dark);
} */

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Hero Small ***/
.hero-small__section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-small__section .hero-small__text h1 {
  color: var(--white);
}

.hero-small__section .hero-small__text {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-small__section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  background-color: var(--dark);
  z-index: 1;
}

/* Menu Archive Page */

.archive-menu__category-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.archive-menu__posts {
  order: 2;
}

.archive-menu__categories {
  order: 1;
}

.archive-menu__category-wrapper {
  display: none;
}
.archive-menu__custom-dropdown {
  display: block;
}

.archive-menu__custom-dropdown.sticky-active {
  position: fixed;
  top: 130px;
  left: 0;
}

/*** Navbar ***/
#nav-menu {
  align-items: flex-start;
}

.navbar-dark {
  width: 100%;
}

.navbar-dark .navbar-nav .menu-item:not(.btn-primary) a {
  display: block;
  position: relative;
  font-size: 15px;
  color: var(--light) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .menu-item a {
  padding: 20px 0;
}

.navbar-dark .navbar-nav .menu-item a:hover,
.navbar-dark .navbar-nav .menu-item.current-menu-item a {
  color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
  max-height: 120px;
  transition: 0.5s;
  margin: 20px 0 0;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 60px;
}
@media (min-width: 992px){
	.sticky-top.navbar-dark .navbar-brand img{
		margin: 10px 0;
		max-height: 80px;
	}
}
.navbar-dark .navbar-nav .menu-item.btn-primary {
  margin-left: 0;
}

.navbar-dark .navbar-nav .menu-item.btn-primary a {
  color: var(--dark);
}

.navbar-dark .navbar-nav .menu-item.btn-primary:hover a,
.navbar-dark .navbar-nav .menu-item.btn-primary a:hover {
  color: var(--white) !important;
}

.sticky-top.navbar-dark {
  position: fixed;
  background: var(--dark) !important;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .menu-item:not(.btn-primary) {
    width: 100%;
  }

  .navbar-dark .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid var(--primary);
  }

  .navbar-dark .navbar-nav .menu-item a,
  .sticky-top.navbar-dark .navbar-nav .menu-item a {
    padding: 10px 0;
    margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
    max-height: 90px;
    margin: 0;
  }
}

@media (min-width: 991.98px) {
  #nav-menu {
    align-items: center;
  }
  .navbar-dark .navbar-nav .menu-item:not(.btn-primary) a {
    margin-left: 25px;
    padding: 35px 0;
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: transparent !important;
  }
  .navbar-dark .navbar-nav .menu-item.btn-primary {
    margin-left: 20px;
  }

  .hero-small__section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .footer-menu #main-nav-list {
    justify-content: flex-end !important;
  }
  .archive-menu__posts {
    order: 1;
  }
  .archive-menu__categories {
    order: 2;
  }
  .archive-menu__category-wrapper {
    display: block;
  }
  .archive-menu__custom-dropdown {
    display: none;
  }
}

/*** Hero Header ***/
/* .hero-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
} */

.hero-header img {
  animation: imgRotate 50s linear infinite;
  border-radius: 100%;
  border: 10px solid var(--primary);
}

@keyframes imgRotate {
  100% {
    transform: rotate(360deg);
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Food Menu ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

.nav-pills .nav-item:first-child a {
  margin-left: 0 !important;
}

.nav-pills .nav-item:last-child a {
  margin-right: 0 !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
  background: rgba(0, 0, 0, 0.8);
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
.picture-section {
  position: relative;
}
.picture-section .img-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.picture-section .img-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--dark);
  opacity: 0.5;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.picture-section .img-wrapper img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  height: 100%;
  object-fit: cover;
}
.picture-section .img-wrapper:hover img {
  transform: scale(1.1);
}
.picture-section .img-wrapper:hover:before {
  opacity: 0;
}
/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  height: calc(100% - 20px);
  transition: 0.5s;
  border-bottom: 5px solid transparent;
  padding-bottom: 40px;
}
.team-item .rounded-circle {
  width: 300px;
  height: 300px;
  margin: 1.5rem auto !important;
}
.team-item img {
  transition: 0.5s;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item:hover {
  height: 100%;
  border-color: var(--primary);
}

.team-item .btn {
  border-radius: 38px 38px 0 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}
.testimonial-carousel .owl-item .testimonial-item .img-slider {
  width: 100%;
  height: 450px;
  margin-bottom: 30px;
}
.testimonial-carousel .owl-item .testimonial-item .img-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-carousel .owl-item .testimonial-item p,
.testimonial-carousel .owl-item .testimonial-item h4 {
  padding: 0 20px;
  text-align: center;
}
/* .testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: var(--light) !important;
} */

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer-menu #main-nav-list {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu #main-nav-list .menu-item {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1200px) {
	.footer .footer-menu #main-nav-list .menu-item {
		margin-right: 15px;
		padding-right: 15px;
	}
}
.footer .footer-menu #main-nav-list .menu-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.google-map iframe {
  display: block;
  width: 100%;
}
.menu-home img {
  max-width: 80px;
  height: 80px;
  object-fit: cover;
}
.archive-menu{
	background-color: var(--light);
	padding: 48px 0;
}
.archive-menu__food-item-wrapper {
	background: #fff;
	padding: 20px;
	margin: 0 0 40px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.archive-menu__category-name-head {
  background: #fcd11c;
  padding: 10px 20px;
  color: #fff;
  margin: -20px -20px 20px;
}
.archive-menu__category-name-head h2 {
  color: #000;
  margin:0; 
}
.archive-menu__category-wrapper {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
	max-width: 250px;
	width: 100%;
	margin: 0 auto;
	border-width: 10px 0;
	border-style: solid;
	border-color: var(--primary);
}
.archive-menu__category a {
  display: block;
  padding: 5px 10px;
  color: var(--green);
  font-size: 18px;
}
.archive-menu__category a.active,
.archive-menu__category a:hover {
  background: var(--green);
  color: #fff;
}
.archive-menu__food-item-box {
	margin-bottom: 20px;
}
.archive-menu__food-item-head {
	display: flex;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid #dee2e6 ;
	justify-content: space-between;
	align-items: center;
}
.archive-menu__food-item-head h5 {
	margin: 0;
}
.archive-menu__food-item-price span{
	color: var(--primary);
	font-size: 20px;
	font-weight: bold;
}
@media (min-width: 992px) {
	.archive-menu {
		padding: 96px 0;
	}
}
.archive-menu__custom-dropdown {
  background: #fff;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  font-weight: bold;
  font-size: 18px;
}
.archive-menu__dropdown-head {
  padding: 10px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid var(--light);
}
.archive-menu__dropdown-list {
	display: none;
	padding: 0;
	margin: 0;
}
.archive-menu__dropdown-list li {
	list-style: none;
	cursor: pointer;
	padding: 5px 10px;
}
.archive-menu__dropdown-head:before {
	content: "\f229";
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.archive-menu__dropdown-head.active:before{
	content: "\f235";
}

/* Form Container */
.wpcf7-form {
    background-color: #fcd11c;
    padding: 30px;
    border-radius: 8px;
	margin: auto;
	max-width: 600px;
}

/* Form Text */
.wpcf7-form label,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
    color: #000;
}

/* Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #333;
}
 /* .wpcf7-spinner {
      display: none !important;
      visibility: hidden !important;
} */
.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3232;
}

.wpcf7-form .wpcf7-response-output {
  border-color: #000 !important;
  color: #000;
  margin: 20px 0 !important;
}

.section-contact-info.contact-form__section{
  position: relative;
}
.section-contact-info.contact-form__section .background-overlay{
  content: "";
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--dark);
  opacity: 0.5;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.section-contact-info.contact-form__section .contact-form__wrapper{
  position: relative;
  z-index: 2;
}
.section-two-columns-content.contact-form__section .contact-form__left-col-wrapper .contact-form__left-content {
  height: 100%;
}
.section-two-columns-content.contact-form__section .contact-form__left-col-wrapper .contact-form__left-content p{
  margin:0;
  height: 100%;
}
.section-two-columns-content.contact-form__section .contact-form__left-col-wrapper .contact-form__left-content iframe  {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.specail-head {
  padding: 20px 9999px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  margin: 80px -9999px;
}