:root {
  --tastebud-font: "Bricolage Grotesque", sans-serif;

  --tastebud-font-two: "Chakra Petch", sans-serif;
  --tastebud-font-color: #333;
  --tastebud-font-color-rgb: 154, 152, 152;
  /* --tastebud-base: #bf9457; */
  --tastebud-base: #ef5744;
  --tastebud-base-rgb: #ef5744;
  --tastebud-black: #000000;
  --tastebud-black-rgb: 0, 0, 0;
  --tastebud-gray-bg: #F4F1EA;
  --tastebud-gray-bg-rgb: 244, 241, 234;
  --tastebud-white: #ffffff;
  --tastebud-white-rgb: 255, 255, 255;
  --tastebud-extra: #F5F5F5;
  --tastebud-extra-rgb: 245, 245, 245;
  --tastebud-bdr-radius: 10px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ef5744;
  border-radius: 20px;
}

.row {
  --bs-gutter-x: 24px;
}

.gutter-y-30 {
  --bs-gutter-y: 24px;
}

body {
  font-family: var(--tastebud-font);
  color: var(--tastebud-font-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--tastebud-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tastebud-font);
  color: var(--tastebud-black);
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.page-wrapper-bg {
  background-color: #F4F1EA;
}

.container {
  padding-left: 12px;
  padding-right: 12px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}

#particles-js-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}



/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--tastebud-black);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateX(-100%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.chat-popup.popup-visible {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--tastebud-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  border: none;
}

.chat-popup .chat-form .form-group .thm-btn span::after {
  background-color: var(--tastebud-white);
}

.chat-popup .chat-form .form-group .thm-btn i::after {
  background-color: var(--tastebud-white);
}

.chat-popup .chat-form .form-group .thm-btn:hover span,
.chat-popup .chat-form .form-group .thm-btn:hover i {
  color: var(--tastebud-base);
}

.chat-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 45px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--tastebud-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--tastebud-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}





/* Date Picker Css */
#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--tastebud-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--tastebud-base) none repeat scroll 0 0;
  border: 2px solid var(--tastebud-base);
  border-radius: 0;
  color: var(--tastebud-white);
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: var(--tastebud-black) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--tastebud-black) !important;
  background: var(--tastebud-black) !important;
  color: var(--tastebud-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
  background: var(--tastebud-white);
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--tastebud-white);
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--tastebud-black);
  color: var(--tastebud-white);
  border-color: var(--tastebud-black);
}

#ui-datepicker-div.ui-widget {
  font-family: var(--tastebud-font);
}








/*  Time piker Css */



















/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  transform: translateX(0%);
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--tastebud-base);
  border-color: var(--tastebud-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--tastebud-white-rgb), .50);
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  background-color: var(--tastebud-black);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: rgba(var(--tastebud-white-rgb), .70);
  border: none;
  border-radius: var(--tastebud-bdr-radius);
  outline: none;
  transition: all 500ms ease;
  background-color: rgba(var(--tastebud-white-rgb), .10);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn span::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn i::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover span,
.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover i {
  color: var(--tastebud-base);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--tastebud-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--tastebud-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--tastebud-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--tastebud-white-rgb), .10);
  border-radius: 50%;
  color: var(--tastebud-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--tastebud-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--tastebud-white);
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}



/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--tastebud-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--tastebud-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--tastebud-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--tastebud-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--tastebud-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--tastebud-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}



/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--tastebud-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--tastebud-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tastebud-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}






/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--tastebud-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--tastebud-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--tastebud-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--tastebud-black);
  text-align: center;
  font-size: 20px;
  color: var(--tastebud-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--tastebud-secondary);
  color: var(--tastebud-black);
}

.search-popup input::placeholder {
  color: var(--tastebud-black);
}


/* Section Title Css */

.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 47px;
}

.sec-title .sub-title {
  position: relative;
  display: inline-block;
  padding: 0px 60px 0px;
  margin-bottom: 8px;
}

.sec-title .sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 4px;
  background-color: var(--tastebud-base);
}

.sec-title .sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 4px;
  background-color: var(--tastebud-base);
}

.sec-title .sub-title h4 {
  color: var(--tastebud-base);
  font-size: 18px;
  line-height: 28px;
  font-family: var(--tastebud-font);
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

.sec-title h2 {
  color: var(--tastebud-black);
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 700;
}

.sec-title h2 span {
  color: var(--tastebud-base);
}





/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  background-color: transparent;
  z-index: 1;
}

.thm-btn span {
  position: relative;
  display: inline-block;
  color: var(--tastebud-white);
  font-size: 16px;
  line-height: 60px;
  font-family: var(--tastebud-font);
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 30px;
  background-color: transparent;
  padding: 0px 40px 0px;
  transition: all 200ms linear;
  transition-delay: .1s;
  z-index: 1;
}

.thm-btn i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background-color: transparent;
  color: var(--tastebud-white);
  font-size: 20px;
  line-height: 20px;
  transform: rotate(-45deg);
  transition: all 200ms linear;
  transition-delay: .1s;
  z-index: 1;
}

.thm-btn:hover span {
  color: var(--tastebud-white);
}

.thm-btn:hover i {
  color: var(--tastebud-white);
}

.thm-btn span::before,
.thm-btn i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--tastebud-base);
  z-index: -1;
}

.thm-btn span::after,
.thm-btn i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--tastebud-black);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  transform-origin: left top;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.thm-btn i::before,
.thm-btn i::after {
  content: "\f061";
  display: flex;
  align-items: center;
  justify-content: center;
}

.thm-btn:hover span::after,
.thm-btn:hover i::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background: rgba(var(--tastebud-white-rgb), .2);
  content: "";
  z-index: 2;
}

.main-menu__top {
  position: relative;
  display: block;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px 55px 5px;
  background-color: #090c0f;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--tastebud-white-rgb), .30);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 18px;
  color: var(--tastebud-white);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-white);
  line-height: 16px;
}

.main-menu__contact-list li .text p a {
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--tastebud-white);
}

.main-menu__top-welcome-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-white);
  text-transform: capitalize;
  line-height: 1em;
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__social-title {
  font-size: 16px;
  color: var(--tastebud-white);
  font-weight: 500;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--tastebud-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--tastebud-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--tastebud-base);
  border: 1px solid var(--tastebud-white);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tastebud-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 5px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 55px;
}

.main-menu__left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100000px;
  bottom: 0;
  right: 70px;
  background-color: var(--tastebud-black);
  z-index: -1;
  display: none;
}

.main-menu__logo {
  position: relative;
  display: block;
  padding: 7px 0px 7px;
  padding-right: 80px;
  z-index: 1;
}

.main-menu__logo img {
  max-width: 130px;
}

.main-menu__logo::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--tastebud-black);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  content: "";
  z-index: -1;
  display: none;
}

.main-menu__logo::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -6px;
  background-color: var(--tastebud-black);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  opacity: 0.5;
  content: "";
  z-index: -1;
  display: none;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7px 0;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--tastebud-base);
  border-radius: 50%;
  color: var(--tastebud-white);
  font-size: 20px;
  top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-content {
  position: relative;
  display: block;
  top: 3px;
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-base);
  line-height: 16px;
  text-transform: capitalize;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 10px;
}

.main-menu__call-number a {
  color: var(--tastebud-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--tastebud-base);
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7.5px 0;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--tastebud-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--tastebud-black);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--tastebud-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--tastebud-black);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  height: 45px;
  width: 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--tastebud-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 25px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--tastebud-base);
  margin-top: 6px;
  margin-bottom: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 35px;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--tastebud-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 25px;
}

.main-menu__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-menu__btn-box .thm-btn .hover-btn {
  background-color: var(--tastebud-white);
}

.main-menu__btn-box .thm-btn:hover {
  color: var(--tastebud-black);
}

.stricky-header.main-menu {
  background-color: var(--tastebud-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  margin-right: 20px;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--tastebud-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  font-family: var(--tastebud-font);
  letter-spacing: 0.01em;
}


.main-menu .main-menu__list>li:hover>a,

.stricky-header .main-menu__list>li:hover>a {
  color: var(--tastebud-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--tastebud-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
  display: none;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 52%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--tastebud-black);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--tastebud-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--tastebud-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--tastebud-bdr-radius);
  border-bottom-right-radius: var(--tastebud-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--tastebud-black-rgb), 0.10);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--tastebud-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--tastebud-font);
  text-transform: capitalize;
  padding: 16px 0px 16px;
  letter-spacing: 0.05em;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li.current>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a {
  color: #f01543;
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--tastebud-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li.current>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--tastebud-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--tastebud-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--tastebud-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--tastebud-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--tastebud-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--tastebud-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--tastebud-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--tastebud-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--tastebud-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--tastebud-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--tastebud-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--tastebud-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--tastebud-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--tastebud-white-rgb), .10);
  border-radius: 50%;
  -webkit-transition: 500ms;
  transition: 500ms;
  z-index: 1;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tastebud-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.mobile-nav__social a:hover::after {
  transform: scale(1.0);
  opacity: 1;
}

.mobile-nav__social a:hover {
  color: var(--tastebud-white);
  border: 1px solid rgba(var(--tastebud-base-rgb), 1);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--tastebud-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--tastebud-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--tastebud-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__top {
  position: relative;
  display: block;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 55px 0px;
  background-color: rgba(var(--tastebud-black-rgb), 1);
}

.main-menu-two__top-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-two__top-left:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1000000px;
  right: 99%;
  background-color: var(--tastebud-base);
  z-index: -1;
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--tastebud-base);
  padding: 10px 80px 10px;
  padding-left: 0;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  z-index: 1;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--tastebud-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--tastebud-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--tastebud-base);
  border: 1px solid var(--tastebud-white);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tastebud-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-two__social a+a {
  margin-left: 5px;
}

.main-menu-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 46px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--tastebud-white-rgb), .30);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 18px;
  color: var(--tastebud-white);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-white);
  line-height: 16px;
}

.main-menu-two__contact-list li .text p a {
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--tastebud-white);
}

.main-menu-two__login-reg {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  margin-left: 20px;
}

.main-menu-two__login-reg:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 2px;
  left: 0px;
  width: 1px;
  background-color: rgba(var(--tastebud-white-rgb), .30);
}

.main-menu-two__login-reg li {
  position: relative;
  display: block;
}

.main-menu-two__login-reg li span {
  color: var(--tastebud-white);
}

.main-menu-two__login-reg li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-white);
  line-height: 16px;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 55px;
}

.main-menu-two__left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0;
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 60px;
  width: 60px;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
}

.main-menu-two__search:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-black);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 60px;
  width: 60px;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
}

.main-menu-two__cart:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-black);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 60px;
  width: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
  font-size: 24px;
  color: var(--tastebud-white);
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-black);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-menu-two__btn-box .thm-btn .hover-btn {
  background-color: var(--tastebud-white);
}

.main-menu-two__btn-box .thm-btn:hover {
  color: var(--tastebud-black);
}

.stricky-header.main-menu-two {
  background-color: var(--tastebud-white);
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(var(--tastebud-base-rgb), .3);
  border-radius: 10px;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper .container {
  max-width: 1550px;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.main-menu-three__logo-box {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0;
}

.main-menu-three__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 60px;
  width: 60px;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
}

.main-menu-three__search:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-black);
}

.main-menu-three__cart-box {
  position: relative;
  display: block;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 60px;
  width: 60px;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
}

.main-menu-three__cart:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-black);
}

.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 60px;
  width: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
  font-size: 24px;
  color: var(--tastebud-white);
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--tastebud-base);
  background-color: var(--tastebud-white);
}

.main-menu-three__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-menu-three__btn-box .thm-btn span::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.main-menu-three__btn-box .thm-btn i::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.main-menu-three__btn-box .thm-btn:hover span,
.main-menu-three__btn-box .thm-btn:hover i {
  color: var(--tastebud-base);
}

.main-menu-three__btn-box .thm-btn .hover-btn {
  background-color: var(--tastebud-white);
}

.main-menu-three__btn-box .thm-btn:hover {
  color: var(--tastebud-black);
}

.stricky-header.main-menu-three {
  background-color: var(--tastebud-black);
}

.stricky-header .main-menu-three__wrapper-inner {
  background-color: transparent;
  padding: 0 0px 0;
}

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--tastebud-white);
}

.main-menu-three .main-menu__list>li>a::before,
.stricky-header.main-menu-three .main-menu__list>li>a::before {
  background-color: var(--tastebud-white);
}

.main-menu-three .main-menu__list>li.dropdown>a:after {
  color: var(--tastebud-white);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--tastebud-white);
}

.main-menu-three .main-menu__list>li.current>a::after,
.main-menu-three .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-three .main-menu__list>li.current>a::after,
.stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
  color: var(--tastebud-white);
}


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--tastebud-black);
}

.main-slider__bg-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.main-slider__bg-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--tastebud-black-rgb), .70);
  z-index: 1;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.main-slider .swiper-slide-active .main-slider__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider__shape-2 {
  position: absolute;
  right: 0;
  top: -210px;
  width: 730px;
  height: 500px;
  background-color: var(--tastebud-white);
  z-index: -1;
  transform: rotate(18deg);
  opacity: 0;
  -webkit-transform: perspective(400px) rotate(0deg) translateX(-100px);
  -ms-transform: perspective(400px) rotate(0deg) translateX(-100px);
  transform: perspective(400px) rotate(0deg) translateX(-100px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1800ms ease;
  -moz-transition: all 1800ms ease;
  -ms-transition: all 1800ms ease;
  -o-transition: all 1800ms ease;
  transition: all 1800ms ease;
  clip-path: polygon(47% 100%, 0 0, 100% 0);
}

.main-slider .swiper-slide-active .main-slider__shape-2 {
  opacity: .05;
  -webkit-transform: perspective(400px) rotate(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotate(0deg) translateX(0px);
  transform: perspective(400px) rotate(0deg) translateX(0px);
  -webkit-transition-delay: 2500ms;
  -moz-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  transition-delay: 2500ms;
}

.main-slider__shape-3 {
  position: absolute;
  top: 80px;
  left: 50px;
  z-index: -1;
}

.main-slider__shape-3 img {
  width: auto;
}

.main-slider__shape-4 {
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: -1;
}

.main-slider__shape-4 img {
  width: auto;
}

.main-slider__shape-5 {
  position: absolute;
  bottom: 50px;
  left: 950px;
  z-index: -1;
}

.main-slider .container {
  position: relative;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  padding-top: 200px;
  padding-bottom: 200px;
  z-index: 15;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--tastebud-white);
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  background-color: rgba(var(--tastebud-white-rgb), .20);
  padding: 12px 30px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.main-slider .swiper-slide-active .main-slider__sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider__title {
  position: relative;
  font-size: 80px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 1.1em;
  text-transform: capitalize;
  margin-top: 22px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.main-slider__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--tastebud-white-rgb));
  font-weight: 400;
  line-height: 28px;
  margin-top: 23px;
  margin-bottom: 47px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider__btn-and-call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-and-call {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__btn-box .thm-btn span::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.main-slider__btn-box .thm-btn i::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.main-slider__btn-box .thm-btn:hover span,
.main-slider__btn-box .thm-btn:hover i {
  color: var(--tastebud-base);
}

.main-slider__rating-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-slider__rating-box:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 7px;
  left: -25px;
  width: 1px;
  background-color: var(--tastebud-white);
  opacity: .50;
}

.main-slider__rating-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-slider__rating-count h3 {
  font-size: 40px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 40px !important;
  text-transform: uppercase;
}

.main-slider__satisfied-client-count-letter {
  font-size: 40px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  position: relative;
}

.main-slider__rating-content {
  position: relative;
  display: block;
}

.main-slider__rating-content-sub-title {
  font-size: 18px;
  color: var(--tastebud-white);
  line-height: 24px;
}

.main-slider__img-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -150px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.main-slider__img-one-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__img-one-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider__img-one {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider__img-one img {
  width: 100%;
}

.main-slider__video-link {
  position: absolute;
  top: 170px;
  left: 75px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 3;
}

.main-slider .swiper-slide-active .main-slider__video-link {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2200ms;
  -moz-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  transition-delay: 2200ms;
}

.main-slider__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  color: var(--tastebud-base);
  background-color: rgba(var(--tastebud-white-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider__video-icon:hover {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider__discount-box {
  position: absolute;
  top: 80px;
  right: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 170px;
  height: 170px;
  background: var(--tastebud-base);
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='170' height='170' viewBox='0 0 170 170'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='170' height='170'/%3E%3C/svg%3E");
  z-index: 5;
}

.main-slider__discount-box h2 {
  color: var(--tastebud-white);
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  margin-top: 0px;
}

.main-slider__discount-box h3 {
  color: var(--tastebud-white);
  font-size: 22px;
  line-height: 35px;
  font-weight: 500;
  text-transform: capitalize;
}

.main-slider__discount-box h4 {
  color: var(--tastebud-white);
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.main-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 30px 0;
  line-height: 0;
  height: 130px;
  z-index: 9999;
}

.main-slider__nav-prev,
.main-slider__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(var(--tastebud-white-rgb), .20);
  padding: 19px 0px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.main-slider__nav-prev {
  margin-bottom: 10px;
}

.main-slider__nav-prev:hover,
.main-slider__nav-next:hover {
  border-color: var(--tastebud-base);
  border: 1px solid rgba(var(--tastebud-white-rgb), 1);
}

.main-slider__nav-prev::before,
.main-slider__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.75);
  background-color: var(--tastebud-white);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}

.main-slider__nav-prev:hover::before,
.main-slider__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.main-slider__nav-prev span,
.main-slider__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.main-slider__nav-prev span i,
.main-slider__nav-next span i {
  position: relative;
  display: inline-block;
  color: rgba(var(--tastebud-white-rgb), .50);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.main-slider__nav-prev:hover span i,
.main-slider__nav-next:hover span i {
  color: rgba(var(--tastebud-black-rgb), 1);
}

.main-slider__nav-prev span i.left {
  transform: rotate(0deg);
}


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 160px 0px 160px;
  overflow: hidden;
  z-index: 1;
}

.banner-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .40;
  z-index: -1;
}

.banner-one__shape-1 {
  position: absolute;
  top: -300px;
  left: -275px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(125, 0, 2, 0.12) 0%, rgba(125, 0, 2, 0) 100%);
  border-radius: 50%;
}

.banner-one__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.banner-one__shape-2 img {
  width: auto;
}

.banner-one__shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner-one__shape-3 img {
  width: auto;
}

.banner-one__img-three {
  position: absolute;
  top: -10px;
  right: -10px;
  overflow: hidden;
  width: 350px;
  height: 350px;
  border-bottom-left-radius: 200px;
  border: 10px solid var(--tastebud-base);
}

.banner-one__img-three img {
  width: 100%;
}

.banner-one__inner {
  position: relative;
  display: block;
}

.banner-one__content {
  position: relative;
  display: block;
}

.banner-one__sub-title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--tastebud-base);
  padding: 12px 30px 12px;
  gap: 15px;
  border-radius: 25px;
}

.banner-one__sub-title-box p {
  font-size: 18px;
  font-weight: 500;
  color: var(--tastebud-white);
  text-transform: uppercase;
  line-height: 1.4em;
}

.banner-one__sub-title-bdr {
  display: none;
}

.banner-one__title {
  font-size: 100px;
  font-weight: 600;
  line-height: 1.0em;
  text-transform: uppercase;
  margin-top: 31px;
  margin-bottom: 19px;
  letter-spacing: -1px;
}

.banner-one__text {
  font-size: 18px;
  font-weight: 500;
}

.banner-one__btn-box {
  position: relative;
  display: block;
  margin-top: 33px;
}

.banner-one__img {
  position: absolute;
  bottom: -160px;
  right: -90px;
}

.banner-one__img img {
  width: auto;
}

.banner-one__img-two {
  position: absolute;
  top: -65px;
  right: 290px;
  height: 250px;
  width: 250px;
  border-radius: 50%;
}

.banner-one__img-two img {
  width: 100%;
  border-radius: 50%;
}

.banner-one__video-link {
  position: absolute;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 3;
  top: 80px;
  left: 80px;
}

.banner-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: var(--tastebud-white);
  background-color: rgba(var(--tastebud-base-rgb), .8);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.banner-one__video-icon:hover {
  background-color: var(--tastebud-white);
  color: var(--tastebud-base);
}

.banner-one__video-link .ripple,
.banner-one__video-icon .ripple:before,
.banner-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.banner-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.banner-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Banner Two
--------------------------------------------------------------*/
.banner-two {
  position: relative;
  display: block;
  padding: 285px 0px 185px;
  overflow: hidden;
  background-color: var(--tastebud-black);
  z-index: 1;
}

.banner-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .15;
  z-index: -1;
}

.banner-two__shpae-circle-1 {
  position: absolute;
  top: -890px;
  right: -640px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(125, 0, 2, 0) 0%, rgba(125, 0, 2, 0.8) 100%);
  border-radius: 50%;
  z-index: -1;
}

.banner-two__shpae-circle-2 {
  position: absolute;
  bottom: -520px;
  right: -340px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(125, 0, 2, 0) 0%, rgba(125, 0, 2, 0.8) 100%);
  border-radius: 50%;
  z-index: -1;
}

.banner-two__shpae-1 {
  position: absolute;
  top: 185px;
  left: 640px;
  z-index: -1;
}

.banner-two__shpae-1 img {
  width: auto;
}

.banner-two__shpae-2 {
  position: absolute;
  bottom: 315px;
  left: 680px;
  z-index: -1;
}

.banner-two__shpae-2 img {
  width: auto;
}

.banner-two__shpae-3 {
  position: absolute;
  top: 215px;
  right: 0px;
  z-index: -1;
}

.banner-two__shpae-3 img {
  width: auto;
}

.banner-two .container {
  max-width: 1440px;
}

.banner-two__inner {
  position: relative;
  display: block;
}

.banner-two__content {
  position: relative;
  display: block;
}

.banner-two__sub-title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  padding: 12px 30px 12px;
  gap: 15px;
  border-radius: 25px;
}

.banner-two__sub-title-box p {
  font-size: 18px;
  font-weight: 500;
  color: var(--tastebud-white);
  text-transform: uppercase;
  line-height: 1.4em;
}

.banner-two__sub-title-bdr {
  position: relative;
  display: block;
  width: 40px;
  height: 6px;
  background-color: var(--tastebud-white);
  border-radius: 3px;
}

.banner-two__title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--tastebud-white);
  margin-top: 16px;
  margin-bottom: 19px;
}

.banner-two__text {
  font-size: 18px;
  font-weight: 500;
}

.banner-two__btn-and-video-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 33px;
}

.banner-two__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.banner-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: var(--tastebud-white);
  background-color: rgba(var(--tastebud-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.banner-two__video-icon:hover {
  background-color: var(--tastebud-white);
  color: var(--tastebud-base);
}

.banner-two__video-link .ripple,
.banner-two__video-icon .ripple:before,
.banner-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.banner-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.banner-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.banner-two__video-title {
  font-size: 20px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 1em;
}

.banner-two__btn-box {
  position: relative;
  display: block;
}

.banner-two__btn-box .thm-btn span::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.banner-two__btn-box .thm-btn i::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.banner-two__btn-box .thm-btn:hover span,
.banner-two__btn-box .thm-btn:hover i {
  color: var(--tastebud-base);
}

.banner-two__btn-box .thm-btn .hover-btn {
  background-color: var(--tastebud-white);
}

.banner-two__btn-box .thm-btn:hover {
  color: var(--tastebud-black);
}

.banner-two__img {
  position: absolute;
  bottom: -210px;
  right: -180px;
}

.banner-two__img img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Features One Css
--------------------------------------------------------------*/

.features-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0px 0px 57px;
  z-index: 1;
}

.features-one__shape1 {
  position: absolute;
  bottom: 0;
  left: 11%;
}

.features-one__shape2 {
  position: absolute;
  top: 20px;
  right: 9%;
}

.features-one__inner {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: 2px solid rgba(var(--tastebud-base-rgb), .60);
  padding: 0px 50px 0px;
}

.features-one__inner ul.row {
  --bs-gutter-x: 0px;
}

.features-one__inner ul li {
  border-right: 1px solid rgb(var(--tastebud-black-rgb), .1);
}

.features-one__inner ul li:last-child {
  border-right: none;
}

.features-one__single {
  position: relative;
  display: block;
  padding: 50px 30px 42px;
  padding-right: 45px;
}

.features-one__inner ul li:first-child .features-one__single {
  padding-left: 0;
}

.features-one__inner ul li:last-child .features-one__single {
  padding-right: 0;
}

.features-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  border-top-left-radius: 30px;
  background-color: var(--tastebud-extra);
  border: 1px solid rgb(var(--tastebud-black-rgb), .1);
  transition: all 200ms linear;
  transition-delay: .1s;
  border-radius: 50%;
}

.features-one__single:hover .features-one__single-icon {
  border-color: var(--tastebud-base);
  background-color: #fff;
}

.features-one__single-icon i {
  color: var(--tastebud-base);
  font-size: 45px;
  line-height: 45px;
  transition: all 500ms ease;
  transition-delay: 0.1s;
}

.features-one__single:hover .features-one__single-icon i {
  color: var(--tastebud-white);
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.features-one__single-text {
  position: relative;
  display: block;
  padding-top: 18px;
}

.features-one__single-text h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-one__single-text h3 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: .1s;
  font-size: 20px;
}

.features-one__single-text h3 a:hover {
  color: var(--tastebud-base);
}

.features-one__single-text p {
  margin: 0;
}



/*--------------------------------------------------------------
# Cuisine One Css
--------------------------------------------------------------*/

.cuisine-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 63px 0px 120px;
  z-index: 1;
}

.cuisine-one .container {
  max-width: 1370px;
}

.cuisine-one__single {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  background: #f95d4a14;
  padding: 40px 45px 40px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;

}

.cuisine-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: linear-gradient(342deg, rgb(249 93 74) 0%, rgba(125, 0, 2, 0) 100%);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  z-index: -1;
}

.cuisine-one__single:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left center;
}

.cuisine-one__single-text {
  position: relative;
  display: block;
}

.cuisine-one__single-text h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  /* margin-bottom: 9px; */
  margin-top: 20px;
}

.cuisine-one__single-text h3 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.cuisine-one__single:hover .cuisine-one__single-text h3 a {
  color: var(--tastebud-white);
}

.cuisine-one__single-text p {
  margin: 0;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.cuisine-one__single:hover .cuisine-one__single-text p {
  color: var(--tastebud-white);
}

.cuisine-one__single-img {
  position: relative;
  display: block;
  margin-top: 18px;
}

.cuisine-one__single-img img {
  width: auto;
  -webkit-transition: all 0.90s ease;
  -o-transition: all 0.90s ease;
  transition: all 0.90s ease;
}

.cuisine-one__single:hover .cuisine-one__single-img img {
  transform: scale(1.02) translateX(3px);
}

.cuisine-one__carousel.owl-carousel .owl-item img {
  width: auto;
  margin: 0px auto 0px;
}


/*=== Cuisine One Nav ===*/
.cuisine-one__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1620px;
  width: 100%;
  margin: 0px auto 0px;
  z-index: 0;
}

.cuisine-one__nav-prev,
.cuisine-one__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--tastebud-black);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.cuisine-one__nav-prev:hover,
.cuisine-one__nav-next:hover {
  background-color: var(--tastebud-base);
}

.cuisine-one__nav-prev::before,
.cuisine-one__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  border-radius: 50%;
  background-color: var(--tastebud-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.cuisine-one__nav-prev:hover::before,
.cuisine-one__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.cuisine-one__nav-prev span,
.cuisine-one__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.cuisine-one__nav-prev span i,
.cuisine-one__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--tastebud-white);
  font-size: 22px;
  line-height: 22px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.cuisine-one__nav-prev:hover span i,
.cuisine-one__nav-next:hover span i {
  color: var(--tastebud-white);
}

.cuisine-one__nav-prev span i.left {
  transform: rotate(0deg);
}



/*--------------------------------------------------------------
# About One Css
--------------------------------------------------------------*/

.about-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0px 0px 0px;
  z-index: 1;
}

.about-one__shape1 {
  position: absolute;
  top: -70px;
  right: 28px;
}

.about-one__shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-one__shape1 img,
.about-one__shape2 img {
  width: auto;
}

.about-one__shape3 {
  position: absolute;
  left: 60px;
  bottom: -70px;
  z-index: -1;
}

.about-one__shape4 {
  position: absolute;
  top: -60px;
  left: 120px;
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  padding-right: 50px;
  margin-left: 50px;
  z-index: 1;
}

.about-one__img .shape1 {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 295px;
  width: 15px;
  background: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
  content: "";
}

.about-one__img1 {
  position: relative;
  display: block;
  background: var(--tastebud-white);
  border-radius: var(--tastebud-bdr-radius);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  overflow: hidden;
}

.about-one__img1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  background: var(--tastebud-black);
}

.about-one__img1 .inner img {
  width: 100%;
  transition: all 500ms ease;
}

.about-one__img:hover .about-one__img1 .inner img {
  opacity: 0.7;
  transform: scaleX(1.05);
}

.about-one__img2 {
  position: absolute;
  bottom: 45px;
  right: 0;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  border: 5px solid var(--tastebud-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.about-one__img2::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(var(--tastebud-black-rgb), 0.2);
  content: "";
}

.about-one__img2 img {
  width: 100%;
  transition: all 500ms ease;
}

.about-one__img:hover .about-one__img2 img {
  transform: scaleY(1.05);
}

.about-one__video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.about-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--tastebud-base);
  background-color: var(--tastebud-white);
  border: 0px solid var(--tastebud-black);
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, .25);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.about-one__video-icon:hover {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
}

.about-one__video .ripple,
.about-one__video-icon .ripple:before,
.about-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tastebud-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-one__video-icon .ripple:before {
  position: absolute;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
}

.about-one__video-icon .ripple:after {
  position: absolute;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
}

.about-one__experience {
  position: absolute;
  top: 60px;
  left: -95px;
  height: 190px;
  width: 190px;
  background-color: rgba(var(--tastebud-base-rgb), .80);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, .11);
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  padding: 0 30px 0;
  animation: topBottom 3s ease-in-out infinite;
  z-index: 2;
}

.about-one__experience-inner {
  position: relative;
  height: 170px;
  width: 170px;
  background-color: rgba(var(--tastebud-white-rgb), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  padding: 0 30px 0;
}

.about-one__experience .count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__experience .count-box h2 {
  color: var(--tastebud-base);
  font-size: 45px;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: 3px;
}

.about-one__experience .count-box span {
  color: var(--tastebud-base);
  font-size: 55px;
  font-weight: 700;
}

.about-one__experience p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  font-weight: 600;
}

.about-one__content {
  position: relative;
  display: block;
  margin-left: 60px;
}

.about-one__content .sec-title {
  padding-bottom: 18px;
}

.about-one__content .sec-title .sub-title {
  padding-left: 0;
}

.about-one__content .sec-title .sub-title::before {
  display: none;
}

.about-one__content-text {
  position: relative;
  display: block;
}

.about-one__content-text p {
  margin: 0;
}

.about-one__content-list {
  position: relative;
  display: block;
  padding-top: 32px;
}

.about-one__content-single {
  position: relative;
  display: block;
}

.about-one__content-single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--tastebud-white);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.about-one__content-single:hover .about-one__content-single-icon {
  background-color: var(--tastebud-base);
}

.about-one__content-single-icon i {
  color: var(--tastebud-base);
  font-size: 40px;
  line-height: 40px;
  transition: all 500ms ease;
  transition-delay: 0.1s;
}

.about-one__content-single:hover .about-one__content-single-icon i {
  color: var(--tastebud-white);
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.about-one__content-single-text {
  position: relative;
  display: block;
  padding-top: 18px;
}

.about-one__content-single-text h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-one__content-single-text h3 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.about-one__content-single-text h3 a:hover {
  color: var(--tastebud-base);
}

.about-one__content-single-text p {
  margin: 0;
}

.about-one__content-btn {
  position: relative;
  display: block;
  margin-top: 36px;
  line-height: 0;
}


/*--------------------------------------------------------------
# Menu One Css
--------------------------------------------------------------*/

.menu-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 120px 0px 100px;
  z-index: 1;
}

.menu-one__shape1 {
  position: absolute;
  right: 35px;
  bottom: 230px;
}

.menu-one__shape2 {
  position: absolute;
  right: 15px;
  bottom: 35px;
}

.menu-one__shape1 img,
.menu-one__shape2 img {
  width: auto;
}

.menu-one .container {
  max-width: 1644px;
}

.menu-one__inner {
  position: relative;
  display: block;
}

.menu-one__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 4px;
  opacity: 0.6;
  background: radial-gradient(50% 50% at 50% 50%, #f95d4a 0%, rgba(125, 0, 2, 0) 100%);
}


.menu-one__inner .row {
  --bs-gutter-x: 80px;
}

.menu-one__single {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--tastebud-white);
  padding: 40px 40px 32px;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all .3s ease-in-out;
}


.menu-one__single.two {}

.menu-one__single-img {
  position: relative;
  display: block;
  margin-top: 18px;
}

.menu-one__single-img img {
  width: auto;
  -webkit-transition: all 0.90s ease;
  -o-transition: all 0.90s ease;
  transition: all 0.90s ease;
  border-radius: 20%;
}

.menu-one__single:hover .menu-one__single-img img {
  transform: scale(1.02) translateY(-5px);
}

.menu-one__single-content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 30px;
}

.menu-one__single-list {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-one__single-list li {
  position: relative;
  display: block;
}

.menu-one__single-list li+li {
  margin-left: 15px;
}

.menu-one__single-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--tastebud-extra);
  color: var(--tastebud-black);
  font-size: 12px;
  line-height: 12px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.menu-one__single-list li a:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.menu-one__single-text {
  position: relative;
  display: block;
  padding-top: 13px;
}

.menu-one__single-text h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.menu-one__single-text h3 a {
  color: var(--tastebud-base);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.menu-one__single-text h3 a:hover {
  color: var(--tastebud-black);
}

.menu-one__single-text p {
  margin: 0;
}

.menu-one__single-rating {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.menu-one__single-rating i {
  color: var(--tastebud-base);
  font-size: 17px;
  line-height: 17px;
}

.menu-one__single-rating i+i {
  margin-left: 3px;
}

.menu-one__single-rating i.stok {
  color: transparent;
  -webkit-text-stroke: 1px var(--tastebud-base);
}

.menu-one__single-price {
  position: relative;
  display: block;
  margin-top: 18px;
}

.menu-one__single-price h4 {
  color: var(--tastebud-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.menu-one__single-price h4 span {
  color: var(--tastebud-base);
}

/*--------------------------------------------------------------
# Special One Css
--------------------------------------------------------------*/
.special-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  overflow: hidden;
  background-color: var(--tastebud-black);
  z-index: 1;
}

.special-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .40;
  z-index: -1;
}

/* .special-one .container {
  max-width: 834px;
} */

.special-one__inner {
  position: relative;
  display: block;
  background-color: var(--tastebud-gray-bg);
  border-radius: var(--tastebud-bdr-radius);
  padding: 50px 40px 60px;
  overflow: hidden;
  z-index: 1;
}

.special-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.special-one .timer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0 40px;
  z-index: 2;
}

.special-one .timer-box .countdown-timer li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  float: left;
  width: 150px;
  height: 150px;
  margin: 0px 15px;
  border: 2px dashed var(--tastebud-base);
  background-color: transparent;
  border-radius: 50%;
}

.special-one .timer-box .countdown-timer li span.days,
.special-one .timer-box .countdown-timer li span.hours,
.special-one .timer-box .countdown-timer li span.minutes,
.special-one .timer-box .countdown-timer li span.seconds {
  color: var(--tastebud-black);
  font-size: 40px;
  line-height: 1em;
  font-weight: 600;
  font-family: var(--tastebud-font-two);
}

.special-one .timer-box .countdown-timer li span.timeRef {
  position: relative;
  display: block;
  color: var(--tastebud-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 7px;
  font-family: var(--tastebud-font-two);
}

.special-one__content .inner .text {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.special-one__content .inner .text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.special-one__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

/*--------------------------------------------------------------
# Team One Css
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 120px 0px 80px;
  z-index: 1;
}

.team-one__pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 556px;
  opacity: .05;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.team-one__shape1 {
  position: absolute;
  top: 70px;
  left: 0;
}

.team-one__shape2 {
  position: absolute;
  top: 70px;
  right: 0;
}

.team-one__shape1 img,
.team-one__shape2 img {
  width: auto;
}

.team-one__single {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--tastebud-white);
  padding: 14px 12px 0px;
  margin-bottom: 40px;
  border-radius: 10px;
}

.team-one__single-img {
  position: relative;
  display: block;
  background-color: transparent;
  border: 1px dashed rgb(var(--tastebud-black-rgb), .3);
  padding: 10px 10px 10px;
  border-radius: 10px;
}

.team-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.team-one__single-img-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: var(--tastebud-black);
  transition: .5s;
  z-index: 1;
}

.team-one__single:hover .team-one__single-img-inner::before {
  opacity: .5;
}

.team-one__single-img-inner img {
  width: 100%;
  transition: all 800ms ease;
}

.team-one__single:hover .team-one__single-img-inner img {
  transform: scale(1.1) rotate(0deg);
}

.team-one__single-content {
  position: relative;
  display: block;
  text-align: center;
  padding: 30px 0px 32px;
}

.team-one__single-social {
  position: relative;
  display: block;
}

.team-one__single-social ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-one__single-social ul li {
  position: relative;
  display: block;
}

.team-one__single-social ul li+li {
  margin-left: 15px;
}

.team-one__single-social ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background: rgb(var(--tastebud-gray-bg-rgb), .6);
  border-radius: 50%;
  color: var(--tastebud-black);
  font-size: 18px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.team-one__single-social ul li a:hover {
  color: var(--tastebud-white);
}

.team-one__single-social ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 50%;
  background-color: var(--tastebud-base);
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-one__single-social ul li:hover a:before {
  opacity: 1;
  transform: scale(1);
  border-radius: 50%;
}

.team-one__single-text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.team-one__single-text h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-one__single-text h3 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.team-one__single-text h3 a:hover {
  color: var(--tastebud-base);
}

.team-one__single-text p {
  color: var(--tastebud-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
}



/*--------------------------------------------------------------
#  Welcome One Css
--------------------------------------------------------------*/
.welcome-one {
  position: relative;
  background-image: url(../images/welcome.jpg);
  background-position: 0 70%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 50px 0px 70px;
  overflow: hidden;
  z-index: 1;
}


.welcome-one__shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: -1;
}

.welcome-one__shape2 {
  position: absolute;
  top: 0;
  left: 175px;
  bottom: 0;
  opacity: .12;
  z-index: -1;
}

.welcome-one__shape3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.4;
  z-index: -1;
}

.welcome-one__shape4 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.welcome-one__shape5 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: -1;
}

.welcome-one__shape1 img,
.welcome-one__shape2 img,
.welcome-one__shape3 img,
.welcome-one__shape4 img,
.welcome-one__shape5 img {
  width: auto;
}

.welcome-one__content {
  position: relative;
  display: block;
  margin-top: 87px;
}

.welcome-one__content .sec-title {
  padding-bottom: 16px;
}

.welcome-one__content .sec-title .sub-title {
  padding-left: 0;
}

.welcome-one__content .sec-title .sub-title h4 {
  color: var(--tastebud-white);
}

.welcome-one__content .sec-title .sub-title::before {
  display: none;
}

.welcome-one__content .sec-title .sub-title::after {
  background-color: var(--tastebud-white);
}

.welcome-one__content .sec-title h2 {
  color: var(--tastebud-white);
}

.welcome-one__content-text {
  position: relative;
  display: block;
}

.welcome-one__content-text p {
  color: var(--tastebud-white);
  font-size: 20px;
  line-height: 30px;

}

.welcome-one__content-btn {
  position: relative;
  display: block;
  margin-top: 32px;
}


.welcome-one__content-btn .thm-btn:hover span,
.welcome-one__content-btn .thm-btn:hover i {
  color: var(--tastebud-black);
}

.welcome-one__content-btn .thm-btn span::after,
.welcome-one__content-btn .thm-btn i::after {
  background-color: var(--tastebud-white);
}

.welcome-one__img-box {
  position: relative;
  display: block;
  margin-left: 103px;
}

.welcome-one__img {
  position: relative;
  display: block;
}

.welcome-one__img img {
  width: 100%;
}

/*--------------------------------------------------------------
# Booked Table One Css
--------------------------------------------------------------*/

.booked-table-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 120px 0px 120px;
  z-index: 1;
}

.booked-table-one__shape3 {
  position: absolute;
  left: 0;
  bottom: 10px;
}

.booked-table-one__shape4 {
  position: absolute;
  top: 16px;
  right: 25px;
}

.booked-table-one__shape5 {
  position: absolute;
  bottom: 12px;
  right: 9px;
}

.booked-table-one__shape3 img,
.booked-table-one__shape4 img,
.booked-table-one__shape5 img {
  width: auto;
}

.booked-table-one__inner {
  position: relative;
  display: block;
}

.booked-table-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  margin-left: 150px;
  width: calc((100% - 320px) / 2);
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top left;
}

.booked-table-one__shape1 {
  position: absolute;
  top: 0;
  right: 0;
}

.booked-table-one__shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.booked-table-one__shape1 img,
.booked-table-one__shape2 img {
  width: auto;
}

.booked-table-one__info {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(var(--tastebud-black-rgb), .7);
  border-radius: 10px;
  padding: 30px 30px 22px;
  z-index: 5;
}

.booked-table-one__info-list {
  position: relative;
  display: flex;
  align-items: center;
}

.booked-table-one__info-list li {
  position: relative;
  display: block;
  padding-right: 28px;
  margin-right: 28px;
}

.booked-table-one__info-list li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.booked-table-one__info-list li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--tastebud-base);
  opacity: 0.5;
  content: "";
}

.booked-table-one__info-list li:last-child:before {
  display: none;
}

.booked-table-one__info-single {
  position: relative;
  display: block;
  text-align: center;
}

.booked-table-one__info-single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.booked-table-one__info-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--tastebud-base);
  font-size: 25px;
  line-height: 25px;
}

.booked-table-one__info-single .content-box {
  position: relative;
  display: block;
}

.booked-table-one__info-single .content-box h3 {
  color: var(--tastebud-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.booked-table-one__info-single .content-box p {
  color: rgba(var(--tastebud-white-rgb), .8);
}

.booked-table-one__content {
  position: relative;
  display: block;
  padding-left: 714px;
}

.booked-table-one__content .sec-title .sub-title {
  padding-left: 0;
}

.booked-table-one__content .sec-title .sub-title::before {
  display: none;
}

.booked-table-one__form {
  position: relative;
  display: block;
  background-color: #000000;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.07);
  padding: 60px 35px 60px;
  border-radius: 10px;
}

#booked-table-one__form {
  position: relative;
  display: block;
}

.booked-table-one__input {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.booked-table-one__input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  z-index: 3;
}

.booked-table-one__input-icon i {
  color: var(--tastebud-font-color);
  font-size: 14px;
  line-height: 14px;
}

.booked-table-one__input input[type="text"] {
  position: relative;
  display: block;
  height: 65px;
  width: 100%;
  outline: none;
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-family: var(--tastebud-font);
  font-weight: 500;
  text-transform: capitalize;
  border: none;
  border-radius: 32px;
  background-color: var(--tastebud-gray-bg);
  padding: 0px 25px 0px;
  padding-right: 50px;
  resize: none;
}

.booked-table-one__input .select-box {
  width: 100%;
}

.booked-table-one__input .nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
  border: none;
  border-radius: 32px;
  background-color: var(--tastebud-gray-bg);
  color: var(--tastebud-font-color);
  font-size: 16px;
  line-height: 65px;
  font-family: var(--tastebud-font);
  font-weight: 500;
  font-style: normal;
  outline: none;
  padding: 0px 25px 0px;
  padding-right: 50px;
  transition: all 500ms ease;
}

.booked-table-one__input .nice-select::after {
  display: none;
}

.booked-table-one__input .nice-select .list {
  background-color: #fff;
  border-radius: 0px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 0px 0 0px;
  margin-top: 10px;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: scale(1.0) translateY(30px);
  -ms-transform: scale(1.0) translateY(30px);
  transform: scale(1.0) translateY(30px);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  height: 0;
  width: 100%;
  right: 0 !important;
  left: auto !important;
}

.booked-table-one__input .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  height: auto;
}

.booked-table-one__input .nice-select .option {
  color: var(--tastebud-black);
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 40px;
  min-height: 40px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.booked-table-one__input .nice-select .option+.option {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.booked-table-one__input .nice-select .option:hover,
.booked-table-one__input .nice-select .option.focus,
.booked-table-one__input .nice-select .option.selected.focus {
  color: var(--tastebud-black) !important;
  background-color: var(--tastebud-base);
}

.booked-table-one__input .nice-select:before {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  color: var(--tastebud-font-color);
  font-size: 22px;
  right: 25px;
  line-height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.booked-table-one__content p {
  position: relative;
  display: block;
  margin-top: 28px;
}


/*--------------------------------------------------------------
# Testimonial One Css
--------------------------------------------------------------*/

.testimonial-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc((100% - 605px) / 2);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top left;
}

.testimonial-one__shape1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 39px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top center;
}

.testimonial-one__shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 39px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top center;
}

.testimonial-one .sec-title {
  padding-left: 400px;
}

.testimonial-one .sec-title .sub-title {
  padding-left: 0;
}

.testimonial-one .sec-title .sub-title::before {
  display: none;
}

.testimonial-one__inner {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  padding-top: 35px;
}

.testimonial-one__single-img {
  position: absolute;
  top: 0;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px dashed rgb(var(--tastebud-black-rgb), .4);
  z-index: 3;
}

.testimonial-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.testimonial-one__single-img-inner img {
  width: 100%;
}

.testimonial-one__single-inner {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  padding: 118px 40px 32px;
}

.testimonial-one__single-rating {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  align-items: center;
  background-color: var(--tastebud-extra);
  padding: 12.5px 25px 12.5px;
}

.testimonial-one__single-rating i {
  color: #efc84f;
  font-size: 15px;
  line-height: 15px;
}

.testimonial-one__single-rating i.two {
  color: transparent;
  -webkit-text-stroke: 2px #efc84f;
}

.testimonial-one__single-rating i+i {
  margin-left: 4px;
}

.testimonial-one__single-quote {
  position: absolute;
  right: 40px;
  bottom: 35px;
  line-height: 0;
}

.testimonial-one__single-quote i {
  color: var(--tastebud-base);
  font-size: 50px;
  line-height: 50px;
}

.testimonial-one__single-text {
  position: relative;
  display: block;
}

.testimonial-one__single-text p {
  margin: 0;
}

.testimonial-one__single-author {
  position: relative;
  display: block;
  margin-top: 12px;
}

.testimonial-one__single-author h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-one__single-author h4 {
  color: var(--tastebud-base);
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

/*=== Testimonial One Nav ===*/
.testimonial-one__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: -119px;
  right: 0;
  width: 130px;
  margin: 0px auto 0px;
  z-index: 9999;
}

.testimonial-one__nav-prev,
.testimonial-one__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--tastebud-black);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.testimonial-one__nav-prev:hover,
.testimonial-one__nav-next:hover {
  background-color: var(--tastebud-base);
}

.testimonial-one__nav-prev::before,
.testimonial-one__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  border-radius: 50%;
  background-color: var(--tastebud-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.testimonial-one__nav-prev:hover::before,
.testimonial-one__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.testimonial-one__nav-prev span,
.testimonial-one__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.testimonial-one__nav-prev span i,
.testimonial-one__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--tastebud-white);
  font-size: 22px;
  line-height: 22px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.testimonial-one__nav-prev:hover span i,
.testimonial-one__nav-next:hover span i {
  color: var(--tastebud-white);
}

.testimonial-one__nav-prev span i.left {
  transform: rotate(0deg);
}


/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0px 100px;
  z-index: 1;
}

.blog-one__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 53px;
}

.blog-one__top .sec-title {
  padding-bottom: 0;
}

.blog-one__top .sec-title .sub-title::before {
  display: none;
}

.blog-one__top .sec-title .sub-title {
  padding-left: 0;
}

.blog-one__top-left {
  position: relative;
  display: block;
}

.blog-one__btn {
  position: relative;
  display: block;
}

.blog-one__bottom {
  position: relative;
  display: block;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img {
  position: relative;
  display: block;
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.blog-one__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: var(--tastebud-black);
  border-radius: var(--tastebud-bdr-radius);
  transition: .5s;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img::before {
  opacity: .5;
}

.blog-one__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  transition: all 800ms ease;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.1) rotate(0deg);
}

.blog-one__content {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 36px 20px 33px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -70px;
  border-radius: var(--tastebud-bdr-radius);
  z-index: 2;
}

.blog-one__date {
  position: absolute;
  top: -20px;
  right: 20px;
  height: 55px;
  width: 55px;
  background-color: var(--tastebud-base);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-one__date p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--tastebud-white);
  font-family: var(--tastebud-font-two);
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.blog-one__meta>li {
  position: relative;
  display: block;
}

.blog-one__meta>li>a {
  font-size: 16px;
  color: var(--tastebud-font-color);
  position: relative;
  display: block;
}

.blog-one__meta>li>a:hover {
  color: var(--tastebud-base);
}

.blog-one__meta>li>a>i {
  position: relative;
  display: inline-block;
  color: var(--tastebud-base);
  padding-right: 7px;
}

.blog-one__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  font-family: var(--tastebud-font);
  min-height: 50px;
}

.blog-one__title a {
  color: var(--tastebud-black);
}

.blog-one__title a:hover {
  color: var(--tastebud-base);
}

.blog-one__single-btn {
  position: relative;
  display: block;
  margin-top: 15px;
}

.blog-one__single-btn a {
  position: relative;
  display: inline-block;
  color: var(--tastebud-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--tastebud-font-two);
}

.blog-one__single-btn a span:before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  top: 2px;
  margin-left: 2px;
}

.blog-one__single-btn a:hover {
  color: var(--tastebud-base);
}




/*==============================================
    Get In Touch
===============================================*/
.get-in-touch {
  position: relative;
  display: block;
  padding: 90px 0px 90px;
  z-index: 1;
}

.get-in-touch__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  background-color: rgba(var(--tastebud-black-rgb), .02);
  padding: 30px 25px 30px;
  border-radius: var(--tastebud-bdr-radius);
}

.get-in-touch__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
}

.get-in-touch__list {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}

.get-in-touch__list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.get-in-touch__list li+li {
  margin-top: 10px;
}

.get-in-touch__list li .icon {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--tastebud-base);
}

.get-in-touch__list li:first-child .icon {
  top: -20px;
}

.get-in-touch__list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.get-in-touch__list li .text p {
  color: rgba(var(--tastebud-black-rgb), .8);
}

.get-in-touch__list li .text p a {
  color: rgba(var(--tastebud-black-rgb), .8);
}

.get-in-touch__list li .text p a:hover {
  color: var(--tastebud-base);
}

.get-in-touch__btn {
  position: relative;
  display: block;
}

.get-in-touch__btn a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 17px;
  line-height: 1em;
  color: var(--tastebud-base);
  font-weight: 500;
  font-family: var(--tastebud-font-two);
}

.get-in-touch__btn a span::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  top: 1px;
  margin-left: 2px;
}

/*==============================================
    Site Footer
===============================================*/
.get-in-touch-two {
  padding: 120px 0px 90px;
}



/*==============================================
    Site Footer
===============================================*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
}

.site-footer__top-inner {
  position: relative;
  display: block;
  padding: 111px 0 120px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: 8px;
}

.footer-widget__about-logo {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  margin: 0;
  color: rgba(var(--tastebud-white-rgb), .80);
  font-weight: 600;
  padding-top: 27px;
  padding-bottom: 40px;
}

.footer-widget__newsletter-form-box {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.footer-widget__newsletter-title {
  font-size: 22px;
  color: var(--tastebud-white);
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
}

.footer-widget__newsletter-form {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 70px;
  width: 100%;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  outline: none;
  border: none;
  color: var(--tastebud-white);
  font-weight: 500;
  border-radius: var(--tastebud-bdr-radius);
  padding-right: 70px;
  padding-left: 20px;
  text-transform: capitalize;
}

.footer-widget__newsletter-btn {
  border: none;
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 5px;
  height: 60px;
  width: 60px;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  border-radius: var(--tastebud-bdr-radius);
  font-size: 20px;
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__newsletter-btn:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.footer-widget__newsletter-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-widget__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid rgba(var(--tastebud-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--tastebud-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-widget__social a:hover {
  color: var(--tastebud-base);
  border: 1px solid var(--tastebud-white);
}

.footer-widget__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tastebud-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.footer-widget__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-widget__social a+a {
  margin-left: 5px;
}

.footer-widget__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.footer-widget__title:before {
  content: "";
  height: 2px;
  width: 80px;
  background: var(--tastebud-base);
  position: absolute;
  bottom: -14px;
  left: 0;
}

.footer-widget__title::after {
  position: absolute;
  left: 37px;
  bottom: -16px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--tastebud-base);
  border-radius: 50%;
}

.footer-widget__links {
  position: relative;
  display: block;
  margin-left: 40px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li+li {
  margin-top: 16px;
}

.footer-widget__links-list li a {
  color: rgba(var(--tastebud-white-rgb), .80);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--tastebud-base);
}

.footer-widget__office {
  position: relative;
  display: block;
  margin-left: -30px;
}

.footer-widget__news-update-list {
  position: relative;
  display: block;
}

.footer-widget__news-update-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-widget__news-update-list li+li {
  margin-top: 20px;
}

.footer-widget__news-update-img {
  position: relative;
  display: block;
  width: 80px;
}

.footer-widget__news-update-img img {
  width: 100%;
  border-radius: 5px;
}

.footer-widget__news-update-content {
  position: relative;
  display: block;
  flex: 1;
}

.footer-widget__news-update-content p {
  font-size: 16px;
  color: var(--tastebud-white);
  margin-bottom: 6px;
}

.footer-widget__news-update-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--tastebud-white);
  line-height: 26px;
  text-transform: capitalize;
}

.footer-widget__news-update-content h4 a {
  color: var(--tastebud-white);
}

.footer-widget__news-update-content h4 a:hover {
  color: var(--tastebud-base);
}

.footer-widget__services {
  position: relative;
  display: block;
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--tastebud-white-rgb), .10);
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 28px;
}

.site-footer__copyright {
  position: relative;
  display: block;
}

.site-footer__copyright-text {
  color: rgba(var(--tastebud-white-rgb), .80);
}

.site-footer__copyright-text a {
  color: var(--tastebud-white);
  font-weight: 600;
}

.site-footer__copyright-text a:hover {
  color: var(--tastebud-white);
}

.site-footer__bottom-menu-box {
  position: relative;
  display: block;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li+li {
  margin-left: 25px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--tastebud-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--tastebud-white);
}


/*==============================================
    Site Footer Two
===============================================*/
.site-footer-two {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .2;
  z-index: -1;
}

.site-footer-two__top {
  position: relative;
  display: block;
}

.site-footer-two__top-inner {
  position: relative;
  display: block;
  padding: 111px 0 50px;
}

.footer-widget-two__about {
  position: relative;
  display: block;
  margin-top: 8px;
}

.footer-widget-two__about-logo {
  position: relative;
  display: block;
}

.footer-widget-two__about-text {
  margin: 0;
  color: rgba(var(--tastebud-white-rgb));
  /* font-weight: 600; */
  padding-top: 35px;
  /* padding-bottom: 40px; */
}

.footer-widget-two__newsletter-form-box {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter-title {
  font-size: 24px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.footer-widget-two__newsletter-form {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 70px;
  width: 100%;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  outline: none;
  border: none;
  color: var(--tastebud-white);
  font-weight: 600;
  border-radius: var(--tastebud-bdr-radius);
  padding-right: 70px;
  padding-left: 20px;
  text-transform: uppercase;
}

.footer-widget-two__newsletter-btn {
  border: none;
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 5px;
  height: 60px;
  width: 60px;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  border-radius: var(--tastebud-bdr-radius);
  font-size: 20px;
  color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__newsletter-btn:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.footer-widget-two__newsletter-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.footer-widget-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  /* border: 1px solid rgba(var(--tastebud-white-rgb)); */
  border-radius: 50%;
  font-size: 15px;
  color: var(--tastebud-white);
  background-color: #ef5744;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-widget-two__social a:hover {
  color: var(--tastebud-base);
  border: 1px solid var(--tastebud-white);
}

.footer-widget-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tastebud-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.footer-widget-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-widget-two__social a+a {
  margin-left: 10px;
}

.footer-widget-two__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.footer-widget-two__title:before {
  content: "";
  height: 2px;
  width: 80px;
  background: var(--tastebud-base);
  position: absolute;
  bottom: -14px;
  left: 0;
}

.footer-widget-two__title::after {
  position: absolute;
  left: 37px;
  bottom: -16px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--tastebud-base);
  border-radius: 50%;
}

.footer-widget-two__links {
  position: relative;
  display: block;
  margin-left: 40px;
}

.footer-widget-two__links-list {
  position: relative;
  display: block;
}

.footer-widget-two__links-list li+li {
  margin-top: 16px;
}

.footer-widget-two__links-list li a {
  color: rgba(var(--tastebud-white-rgb));
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  /* font-weight: 600; */
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__links-list li a:hover {
  color: var(--tastebud-base);
}

.footer-widget-two__contact-info {
  position: relative;
  display: block;
  margin-left: -30px;
}

.footer-widget-two__contact-list {
  position: relative;
  display: block;
}

.footer-widget-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer_pd {
  padding: 0 210px;
}

.footer-widget-two__contact-list li+li {
  margin-top: 10px;
}

.footer-widget-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--tastebud-white-rgb));
  border-radius: 50%;
}

.footer-widget-two__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--tastebud-white);
}

.footer-widget-two__contact-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.footer-widget-two__contact-list li .text p {
  font-size: 16px;
  color: var(--tastebud-white);
}

.footer-widget-two__contact-list li .text p a {
  color: var(--tastebud-white);
}

.footer-widget-two__contact-list li .text p a:hover {
  color: var(--tastebud-base);
}

.footer-widget-two__services {
  position: relative;
  display: block;
}

.site-footer-two__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--tastebud-white-rgb), .10);
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 15px;
}

.site-footer-two__copyright {
  position: relative;
  display: block;
}

.site-footer-two__copyright-text {
  color: rgba(var(--tastebud-white-rgb));
}

.site-footer-two__copyright-text a {
  color: #ef5744;
  font-weight: 600;
}

.site-footer-two__copyright-text a:hover {
  color: var(--tastebud-white);
}

.site-footer-two__bottom-menu-box {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu li+li {
  margin-left: 25px;
}

.site-footer-two__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--tastebud-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--tastebud-white);
}







/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.feature-one .container {
  max-width: 1644px;
}

.feature-one__left {
  position: relative;
  display: block;
  margin-right: 73px;
  margin-bottom: 30px;
}

.feature-one__left-content {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 60px 30px 58px;
  z-index: 1;
  border-radius: 10px;
}

.feature-one__left-content-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature-one__left-content-shape-1 img {
  width: auto;
}

.feature-one__left-content-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.feature-one__left-content-shape-2 img {
  width: auto;
}

.feature-one__left-content-shape-3 {
  position: absolute;
  bottom: 200px;
  left: 55px;
  z-index: -1;
}

.feature-one__left-content-shape-3 img {
  width: auto;
}

.feature-one__left-content-img {
  position: relative;
  display: block;
  height: 400px;
  width: 400px;
  border: 10px solid var(--tastebud-base);
  border-radius: 50%;
  margin: 0 auto 0;
}

.feature-one__left-content-img img {
  width: 100%;
}

.feature-one__left-content-title-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 32px;
}

.feature-one__left-content-title-box h2 {
  font-size: 30px;
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-one__left-content-title-box p {
  font-weight: 500;
}

.feature-one__right {
  position: relative;
  display: block;
  margin-left: -73px;
}

.feature-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.feature-one__single-one {
  background-color: var(--tastebud-white);
  text-align: right;
  padding: 40px 30px 60px;
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-one-top-img {
  position: absolute;
  bottom: -147px;
  left: -98px;
  width: 315px;
  height: 315px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--tastebud-base);
  z-index: -1;
}

.feature-one__single-one-top-img img {
  width: 100%;
}

.feature-one__single-one-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature-one__single-one-shape-1 img {
  width: auto;
}

.feature-one__single-one-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature-one__single-one-shape-2 img {
  width: auto;
}

.feature-one__single-one-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.feature-one__single-one-shape-3 img {
  width: auto;
}

.feature-one__single-one-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.feature-one__single-one-text {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 66px;
}

.feature-one__single-one-logo-box {
  position: relative;
  display: block;
}

.feature-one__single-two {
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
  padding: 10px 0 36px;
  z-index: 1;
}

.feature-one__single-two-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .30;
  z-index: -1;
}

.feature-one__single-two-shape-1 img {
  width: auto;
}

.feature-one__single-two-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .30;
  z-index: -1;
}

.feature-one__single-two-shape-2 img {
  width: auto;
}

.feature-one__single-two-shape-3 {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: .30;
  z-index: -1;
}

.feature-one__single-two-shape-3 img {
  width: auto;
}

.feature-one__single-two-shape-4 {
  position: absolute;
  top: 95px;
  right: 35px;
  z-index: -1;
}

.feature-one__single-two-shape-4 img {
  width: auto;
}

.feature-one__single-two-img-box {
  position: relative;
  display: block;
  background-color: #973335;
  max-width: 240px;
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
  padding: 20px 0px 26px;
  border-bottom-left-radius: var(--tastebud-bdr-radius);
  border-bottom-right-radius: var(--tastebud-bdr-radius);
}

.feature-one__single-two-img {
  position: relative;
  display: block;
  width: 185px;
  height: 185px;
  margin: 0 auto 0;
  overflow: hidden;
  border-radius: 50%;
  border: 8px solid var(--tastebud-base);
}

.feature-one__single-two-img img {
  width: 100%;
}

.feature-one__single-two-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--tastebud-white);
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 15px;
}

.feature-one__single-three {
  background-color: var(--tastebud-black);
  text-align: center;
  border-radius: var(--tastebud-bdr-radius);
  padding: 35px 20px 159px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-three-shape-1 {
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: .30;
  z-index: -1;
}

.feature-one__single-three-shape-1 img {
  width: auto;
}

.feature-one__single-three-shape-2 {
  position: absolute;
  top: 0px;
  right: 10px;
  opacity: .30;
  z-index: -1;
}

.feature-one__single-three-shape-2 img {
  width: auto;
}

.feature-one__single-three-shape-3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  opacity: .30;
  z-index: -1;
}

.feature-one__single-three-shape-3 img {
  width: auto;
}

.feature-one__single-three-shape-4 {
  position: absolute;
  top: 85px;
  left: 35px;
  z-index: -1;
}

.feature-one__single-three-shape-4 img {
  width: auto;
}

.feature-one__single-three-title-box {
  position: relative;
  display: block;
}

.feature-one__single-three-title-box h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--tastebud-white);
  margin-bottom: 20px;
}

.feature-one__single-three-title-box p {
  font-weight: 500;
}

.feature-one__single-three-img {
  position: absolute;
  bottom: -110px;
  left: 0;
  right: 0;
  height: 235px;
  width: 235px;
  overflow: hidden;
  border-radius: 50%;
  border: 8px solid var(--tastebud-white);
  margin: 0 auto 0;
}

.feature-one__single-three-img img {
  width: 100%;
}

.feature-one__single-four {
  background-color: var(--tastebud-white);
  padding: 40px 30px 44px;
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-four-top-img {
  position: absolute;
  bottom: -147px;
  right: -98px;
  width: 315px;
  height: 315px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--tastebud-base);
  z-index: -1;
}

.feature-one__single-four-top-img img {
  width: 100%;
}

.feature-one__single-four-shape-1 {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: -1;
}

.feature-one__single-four-shape-1 img {
  width: auto;
}

.feature-one__single-four-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.feature-one__single-four-shape-2 img {
  width: auto;
}

.feature-one__single-four-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.feature-one__single-four-text {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 66px;
}

.feature-one__single-four-logo-box {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  padding: 150px 0px 0px;
  z-index: 1;
}

.about-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__img:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 60px;
  right: 60px;
  bottom: -50px;
  border: 1px solid rgba(var(--tastebud-white-rgb), .20);
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  z-index: -1;
}

.about-two__img:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 90px;
  right: 90px;
  bottom: -50px;
  border: 1px solid rgba(var(--tastebud-white-rgb), .20);
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  z-index: -1;
}

.about-two__img img {
  width: 100%;
}

.about-two__video-link {
  position: absolute;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  z-index: 3;
  top: 70px;
  left: 35px;
}

.about-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: var(--tastebud-white);
  background-color: rgba(var(--tastebud-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-two__video-icon:hover {
  background-color: var(--tastebud-white);
  color: var(--tastebud-base);
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-two__video-title {
  font-size: 20px;
  color: var(--tastebud-white);
  font-weight: 700;
  line-height: 1em;
}

.about-two__right {
  position: relative;
  display: block;
  margin-top: -37px;
}

.about-two__right .sec-title {
  padding-bottom: 29px;
}

.about-two__right .sec-title .sub-title {
  padding-left: 0;
}

.about-two__right .sec-title .sub-title h4 {
  color: var(--tastebud-white);
}

.about-two__right .sec-title .sub-title::after {
  background-color: var(--tastebud-white);
}

.about-two__right .sec-title .sub-title::before {
  display: none;
}

.about-two__right .sec-title h2 {
  color: var(--tastebud-white);
}

.about-two__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
  margin-top: 29px;
  margin-bottom: 25px;
}

.about-two__points {
  position: relative;
  display: block;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-two__points li+li {
  margin-top: 10px;
}

.about-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--tastebud-base);
  border-radius: 50%;
  font-size: 12px;
  color: var(--tastebud-white);
}

.about-two__points li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-two__counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 35px;
}

.about-two__counter li {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  padding: 20px 35px 20px;
  border-radius: var(--tastebud-bdr-radius);
}

.about-two__counter-single {
  position: relative;
  display: block;
}

.about-two__count-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.about-two__count-box h3 {
  font-size: 45px;
  color: var(--tastebud-white);
  line-height: 45px !important;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--tastebud-font-two) !important;
}

.about-two__count-box>span {
  position: relative;
  top: -2px;
  color: var(--tastebud-white);
  font-size: 45px;
  line-height: 45px !important;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--tastebud-font-two) !important;
}

.about-two__counter-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  font-family: var(--tastebud-font-two);
  color: var(--tastebud-white);
}

.about-two__btn-box {
  position: relative;
  display: block;
}

.about-two__btn-box .thm-btn span::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.about-two__btn-box .thm-btn i::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.about-two__btn-box .thm-btn:hover span,
.about-two__btn-box .thm-btn:hover i {
  color: var(--tastebud-base);
}

/*--------------------------------------------------------------
# Coffee House One
--------------------------------------------------------------*/
.coffee-house-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 120px 0px 96px;
  overflow: hidden;
  z-index: 1;
}

.coffee-house-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.coffee-house-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.coffee-house-one__shape-1 img {
  width: auto;
}

.coffee-house-one__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.coffee-house-one__shape-2 img {
  width: auto;
}

.coffee-house-one .container {
  max-width: 1644px;
}

.coffee-house-one__single {
  position: relative;
  display: block;
  background-color: var(--tastebud-gray-bg);
  border-radius: var(--tastebud-bdr-radius);
  padding: 20px 40px 22px;
  margin-bottom: 24px;
}

.coffee-house-one__menu-and-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.coffee-house-one__menu-and-price h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.coffee-house-one__menu-and-price p {
  font-size: 24px;
  font-weight: 600;
  color: var(--tastebud-base);
  line-height: 24px;
}

.coffee-house-one__text {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Coffee Menu
--------------------------------------------------------------*/
.coffee-menu {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  padding: 120px 0px 66px;
  overflow: hidden;
  z-index: 1;
}

.coffee-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.coffee-menu__img-1 {
  position: absolute;
  top: -150px;
  left: -100px;
  height: 450px;
  width: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--tastebud-white);
  z-index: -1;
}

.coffee-menu__img-1 img {
  width: 100%;
}

.coffee-menu__img-2 {
  position: absolute;
  bottom: -150px;
  right: -150px;
  height: 450px;
  width: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--tastebud-white);
  z-index: -1;
}

.coffee-menu__img-2 img {
  width: 100%;
}

.coffee-menu .sec-title {
  padding-bottom: 83px;
}

.coffee-menu .sec-title .sub-title h4 {
  color: var(--tastebud-white);
}

.coffee-menu .sec-title .sub-title::after,
.coffee-menu .sec-title .sub-title::before {
  background-color: var(--tastebud-white);
}

.coffee-menu .sec-title h2 {
  color: var(--tastebud-white);
}

.coffee-menu__single {
  position: relative;
  display: block;
  background-color: var(--tastebud-gray-bg);
  padding: 60px 40px 40px;
  border-radius: var(--tastebud-bdr-radius);
  margin-bottom: 54px;
}

.coffee-menu__coffee-name {
  position: absolute;
  top: -30px;
  left: 40px;
  background-color: var(--tastebud-base);
  padding: 16px 40px 18px;
  border-radius: var(--tastebud-bdr-radius);
}

.coffee-menu__coffee-name p {
  font-size: 24px;
  font-weight: 600;
  color: var(--tastebud-white);
  line-height: 1em;
  font-family: var(--tastebud-font-two);
}

.coffee-menu__list {
  position: relative;
  display: block;
}

.coffee-menu__list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.coffee-menu__list li+li {
  margin-top: 6px;
}

.coffee-menu__list li p {
  font-size: 18px;
  font-weight: 600;
}

.coffee-menu__list li .border-box {
  position: relative;
  display: block;
  width: 300px;
  border: 1px dashed var(--tastebud-font-color);
}

/*--------------------------------------------------------------
# Coffee Shop
--------------------------------------------------------------*/
.coffee-shop {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.coffee-shop__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.coffee-shop__shape-1 img {
  width: auto;
}

.coffee-shop__carousel {
  position: relative;
  display: block;
}

.coffee-shop__single {
  position: relative;
  display: block;
}

.coffee-shop__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.coffee-shop__offer {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--tastebud-base);
  z-index: 5;
  padding: 10px 20px 10px;
  border-radius: var(--tastebud-bdr-radius);
}

.coffee-shop__offer p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  color: var(--tastebud-white);
  font-family: var(--tastebud-font-two);
  text-transform: uppercase;
}

.coffee-shop__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  z-index: 1;
}

.coffee-shop__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--tastebud-black-rgb), .70);
  opacity: 0;
  transform: translateY(-50%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.coffee-shop__single:hover .coffee-shop__img::after {
  opacity: 1;
  transform: translateY(0%);
}

.coffee-shop__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  transition: all 500ms ease;
}

.coffee-shop__single:hover .coffee-shop__img img {
  transform: scaleY(1.05);
}

.coffee-shop__content {
  position: absolute;
  bottom: 15px;
  left: 25px;
  right: 25px;
  background-color: rgba(var(--tastebud-white-rgb), .20);
  padding: 20px 20px 18px;
  border-radius: var(--tastebud-bdr-radius);
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
}

.coffee-shop__single:hover .coffee-shop__content {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 200ms;
}

.coffee-shop__rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.coffee-shop__rating span {
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: var(--tastebud-white);
}

.coffee-shop__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.coffee-shop__title a {
  color: var(--tastebud-white);
}

.coffee-shop__title a:hover {
  color: var(--tastebud-base);
}

.coffee-shop__price {
  font-size: 18px;
  font-weight: 500;
  color: var(--tastebud-white);
}

/*--------------------------------------------------------------
# Choose Flavor
--------------------------------------------------------------*/
.choose-flavor {
  position: relative;
  display: block;
  padding: 0px 0px 96px;
  z-index: 1;
}

.choose-flavor__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.choose-flavor__shape-1 img {
  width: auto;
}

.choose-flavor__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .40;
  z-index: -1;
}

.choose-flavor__shape-2 img {
  width: auto;
}

.choose-flavor__single {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  text-align: center;
  padding: 45px 17px 40px;
  border-radius: var(--tastebud-bdr-radius);
  margin-bottom: 24px;
}

.choose-flavor__img {
  position: relative;
  display: block;
  max-width: 120px;
  width: 100%;
  margin: 0 auto 0;
}

.choose-flavor__img img {
  width: 100%;
  transition: all 500ms ease;
}

.choose-flavor__single:hover .choose-flavor__img img {
  transform: scaleY(1.05);
}

.choose-flavor__content {
  position: relative;
  display: block;
}

.choose-flavor__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1em;
  margin-top: 25px;
  text-transform: capitalize;
}

.choose-flavor__title a {
  color: var(--tastebud-black);
}

.choose-flavor__title a:hover {
  color: var(--tastebud-base);
}

/*--------------------------------------------------------------
# Coffee Gallery 
--------------------------------------------------------------*/
.coffee-gallery {
  position: relative;
  display: block;
  padding: 120px 0px 100px;
  background-color: var(--tastebud-white);
  overflow: hidden;
  z-index: 1;
}

.coffee-gallery__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .05;
  z-index: -1;
}

.coffee-gallery__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.coffee-gallery__shape-1 img {
  width: auto;
}

.coffee-gallery__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.coffee-gallery__shape-2 img {
  width: auto;
}

.coffee-gallery .swiper-container {
  overflow: visible;
}

.coffee-gallery__single {
  position: relative;
  display: block;
}

.coffee-gallery__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  z-index: 1;
}

.coffee-gallery__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--tastebud-black-rgb), .50);
  opacity: 0;
  transform: translateY(-50%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.coffee-gallery__single:hover .coffee-gallery__img::after {
  opacity: 1;
  transform: translateY(0%);
}

.coffee-gallery__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  transition: all 500ms ease;
}

.coffee-gallery__single:hover .coffee-gallery__img img {
  transform: scale(1.05);
}

.coffee-gallery__content {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--tastebud-base-rgb), 1);
  padding: 15px 20px 15px;
  border-radius: var(--tastebud-bdr-radius);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 5;
}

.coffee-gallery__single:hover .coffee-gallery__content {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 200ms;
}

.coffee-gallery__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
}

.coffee-gallery__content h3 a {
  color: var(--tastebud-white);
}

.coffee-gallery__content h3 a:hover {
  color: var(--tastebud-white);
}

.coffee-gallery__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: rgba(var(--tastebud-white-rgb), .20);
  font-size: 20px;
  color: var(--tastebud-white);
  border-radius: var(--tastebud-bdr-radius);
}

.coffee-gallery__btn:hover {
  background-color: rgba(var(--tastebud-white-rgb), 1);
  color: var(--tastebud-base);
}

/*--------------------------------------------------------------
# Why This Brew
--------------------------------------------------------------*/
.why-this-brew {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.why-this-brew__bg {
  position: absolute;
  top: 120px;
  right: 0;
  bottom: 120px;
  width: calc((100% - 132px) / 2);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-top-left-radius: var(--tastebud-bdr-radius);
  border-bottom-left-radius: var(--tastebud-bdr-radius);
}

.why-this-brew__left {
  position: relative;
  display: block;
}

.why-this-brew__left .sec-title {
  padding-bottom: 23px;
}

.why-this-brew__left .sec-title .sub-title {
  padding-left: 0;
}

.why-this-brew__left .sec-title .sub-title::before {
  display: none;
}

.why-this-brew__text {
  margin-bottom: 32px;
}

.why-this-brew__tab-box {
  position: relative;
  display: block;
}

.why-this-brew__tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.why-this-brew__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
  padding: 16px 25px 16px;
  cursor: pointer;
  background-color: var(--tastebud-white);
  border-radius: 10px;
  z-index: 1;
}

.why-this-brew__tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--tastebud-base);
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: -1;
}

.why-this-brew__tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.why-this-brew__tab-box .tab-buttons .tab-btn p {
  color: var(--tastebud-black);
  font-size: 16px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--tastebud-font-two);
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.why-this-brew__tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--tastebud-white);
}

.why-this-brew__tab-box .tabs-content {
  position: relative;
  display: block;
  margin-top: 30px;
  z-index: 1;
}

.why-this-brew__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: all 900ms ease;
  z-index: 10;
}

.why-this-brew__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.why-this-brew__tab-content-box {
  position: relative;
  display: block;
}

.why-this-brew__points-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.why-this-brew__points {
  position: relative;
  display: block;
  max-width: 290px;
  width: 100%;
}

.why-this-brew__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding: 15px 20px 15px;
  margin-bottom: 15px;
  border-radius: var(--tastebud-bdr-radius);
}

.why-this-brew__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 50px;
  color: var(--tastebud-base);
}

.why-this-brew__points li .icon span {
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-this-brew__points li:hover .icon span {
  transform: scale(0.9);
}

.why-this-brew__points li .title {
  position: relative;
  display: block;
  flex: 1;
}

.why-this-brew__points li .title h4 {
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
}

.why-this-brew__btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.why-this-brew__right {
  position: relative;
  display: block;
  min-height: 604px;
}

.why-this-brew__video-link {
  position: absolute;
  top: 60%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%) translateY(-50%);
  z-index: 3;
}

.why-this-brew__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--tastebud-white);
  background-color: rgba(var(--tastebud-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.why-this-brew__video-icon:hover {
  background-color: var(--tastebud-white);
  color: var(--tastebud-base);
}

.why-this-brew__video-link .ripple,
.why-this-brew__video-icon .ripple:before,
.why-this-brew__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tastebud-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.why-this-brew__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.why-this-brew__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Newsletter One
--------------------------------------------------------------*/
.newsletter-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-base);
  z-index: 1;
}

.newsletter-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.newsletter-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 0px 80px;
}

.newsletter-one__title-box {
  position: relative;
  display: block;
}

.newsletter-one__title-box h2 {
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--tastebud-white);
}

.newsletter-one__title-box p {
  font-size: 20px;
  color: var(--tastebud-white);
  margin-top: 15px;
}

.newsletter-one__form-box {
  position: relative;
  display: block;
  max-width: 575px;
  width: 100%;
}

.newsletter-one__form {
  position: relative;
  display: block;
}

.newsletter-one__input {
  position: relative;
  display: block;
}

.newsletter-one__input input[type="email"] {
  font-size: 16px;
  color: var(--tastebud-white);
  font-weight: 400;
  height: 60px;
  width: 100%;
  background: rgba(var(--tastebud-white-rgb), .30);
  border: none;
  border-radius: 6px;
  outline: none;
  padding: 0 25px 0;
  padding-right: 160px;
}

.newsletter-one__btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tastebud-black);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--tastebud-white);
  padding: 21px 20px 21px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  gap: 10px;
  overflow: hidden;
  font-family: var(--tastebud-font-two);
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
}

.newsletter-one__btn:hover {
  color: var(--tastebud-base);
}

.newsletter-one__btn::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 10%;
  height: 10%;
  background-color: rgba(var(--tastebud-white-rgb), 1);
  background-position: left center;
  transition-timing-function: ease-in-out;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleX(1);
  opacity: 0;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.newsletter-one__btn:hover::before {
  opacity: 1;
  width: 120%;
  height: 200%;
  transform: scaleX(1.0);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-two__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.blog-two__top .sec-title {
  padding-bottom: 0;
}

.blog-two__top .sec-title .sub-title::before {
  display: none;
}

.blog-two__top .sec-title .sub-title {
  padding-left: 0;
}

.blog-two__top-left {
  position: relative;
  display: block;
}

.blog-two__btn {
  position: relative;
  display: block;
}

.blog-two__bottom {
  position: relative;
  display: block;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__img-box {
  position: relative;
  display: block;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.blog-two__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: var(--tastebud-black);
  border-radius: var(--tastebud-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: .5s;
  z-index: 1;
}

.blog-two__single:hover .blog-two__img::before {
  opacity: .5;
}

.blog-two__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 800ms ease;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.1) rotate(0deg);
}

.blog-two__content {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 26px 30px 28px;
  border-bottom-left-radius: var(--tastebud-bdr-radius);
  border-bottom-right-radius: var(--tastebud-bdr-radius);
}

.blog-two__date {
  position: absolute;
  top: -20px;
  right: 20px;
  height: 55px;
  width: 55px;
  background-color: var(--tastebud-base);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.blog-two__date p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--tastebud-white);
  font-family: var(--tastebud-font-two);
}

.blog-two__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.blog-two__meta>li {
  position: relative;
  display: block;
}

.blog-two__meta>li>a {
  font-size: 16px;
  color: var(--tastebud-font-color);
  position: relative;
  display: block;
}

.blog-two__meta>li>a:hover {
  color: var(--tastebud-base);
}

.blog-two__meta>li>a>i {
  position: relative;
  display: inline-block;
  color: var(--tastebud-base);
  padding-right: 7px;
}

.blog-two__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.blog-two__title a {
  color: var(--tastebud-black);
}

.blog-two__title a:hover {
  color: var(--tastebud-base);
}

.blog-two__text {
  margin-top: 11px;
  margin-bottom: 25px;
}

.blog-two__btn-two {
  position: relative;
  display: block;
}

.blog-two__btn-two a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 18px;
  color: var(--tastebud-black);
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--tastebud-font-two);
  line-height: 1em;
}

.blog-two__btn-two a:hover {
  color: var(--tastebud-base);
}

.blog-two__btn-two a span:before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  top: 2px;
  margin-left: 2px;
}




/*--------------------------------------------------------------
# Features Two Css
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 1;
}

.feature-two__inner {
  position: relative;
  display: block;
}

.feature-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.feature-two__single-inner {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 35px 50px 35px;
  border-radius: 10px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='416' height='456' viewBox='0 0 416 456'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='416' height='456'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='416' height='456' viewBox='0 0 416 456'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='416' height='456'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.feature-two__img {
  position: relative;
  display: block;
  max-width: 312px;
  width: 100%;
  margin: 0 auto 0;
}

.feature-two__img img {
  width: 100%;
  border-radius: 10px;
}

.feature-two__content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.feature-two__title {
  font-size: 24px;
  line-height: 34px;
  color: var(--tastebud-black);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 22px;
}

.feature-two__title a {
  color: var(--tastebud-black);
}

.feature-two__title a:hover {
  color: var(--tastebud-base);
}

.feature-two__btn-box {
  position: relative;
  display: block;
}

.feature-two__icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
}

.feature-two__icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  width: 70px;
  background-color: var(--tastebud-black);
  border-radius: 20px;
  font-size: 20px;
  color: var(--tastebud-white);
  left: -15px;
  bottom: -15px;
  border-top-right-radius: 0;
}

.feature-two__icon a:hover {
  background-color: var(--tastebud-base);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 90px 0 120px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
}

.about-three__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
}

.about-three__content-one {
  position: relative;
  display: block;
  margin-top: 20px;
}

.about-three__content-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -2px;
}

.about-three__content-list li {
  position: relative;
  display: block;
  max-width: 33.333333%;
  width: 100%;
  flex: 0 0 33.333333%;
  padding: 0 2px;
}

.about-three__content-single {
  position: relative;
  display: block;
  padding: 30px 20px 25px;
  background-color: var(--tastebud-base);
  border-radius: var(--tastebud-bdr-radius);
}

.about-three__content-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1em;
  color: var(--tastebud-white);
  height: 60px;
  width: 60px;
  background-color: var(--tastebud-black);
  border-radius: var(--tastebud-bdr-radius);
}

.about-three__content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--tastebud-white);
  margin-top: 15px;
}

.about-three__right {
  position: relative;
  display: block;
  margin-left: 25px;
  margin-right: -111px;
}

.about-three__right .sec-title {
  padding-bottom: 29px;
}

.about-three__right .sec-title .sub-title::before {
  display: none;
}

.about-three__right .sec-title .sub-title {
  padding-left: 0;
}

.about-three__text-1 {
  font-size: 20px;
  font-weight: 500;
  color: var(--tastebud-black);
}

.about-three__text-2 {
  margin-top: 20px;
}

.about-three__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 29px;
  margin-bottom: 28px;
}

.about-three__points {
  position: relative;
  display: block;
}

.about-three__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-three__points li+li {
  margin-top: 10px;
}

.about-three__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--tastebud-base);
  border-radius: 50%;
  font-size: 12px;
  color: var(--tastebud-white);
}

.about-three__points li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__points li .text p {
  color: var(--tastebud-black);
  font-size: 18px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Menu Two
--------------------------------------------------------------*/
.menu-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background-color: var(--tastebud-white);
  z-index: 1;
}

.menu-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.06;
  z-index: -1;
}

.menu-two__inner {
  position: relative;
  display: block;
}

.menu-two__list {
  position: relative;
  display: block;
}

.menu-two__list li {
  position: relative;
  display: block;
  border-bottom: 2px solid rgba(var(--tastebud-black-rgb), .10);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.menu-two__list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-two__single {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-two__content-box {
  position: relative;
  display: block;
  max-width: 710px;
  width: 100%;
}

.menu-two__title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.menu-two__border-box {
  position: relative;
  display: block;
  width: 180px;
  border: 1px dashed var(--tastebud-black);
  opacity: .30;
}

.menu-two__price {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
}

.menu-two__text {
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 22px;
}

.menu-two__btn-box {
  position: relative;
  display: block;
}

.menu-two__img {
  position: relative;
  display: block;
  max-width: 524px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
}

.menu-two__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  transition: all 800ms ease;
}

.menu-two__single:hover .menu-two__img img {
  transform: scale(1.06) rotate(0deg);
}

.menu-two__price-discount {
  position: absolute;
  top: 20px;
  right: -85px;
  background-color: var(--tastebud-base);
  padding: 15px 85px 15px;
  transform: rotate(30deg);
}

.menu-two__price-discount p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  color: var(--tastebud-white);
}

/*--------------------------------------------------------------
# Booking Table Two
--------------------------------------------------------------*/
.booking-table-two {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.booking-table-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.booking-table-two__shape-1 {
  position: absolute;
  top: -20px;
  left: -150px;
  z-index: -1;
}

.booking-table-two__shape-1 img {
  width: auto;
}

.booking-table-two__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.booking-table-two__shape-2 img {
  width: auto;
}

.booking-table-two .sec-title .sub-title h4 {
  color: var(--tastebud-white);
}

.booking-table-two .sec-title .sub-title::after,
.booking-table-two .sec-title .sub-title::before {
  background-color: var(--tastebud-white);
}

.booking-table-two .sec-title h2,
.booking-table-two .sec-title h2 span {
  color: var(--tastebud-white);
}

.booking-table-two__form {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 0;
  background-color: rgba(var(--tastebud-white-rgb), .07);
  border-radius: var(--tastebud-bdr-radius);
  padding: 50px 50px 50px;
}

.booking-table-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.booking-table-two__input-box input[type="text"],
.booking-table-two__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--tastebud-white-rgb), .30);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--tastebud-white-rgb), .60);
  display: block;
  font-weight: 400;
  line-height: 60px;
  border-radius: var(--tastebud-bdr-radius);
}

.booking-table-two__input-box-icon {
  position: absolute;
  right: 20px;
  bottom: 13px;
}

.booking-table-two__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: rgba(var(--tastebud-white-rgb), .60);
}

.booking-table-two__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

/*--------------------------------------------------------------
# Popular Dishe
--------------------------------------------------------------*/
.popular-dishe {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.popular-dishe__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.popular-dishe__shape-1 img {
  width: auto;
}

.popular-dishe__single {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  border-radius: var(--tastebud-bdr-radius);
  padding: 30px 30px 30px;
  margin-bottom: 30px;
}

.popular-dishe__img-box {
  position: relative;
  display: block;
  background-color: var(--tastebud-gray-bg);
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
}

.popular-dishe__shop-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  background-color: rgba(var(--tastebud-black-rgb), .80);
  max-width: 158px;
  margin: 0 auto 0;
  padding: 6px 0;
  border-radius: var(--tastebud-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.popular-dishe__single:hover .popular-dishe__shop-info {
  opacity: 1;
  transform: translateY(0%);
}

.popular-dishe__shop-info a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--tastebud-base);
  border-radius: 50%;
  color: var(--tastebud-white);
  font-size: 14px;
}

.popular-dishe__shop-info a:hover {
  background-color: var(--tastebud-white);
  color: var(--tastebud-base);
}

.popular-dishe__img {
  position: relative;
  display: block;
  max-width: 312px;
  width: 100%;
  margin: 0 auto 0;
  overflow: hidden;
}

.popular-dishe__img img {
  width: 100%;
  transition: all 800ms ease;
}

.popular-dishe__single:hover .popular-dishe__img img {
  transform: scale(1.06) rotate(0deg);
}

.popular-dishe__content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.popular-dishe__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

.popular-dishe__title a {
  color: var(--tastebud-black);
}

.popular-dishe__title a:hover {
  color: var(--tastebud-base);
}

.popular-dishe__text {
  margin-top: 15px;
  margin-bottom: 15px;
}

.popular-dishe__btn-box {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
# App One
--------------------------------------------------------------*/
.app-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-base);
  overflow: hidden;
  padding: 120px 0px 0px;
  z-index: 1;
}

.app-one__shape-bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background-color: rgba(var(--tastebud-white-rgb), .05);
  border-bottom-right-radius: 300px;
  z-index: -1;
}

.app-one__shape-2 {
  position: absolute;
  top: -600px;
  right: -100px;
  height: 800px;
  width: 800px;
  border-radius: 50%;
  background-color: rgba(var(--tastebud-white-rgb), .05);
  z-index: -1;
}

.app-one__shape-3 {
  position: absolute;
  bottom: -45px;
  right: -100px;
  height: 800px;
  width: 800px;
  border-radius: 0;
  background-color: rgba(var(--tastebud-white-rgb), .05);
  clip-path: polygon(49% 0, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.app-one__shape4 {
  position: absolute;
  top: 55px;
  left: 10px;
  z-index: -1;
}

.app-one__pizza-shape {
  position: absolute;
  bottom: -15px;
  left: 800px;
  z-index: -1;
}

.app-one__pizza-shape img {
  width: auto;
}

.app-one__left {
  position: relative;
  display: block;
  margin-top: 60px;
}

.app-one__left .sec-title .sub-title {
  padding-left: 0;
}

.app-one__left .sec-title .sub-title h4 {
  color: var(--tastebud-white);
}

.app-one__left .sec-title .sub-title::before {
  display: none;
}

.app-one__left .sec-title .sub-title::after {
  background-color: var(--tastebud-white);
}

.app-one__left .sec-title h2 {
  color: var(--tastebud-white);
}

.app-one__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-one__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(var(--tastebud-white-rgb), .10);
  color: var(--tastebud-white);
  padding: 15px 25px 15px;
  border-radius: 5px;
}

.app-one__btn-box a.last-child {
  background-color: rgba(var(--tastebud-white-rgb), .10);
}

.app-one__btn-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.app-one__btn-icon i {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--tastebud-white);
}

.app-one__btn-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.app-one__btn-content p {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 12px;
}

.app-one__btn-content h3 {
  color: var(--tastebud-white);
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  margin-top: 8px;
  text-transform: capitalize;
}

.app-one__right {
  position: relative;
  display: block;
  margin-left: 96px;
}

.app-one__img-box {
  position: relative;
  display: block;
}

.app-one__img {
  position: relative;
  display: block;
}

.app-one__img img {
  width: 100%;
}

.app-one__shpae-1 {
  position: absolute;
  top: 100px;
  right: -80px;
}

.app-one__shpae-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# App One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0px 120px;
  z-index: 1;
}

.faq-one__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.faq-one__shape-1 img {
  width: auto;
}

.faq-one__inner {
  position: relative;
  display: block;
}

.faq-one__img {
  position: absolute;
  bottom: -120px;
  left: -200px;
}

.faq-one__img img {
  width: auto;
}

.faq-one__content {
  position: relative;
  display: block;
}

.faq-one__content .sec-title .sub-title::before {
  display: none;
}

.faq-one__content .sec-title .sub-title {
  padding-left: 0;
}

.faq-one__content .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background: var(--tastebud-white);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__content .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--tastebud-black-rgb), .15);
  background: var(--tastebud-white);
}

.faq-one__content .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 22px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__content .faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: var(--tastebud-base);
}

.faq-one__content .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--tastebud-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__content .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--tastebud-white);
}

.faq-one__content .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-one__content .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--tastebud-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: var(--tastebud-base);
}

.faq-one__content .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--tastebud-base);
  background-color: var(--tastebud-white);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__content .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 5px;
}

.faq-one__content .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-base);
  padding: 80px 0px 80px;
  z-index: 1;
}

.brand-one__carousel {
  position: relative;
  display: block;
}

.single-brand-one {
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.single-brand-one a {
  position: relative;
  display: block;
  z-index: 5;
}

.single-brand-one a img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateY(50%) scaleY(2);
  transform: translateY(50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-brand-one:hover a img:first-child {
  -webkit-transform: translateY(0) scaleY(1);
  transform: translateY(0) scaleY(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-brand-one:hover a img:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleY(2);
  transform: translateY(-50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-brand-one a img {
  position: relative;
  display: block;
  width: auto;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
  opacity: 0.85;
}

.brand-one__carousel .single-brand-one a img {
  width: auto;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-three__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.blog-three__top .sec-title {
  padding-bottom: 0;
}

.blog-three__top .sec-title .sub-title::before {
  display: none;
}

.blog-three__top .sec-title .sub-title {
  padding-left: 0;
}

.blog-three__top-left {
  position: relative;
  display: block;
}

.blog-three__btn {
  position: relative;
  display: block;
}

.blog-three__bottom {
  position: relative;
  display: block;
}

.blog-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-three__img-box {
  position: relative;
  display: block;
}

.blog-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
}

.blog-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: var(--tastebud-black);
  border-radius: var(--tastebud-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: .5s;
  z-index: 1;
}

.blog-three__single:hover .blog-three__img::before {
  opacity: .5;
}

.blog-three__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  transition: all 800ms ease;
}

.blog-three__single:hover .blog-three__img img {
  transform: scale(1.1) rotate(0deg);
}

.blog-three__content {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 29px 15px 31px;
  border-bottom-right-radius: var(--tastebud-bdr-radius);
  margin-top: -50px;
  margin-left: 50px;
  z-index: 5;
}

.blog-three__date {
  position: absolute;
  bottom: 50px;
  right: 0;
  height: 55px;
  width: 55px;
  background-color: var(--tastebud-base);
  border-top-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.blog-three__date p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--tastebud-white);
  font-family: var(--tastebud-font-two);
}

.blog-three__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: absolute;
  top: 102px;
  left: -153px;
  transform: rotate(90deg);
  background-color: var(--tastebud-base);
  padding: 12px 25px;
  border-bottom-right-radius: 10px;
}

.blog-three__meta>li {
  position: relative;
  display: block;
}

.blog-three__meta>li>a {
  font-size: 16px;
  color: var(--tastebud-white);
  position: relative;
  display: block;
}

.blog-three__meta>li>a:hover {
  color: var(--tastebud-white);
}

.blog-three__meta>li>a>i {
  position: relative;
  display: inline-block;
  color: var(--tastebud-white);
  padding-right: 7px;
}

.blog-three__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  font-family: var(--tastebud-font);
}

.blog-three__title a {
  color: var(--tastebud-black);
}

.blog-three__title a:hover {
  color: var(--tastebud-base);
}

.blog-three__text {
  margin-top: 11px;
  margin-bottom: 25px;
}

.blog-three__btn-two {
  position: relative;
  display: block;
}

.blog-three__btn-two a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 18px;
  color: var(--tastebud-black);
  font-weight: 600;
  font-family: var(--tastebud-font-two);
  line-height: 1em;
}

.blog-three__btn-two a:hover {
  color: var(--tastebud-base);
}

.blog-three__btn-two a span::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  top: 2px;
  margin-left: 2px;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  z-index: 2;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--tastebud-base);
  padding: 60px 60px 60px;
  border-radius: var(--tastebud-bdr-radius);
  z-index: 1;
  overflow: hidden;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-one__title-box {
  position: relative;
  display: block;
}

.cta-one__title-box h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1em;
  color: var(--tastebud-white);
}

.cta-one__title-box p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 14px;
  color: var(--tastebud-white);
  font-weight: 500;
  opacity: .90;
}

.cta-one__btn-box {
  position: relative;
  display: block;
}

.cta-one__btn-box .thm-btn span,
.cta-one__btn-box .thm-btn i {
  color: var(--tastebud-base);
}

.cta-one__btn-box .thm-btn span::before,
.cta-one__btn-box .thm-btn i::before {
  background-color: var(--tastebud-white);
}

.cta-one__btn-box .thm-btn:hover span,
.cta-one__btn-box .thm-btn:hover i {
  color: var(--tastebud-white);
}


/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site-footer-three {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  margin-top: -100px;
  z-index: 1;
}

.site-footer-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.site-footer-three__top {
  position: relative;
  display: block;
  padding: 210px 0 110px;
}

.site-footer-three__top-inner {
  position: relative;
  display: block;
}

.footer-widget-three__about {
  position: relative;
  display: block;
}

.footer-widget-three__logo {
  position: relative;
  display: block;
}

.footer-widget-three__about-text {
  color: rgba(var(--tastebud-white-rgb), .80);
  margin-top: 30px;
  margin-bottom: 16px;
  line-height: 26px;
}

.footer-widget-three__emergency-call {
  position: relative;
  display: block;
}

.footer-widget-three__emergency-call p {
  color: rgba(var(--tastebud-white-rgb), .80);
  font-weight: 500;
}

.footer-widget-three__emergency-call a {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--tastebud-white);
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__emergency-call a:hover {
  color: var(--tastebud-white);
}

.footer-widget-three__emergency-mail {
  color: var(--tastebud-white);
}

.footer-widget-three__title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.footer-widget-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--tastebud-white);
}

.footer-widget-three__navigation {
  position: relative;
  display: block;
  margin-left: 70px;
}

.footer-widget-three__navigation-list {
  position: relative;
  display: block;
}

.footer-widget-three__navigation-list li {
  position: relative;
  display: block;
}

.footer-widget-three__navigation-list li+li {
  margin-top: 8px;
}

.footer-widget-three__navigation-list li a {
  color: rgba(var(--tastebud-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__navigation-list li a:before {
  content: "\f067";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
  color: rgba(var(--tastebud-white-rgb), .80);
  font-weight: 700;
  font-family: "Font Awesome 5 pro";
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__navigation-list li a:hover:before {
  opacity: 1;
  color: rgba(var(--tastebud-white-rgb), 1);
}

.footer-widget-three__navigation-list li a:hover {
  color: var(--tastebud-white);
  padding-left: 15px;
}

.footer-widget-three__quick-link {
  position: relative;
  display: block;
  margin-left: 24px;
}

.footer-widget-three__newsletter {
  position: relative;
  display: block;
  margin-left: 64px;
}

.footer-widget-three__newsletter .footer-widget-three__title-box {
  margin-bottom: 32px;
}

.footer-widget-three__newsletter-text {
  line-height: 26px;
  color: rgba(var(--tastebud-white-rgb), .80);
}

.footer-widget-three__newsletter-form {
  position: relative;
  display: block;
  margin-top: 25px;
}

.footer-widget-three__newsletter-input-box {
  position: relative;
  display: block;
}

.footer-widget-three__newsletter-input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--tastebud-white);
  padding-right: 75px;
  padding-left: 30px;
  background-color: rgba(var(--tastebud-white-rgb), .15);
  border-radius: 10px;
}

.footer-widget-three__newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 0;
  background-color: var(--tastebud-white);
  transition: all 500ms ease;
  padding: 0;
  font-size: 18px;
  color: var(--tastebud-black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget-three__newsletter-btn:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.site-footer-three__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--tastebud-white-rgb), .20);
}

.site-footer-three__bottom-inner {
  position: relative;
  display: flex;
  padding: 14px 0 23px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer-three__bottom-text {
  color: rgba(var(--tastebud-white-rgb), .80);
  font-weight: 500;
}

.site-footer-three__bottom-text a {
  color: rgba(var(--tastebud-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-three__bottom-text a:hover {
  color: var(--tastebud-white);
}

.site-footer-three__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer-three__social a {
  position: relative;
  height: 38px;
  width: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--tastebud-white);
  background-color: #292929;
  font-size: 16px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer-three__social a:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.site-footer-three__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--tastebud-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer-three__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer-three__social a+a {
  margin-left: 15px;
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--tastebud-black);
  border-top: 1px solid rgba(var(--tastebud-white-rgb), .1);
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .5;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 136px 0 142px;
  z-index: 1;
}

.page-header__inner h2 {
  color: var(--tastebud-white);
  font-size: 75px;
  line-height: 85px;
  font-weight: 600;
  margin-bottom: 15px;
}

.thm-breadcrumb__inner {
  position: relative;
  display: block;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--tastebud-white);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--tastebud-white);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--tastebud-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 12px;
  color: var(--tastebud-white);
}

/*--------------------------------------------------------------
# Menu Details
--------------------------------------------------------------*/
.menu-details {
  position: relative;
  display: block;
  padding: 110px 0px 120px;
  z-index: 1;
}

.menu-details__left {
  position: relative;
  display: block;
}

.menu-details__top {
  position: relative;
  display: block;
}

.menu-details__top h3 {
  font-size: 35px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.menu-details__top p {}

.menu-details__img-one {
  position: relative;
  display: block;
  margin-top: 30px;
}

.menu-details__img-one img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
}

.menu-details__ingredients {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 35px;
}

.menu-details__title {
  font-size: 30px;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 33px;
}

.menu-details__ingredients-list-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.menu-details__ingredients-list {
  position: relative;
  display: block;
}

.menu-details__ingredients-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-details__ingredients-list li+li {
  margin-top: 10px;
}

.menu-details__ingredients-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--tastebud-base);
}

.menu-details__ingredients-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.menu-details__ingredients-list li .text p {
  font-size: 18px;
  color: var(--tastebud-black);
  font-weight: 600;
}

.menu-details__making-food {
  position: relative;
  display: block;
}

.menu-details__making-food-list-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-details__making-food-list {
  position: relative;
  display: block;
}

.menu-details__making-food-list li {
  position: relative;
  display: flex;
  gap: 20px;
}

.menu-details__making-food-list li+li {
  margin-top: 30px;
}

.menu-details__making-food-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: var(--tastebud-base);
  border-radius: 50%;
  font-size: 24px;
  color: var(--tastebud-white);
  top: 3px;
}

.menu-details__making-food-list li .content {
  position: relative;
  display: block;
  flex: 1;
}

.menu-details__making-food-list li .content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 12px;
}

.menu-details__bottom-content {
  position: relative;
  display: block;
  margin-top: 35px;
  margin-bottom: 35px;
}

.menu-details__bottom-content p {
  margin-bottom: 25px;
}

.menu-details__bottom-img {
  position: relative;
  display: block;
}

.menu-details__bottom-img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
}

.menu-details__nutrition {
  position: relative;
  display: block;
}

.menu-details__nutrition-list {
  position: relative;
  display: block;
}

.menu-details__nutrition-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-details__nutrition-list li+li {
  margin-top: 10px;
}

.menu-details__nutrition-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--tastebud-base);
}

.menu-details__nutrition-list li .text {
  position: relative;
  display: block;
  flex: 1;
}


/*--------------------------------------------------------------
# Blog Page 
--------------------------------------------------------------*/
.blog-page {
  padding: 120px 0px 120px;
}


/*--------------------------------------------------------------
# Pagination 
--------------------------------------------------------------*/
.blog-list__pagination {
  position: relative;
  display: block;
  text-align: center;
}

.blog-list__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  display: inline-block;
  color: var(--tastebud-black);
  font-weight: 500;
  font-size: 18px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  font-family: var(--tastebud-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:hover a,
.blog-list__pagination .pg-pagination li.active a {
  border: 1px solid var(--tastebud-base);
  color: var(--tastebud-black);
}

.blog-page .blog-list__pagination {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Blog Standard Css
--------------------------------------------------------------*/
.blog-standard {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.blog-standard__left {
  position: relative;
  display: block;
  margin-right: 2px;
}

.blog-standard__single {
  position: relative;
  display: block;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  margin-bottom: 50px;
}

.blog-standard__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  z-index: 1;
}

.blog-standard__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-standard__single:hover .blog-standard__img:before {
  opacity: 0.2;
}

.blog-standard__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-standard__single:hover .blog-standard__img img {
  transform: scale(1.06) rotate(0deg);
}

.blog-standard__content {
  position: relative;
  display: block;
  padding: 34px 40px 40px;
  background-color: var(--tastebud-white);
}

.blog-standard__content-inner {
  position: relative;
  display: block;
}

.blog-standard__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-standard__meta li {
  position: relative;
  display: block;
}

.blog-standard__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--tastebud-font-color);
  font-weight: 500;
}

.blog-standard__meta li a span {
  color: var(--tastebud-base);
}

.blog-standard__meta li a:hover {
  color: var(--tastebud-base);
}

.blog-standard__title {
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 27px;
}

.blog-standard__title a {
  color: var(--tastebud-black);
}

.blog-standard__title a:hover {
  color: var(--tastebud-base);
}

.blog-standard__text {
  margin-bottom: 20px;
}

.blog-standard__btn {
  position: relative;
  display: block;
}


/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--tastebud-base);
  content: "";
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 50px 30px 50px;
  border-radius: var(--tastebud-bdr-radius);
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--tastebud-white);
  color: var(--tastebud-font-color);
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--tastebud-font-color);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--tastebud-font-color);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--tastebud-font-color);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--tastebud-font-color);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--tastebud-font-color);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--tastebud-font-color);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--tastebud-font-color);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--tastebud-black);
  color: var(--tastebud-white);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
  padding: 42px 30px 50px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li+li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--tastebud-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 16px 20px 15px;
  background-color: var(--tastebud-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--tastebud-font-two);
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--tastebud-base);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
  color: var(--tastebud-white);
}

.sidebar__category-list li.active a {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--tastebud-black);
  font-size: 15px;
  font-weight: 600;
  background-color: rgba(var(--tastebud-black-rgb), .15);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--tastebud-font);
  border-top-right-radius: var(--tastebud-bdr-radius);
  border-bottom-right-radius: var(--tastebud-bdr-radius);
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--tastebud-white);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
}

.sidebar__post-list {
  position: relative;
  display: block;
}

.sidebar__post-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidebar__post-list li+li {
  margin-top: 24px;
}

.sidebar__post-image {
  position: relative;
  display: block;
  max-width: 80px;
  width: 100%;
  border-radius: 12px;
}

.sidebar__post-image img {
  width: 100%;
  border-radius: 12px;
}

.sidebar__post-content {
  position: relative;
  display: block;
  flex: 1;
}

.sidebar__post-date {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tastebud-font-color);
}

.sidebar__post-date span {
  position: relative;
  font-size: 14px;
  color: var(--tastebud-base);
}

.sidebar__post-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 4px;
}

.sidebar__post-title a {
  color: var(--tastebud-black);
}

.sidebar__post-title a:hover {
  color: var(--tastebud-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
  padding: 41px 30px 40px;
  overflow: hidden;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--tastebud-font-color);
  background: var(--tastebud-white);
  padding: 6px 20px;
  border-radius: var(--tastebud-bdr-radius);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--tastebud-white);
  background: var(--tastebud-base);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
  margin-right: 2px;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
}

.blog-details__date {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tastebud-base);
  text-align: center;
  width: 80px;
  height: 74px;
  background-color: var(--tastebud-base);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='74' viewBox='0 0 80 74'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='80' height='74'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='74' viewBox='0 0 80 74'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='80' height='74'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.blog-details__date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: var(--tastebud-white);
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--tastebud-base);
  border-radius: 16px;
}

.blog-details__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tastebud-white);
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tastebud-font-color);
}

.blog-details__meta li a span {
  color: var(--tastebud-base);
}

.blog-details__meta li a:hover {
  color: var(--tastebud-base);
}

.blog-details__title {
  font-size: 35px;
  font-weight: 600;
  line-height: 50px;
  margin-top: 30px;
  margin-bottom: 19px;
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__author-box {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
  padding: 40px 40px 37px;
}

.blog-details__author-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--tastebud-black);
  margin-bottom: 30px;
}

.blog-details__author-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: right;
  color: var(--tastebud-black);
  font-family: var(--tastebud-font-two);
}

.blog-details__author-name span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--tastebud-font);
}

.blog-details__title-2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 48px;
  margin-top: 41px;
  margin-bottom: 19px;
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img img {
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
  padding: 30px 30px 30px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__tag-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.blog-details__tag-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-details__tag-list li {
  position: relative;
  display: block;
}

.blog-details__tag-list li a {
  position: relative;
  display: inline-block;
  background-color: var(--tastebud-white);
  color: var(--tastebud-font-color);
  padding: 10px 15px 10px;
  border-radius: var(--tastebud-bdr-radius);
}

.blog-details__tag-list li a:hover {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
}

.blog-details__share-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__share-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -0.72px;
}

.blog-details__share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-details__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 15px;
  color: var(--tastebud-black);
  background-color: var(--tastebud-white);
  border-radius: 50%;
}

.blog-details__share a:hover {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
}

.comment-one {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
  padding: 40px 40px 40px;
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--tastebud-white);
  border: 1px solid rgba(var(--tastebud-black-rgb), 0.10);
  border-radius: var(--tastebud-bdr-radius);
  padding: 29px 29px 30px;
}

.comment-one__single+.comment-one__single {
  margin-top: 30px;
}

.comment-one__image {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.comment-one__image img {
  width: 100%;
  border-radius: 50%;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--tastebud-black);
  margin-bottom: 3px;
}

.comment-one__content p {
  margin-top: 14px;
}

.comment-one__btn-box {
  position: absolute;
  top: 0;
  right: 0px;
}

.comment-one__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--tastebud-black);
}

.comment-one__btn-box a:hover {
  color: var(--tastebud-base);
}

.comment-form {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 40px 40px 40px;
  border-radius: var(--tastebud-bdr-radius);
  margin-top: 60px;
}

.comment-form__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.comment-form__text {
  margin-top: 23px;
  margin-bottom: 38px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  background-color: var(--tastebud-white);
  border: 1px solid rgba(var(--tastebud-black-rgb), 0.10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--tastebud-font-color);
  display: block;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--tastebud-font-color);
  height: 140px;
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  background-color: var(--tastebud-white);
  border: 1px solid rgba(var(--tastebud-black-rgb), 0.10);
  padding: 20px 20px 30px;
  outline: none;
  font-weight: 400;
}

.comment-form__input-box.text-message-box {
  height: 140px;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box .thm-btn {
  border: none;
}


/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.contact-info__single {
  position: relative;
  display: block;
  border-radius: var(--tastebud-bdr-radius);
  background-color: rgba(var(--tastebud-black-rgb), .05);
  text-align: center;
  padding: 40px 40px 41px;
  margin-bottom: 30px;
  height: 90%;
}

.contact-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #ef5744;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.contact-info__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--tastebud-black);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
  transform: scaleX(1);
}

.contact-info__icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: #fff;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
  transform: scale(0.9);
  color: var(--tastebud-white);
}


.contact-info__single p {
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-info__single h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--tastebud-black);
  font-family: var(--tastebud-font);
}

.contact-info__single h5 a {
  color: var(--tastebud-black);
}

.contact-info__single h5 a:hover {
  color: var(--tastebud-base)
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: var(--tastebud-black);
  border-radius: 10px;
  padding: 60px 0 60px;
}

.contact-page__left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 10px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 523px;
  width: 100%;
  border-radius: 10px;
}

.contact-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 40px;
}

.contact-page__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--tastebud-white);
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
  height: 60px;
  width: 100%;
  background-color: rgba(var(--tastebud-white-rgb), 0.10);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--tastebud-white-rgb), .70);
  display: block;
  border-radius: var(--tastebud-bdr-radius);
}

.contact-page__input-box textarea {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--tastebud-white-rgb), .70);
  height: 175px;
  width: 100%;
  background-color: rgba(var(--tastebud-white-rgb), 0.10);
  border: none;
  padding: 15px 20px 30px;
  border-radius: var(--tastebud-bdr-radius);
  outline: none;
  position: relative;
  display: block;
}

.contact-page__input-box.text-message-box {
  height: 175px;
}


.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn-box .thm-btn {
  border: none;
}

.contact-page__btn-box .thm-btn span::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.contact-page__btn-box .thm-btn i::after {
  background-color: rgba(var(--tastebud-white-rgb), 1);
}

.contact-page__btn-box .thm-btn:hover span,
.contact-page__btn-box .thm-btn:hover i {
  color: var(--tastebud-base);
}

.contact-page__btn-box .thm-btn .hover-btn {
  background-color: var(--tastebud-white);
}

.contact-page__btn-box .thm-btn:hover {
  color: var(--tastebud-black);
}

/***
=============================================
Error Page
=============================================
***/
.error-page {
  position: relative;
  display: block;
  background: var(--tastebud-white);
  padding: 120px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__img {
  position: relative;
  display: block;
  mix-blend-mode: difference;
}

.error-page__img img {
  width: auto;
}

.error-page__content {
  position: relative;
  display: block;
}

.error-page__content h2 {
  color: var(--tastebud-base);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.error-page__content p {
  color: var(--tastebud-black);
  margin: 0;
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 21px;
}


/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 108px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
  margin-bottom: 37px;
}

.team-details__top-left {
  position: relative;
  display: block;
}

.team-details__img-1 {
  position: relative;
  display: block;
}

.team-details__img-1 img {
  width: 100%;
  border-radius: 10px;
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.team-details__client-box {
  position: relative;
  display: block;
}

.team-details__client-name {
  font-size: 33px;
  font-weight: 600;
  line-height: 43px;
  text-transform: capitalize;
}

.team-details__client-sub-title {
  position: relative;
  display: block;
  margin-top: 3px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 30px;
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--tastebud-base);
  font-size: 18px;
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--tastebud-base);
  z-index: 1;
}

.team-details__social a:hover {
  color: var(--tastebud-white);
  border: 1px solid var(--tastebud-base);
}

.team-details__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--tastebud-base);
  border-radius: 0%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-details__social a:hover:before {
  transform: scaleX(1);
}

.team-details__social a+a {
  margin-left: 10px;
}

.team-details__client-address {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  margin-top: 19px;
  padding-top: 20px;
}

.team-details__client-address li {
  position: relative;
  display: block;
}

.team-details__client-address li+li {
  margin-top: 21px;
}

.team-details__client-address li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tastebud-black);
  font-size: 18px;
  font-weight: 500;
}

.team-details__client-address li p span {
  color: var(--tastebud-black);
  font-size: 16px;
}

.team-details__client-address li h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 10px;
  font-family: var(--tastebud-font);
}

.team-details__client-address li h5 a {
  color: var(--tastebud-black);
}

.team-details__client-address li h5 a:hover {
  color: var(--tastebud-base);
}

.team-details__bottom {
  position: relative;
  display: block;
}

.team-details__bottom-left {
  position: relative;
  display: block;
}

.team-details__bottom-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 13px;
}

.team-details__practice-area {
  position: relative;
  display: block;
  margin-top: 15px;
}

.team-details__practice-area-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team-details__practice-area-list-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.team-details__practice-area-list {
  position: relative;
  display: block;
}

.team-details__practice-area-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-details__practice-area-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6px;
  width: 6px;
  background-color: var(--tastebud-base);
}

.team-details__practice-area-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.team-details__practice-area-list li .text p {
  font-weight: 500;
  color: var(--tastebud-base);
}


.team-details__bottom-right {
  position: relative;
  display: block;
}

.team-details__progress-title-1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 23px;
}

.team-details__progress-list {
  position: relative;
  display: block;
}

.team-details__progress-list li {
  position: relative;
  display: block;
}

.team-details__progress-list li+li {
  margin-top: 20px;
}

.team-details__progress {
  position: relative;
  display: block;
}

.team-details__progress-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--tastebud-black);
  margin-bottom: 11px;
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: rgba(var(--tastebud-base-rgb), .10);
  border-radius: 6px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--tastebud-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress .count-text {
  position: absolute;
  right: -18px;
  bottom: 22px;
  color: var(--tastebud-black);
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: var(--tastebud-font);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Details Contact Page
--------------------------------------------------------------*/
.team-details-contact {
  position: relative;
  display: block;
  padding: 0px 0 120px;
  z-index: 1;
}

.team-details-contact .container {
  max-width: 830px;
}

.team-details-contact__inner {
  position: relative;
  display: block;
  text-align: center;
}

.team-details-contact__form {
  position: relative;
  display: block;
}

.team-details-contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-details-contact__input-box input[type="text"],
.team-details-contact__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--tastebud-font-color);
  display: block;
  border-radius: var(--tastebud-bdr-radius);
}

.team-details-contact__input-box .select-box {
  width: 100%;
}

.team-details-contact__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--tastebud-font-color);
  font-weight: 400;
  border-radius: var(--tastebud-bdr-radius);
  line-height: 60px;
  display: block;
  float: none;
}

.team-details-contact__input-box .nice-select:after {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--tastebud-gray);
  border-right: 2px solid var(--tastebud-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--tastebud-font-color);
  position: relative;
  display: block;
  border-radius: var(--tastebud-bdr-radius);
}

.team-details-contact__input-box.text-message-box {
  height: 200px;
}

.team-details-contact__btn-box {
  position: relative;
  display: block;
}

.team-details-contact__btn-box .thm-btn {
  border: none;
}

.team-details-contact__btn-box .thm-btn:hover {
  border: none;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}


.testimonials-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0px 100px;
  z-index: 1;
}

.faq-page__single {
  margin-bottom: 20px;
}

.faq-page .faq-one__content .faq-one-accrodion .accrodion-title h4 {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Cuisine Two
--------------------------------------------------------------*/
.cuisine-two {
  padding: 120px 0px 0px;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  padding: 120px 0px 120px;
}

/*--------------------------------------------------------------
# Catalog List
--------------------------------------------------------------*/
.catalog-list {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.catalog-list__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.catalog-list__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--tastebud-bdr-radius);
  border-top-right-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.catalog-list__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--tastebud-black);
  border-top-left-radius: var(--tastebud-bdr-radius);
  border-top-right-radius: var(--tastebud-bdr-radius);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.catalog-list__single:hover .catalog-list__img::before {
  opacity: 0.6;
}

.catalog-list__img img {
  width: 100%;
  transform: scale(1.0);
  border-top-left-radius: var(--tastebud-bdr-radius);
  border-top-right-radius: var(--tastebud-bdr-radius);
  transition: all 1500ms ease;
}

.catalog-list__single:hover .catalog-list__img img {
  transform: scale(1.05) rotate(0deg);
}

.catalog-list__content {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 40px 35px 35px;
  border-bottom-left-radius: var(--tastebud-bdr-radius);
  border-bottom-right-radius: var(--tastebud-bdr-radius);
}

.catalog-list__shop-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-list__shop-info a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .15);
  border-radius: 10px;
  font-size: 16px;
  color: var(--tastebud-base);
}

.catalog-list__shop-info a:hover {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
}

.catalog-list__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 10px;
}

.catalog-list__title a {
  color: var(--tastebud-black);
}

.catalog-list__title a:hover {
  color: var(--tastebud-base);
}

.catalog-list__title:hover {
  color: var(--tastebud-base);
}

.catalog-list__star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.catalog-list__star a {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--tastebud-base);
}

.catalog-list__price-box {
  position: relative;
  display: block;
}

.catalog-list__price-box h5 {
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
}

.catalog-list__price-box h5 span {
  color: var(--tastebud-base);
}

/*--------------------------------------------------------------
# Booked Table One Page
--------------------------------------------------------------*/
.booked-table-one-page {
  padding: 120px 0px 30px;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 110px;
}

.gallery-page .row {
  --bs-gutter-x: 10px;
}

.gallery-page .container {
  max-width: 1572px;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.gallery-page__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  right: 0;
  background-color: var(--tastebud-black);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 2;
}

.gallery-page__single:hover .gallery-page__img:before {
  opacity: .70;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-page__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.gallery-page__img img {
  width: 100%;
  border-radius: 8px;
}

.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-page__icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--tastebud-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}


.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-page__icon a:hover {
  color: var(--tastebud-base);
}

/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--tastebud-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 30px 30px 30px;
  border-radius: var(--tastebud-bdr-radius);
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--tastebud-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--tastebud-font-color);
  font-family: var(--tastebud-font);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--tastebud-base);
  color: var(--tastebud-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--tastebud-black);
  color: var(--tastebud-white);
}

.product__price-ranger {
  position: relative;
  padding: 27px 30px 30px;
  margin: 0;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  border-radius: var(--tastebud-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--tastebud-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--tastebud-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--tastebud-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background: var(--tastebud-black);
  float: right;
  text-align: center;
  border: none;
  color: var(--tastebud-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--tastebud-font-color);
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--tastebud-font-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}


.shop-category {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 29px 30px 30px;
  border-radius: var(--tastebud-bdr-radius);
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--tastebud-font-color);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--tastebud-font-color);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--tastebud-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--tastebud-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--tastebud-base);
  font-family: 'icomoon' !important;
  content: "\e91e";
  opacity: 1;
  font-size: 12px;
  color: var(--tastebud-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-product-tags {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 25px 30px 30px;
  border-radius: var(--tastebud-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.shop-product__tags-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--tastebud-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--tastebud-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
  color: var(--tastebud-white);
  background: var(--tastebud-base);
}


.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li+li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--tastebud-font-color);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--tastebud-base);
  border-radius: 0%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
  border-color: var(--tastebud-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 29px 30px 27px;
  border-radius: var(--tastebud-bdr-radius);
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--tastebud-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tastebud-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--tastebud-base);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--tastebud-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--tastebud-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
  margin-left: 5px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 130px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: rgba(var(--tastebud-black-rgb), .05);
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--tastebud-bdr-radius);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

.product__all-tab {
  position: relative;
  display: block;
}

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 15px 15px 15px;
  border-radius: var(--tastebud-bdr-radius);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--tastebud-base);
}

.product__all-tab-button ul li+li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--tastebud-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--tastebud-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
  opacity: 1.0;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: var(--tastebud-white);
  padding: 0 0 30px;
  border-radius: var(--tastebud-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li+li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--tastebud-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li+li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--tastebud-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 15px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--tastebud-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--tastebud-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-font-color);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--tastebud-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 3.5px 5px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  color: var(--tastebud-base);
  font-size: 14px;
  margin-right: 5px;
}

.single-product-style1__review p {
  color: var(--tastebud-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: var(--tastebud-white);
  border-radius: var(--tastebud-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tastebud-bdr-radius);
  border-right: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--tastebud-base);
  font-size: 16px;
}

.single-product-style2__review i+i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--tastebud-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--tastebud-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--tastebud-font-color);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--tastebud-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-left: 0;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li+li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--tastebud-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}



/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: rgba(var(--tastebud-font-color), 1);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--tastebud-black-rgb), .20);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--tastebud-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--tastebud-white);
  background: var(--tastebud-base);
  border-color: var(--tastebud-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--tastebud-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--tastebud-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--tastebud-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--tastebud-white);
}




/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}


.product-details__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--tastebud-base);
  opacity: 0;
  transition: all 500ms ease;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-radius: 10px;
}


.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--tastebud-white);
  background-color: rgba(var(--tastebud-black-rgb), .30);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}


.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}


.product-details__right {
  position: relative;
  display: block;
  margin-top: -9px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--tastebud-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--tastebud-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--tastebud-font-color);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
  font-weight: 600;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tastebud-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label {
  color: var(--tastebud-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio]+label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid rgba(var(--tastebud-black-rgb), .20);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--tastebud-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label i {
  border-color: var(--tastebud-base);
}

.product-details__select-size ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
  opacity: 1;
}


.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--tastebud-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--tastebud-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--tastebud-font-color);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--tastebud-font-color);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--tastebud-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tastebud-white);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--tastebud-black);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--tastebud-white);
  background-color: var(--tastebud-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 110px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--tastebud-black);
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--tastebud-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--tastebud-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--tastebud-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--tastebud-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  color: var(--tastebud-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--tastebud-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--tastebud-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--tastebud-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--tastebud-font-color);
  height: 160px;
  width: 100%;
  background-color: var(--tastebud-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--tastebud-bdr-radius);
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: var(--tastebud-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--tastebud-font-color);
  display: block;
  font-weight: 500;
  border-radius: var(--tastebud-bdr-radius);
}

.review-form-one__form .thm-btn {
  border: none;
}


/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.related-products__title {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.related-products__title h3 {
  font-size: 40px;
  line-height: 1.0em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: capitalize;
}

.related-products__title p {
  margin: 0;
}

.single-product-style1.instyle--2 {
  margin-bottom: 0px;
}


/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--tastebud-white);
  padding: 112px 0px 112px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--tastebud-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  padding-bottom: 22px;
  font-family: var(--tastebud-font-two);
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--tastebud-font-color);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--tastebud-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-table h3 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--tastebud-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--tastebud-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--tastebud-font-color);
  font-weight: 500;
}

.cart-table .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--tastebud-black);
  font-size: 16px;
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 28px 20px 30px;
  background-color: var(--tastebud-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: var(--tastebud-bdr-radius);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: rgba(var(--tastebud-black-rgb), .05);
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
  width: 100%;
  height: 50px;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--tastebud-font-color);
  font-family: var(--tastebud-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__btn-box {
  position: relative;
  display: block;
}

.cart-page__btn-box .thm-btn {
  border: none;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__coupon-code-text {
  margin-bottom: 16px;
}

.cart-page__coupon-code-form {
  position: relative;
  display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
  width: 100%;
  height: 50px;
  background-color: rgba(var(--tastebud-black-rgb), .05);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--tastebud-font-color);
  font-family: var(--tastebud-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  border: none;
  margin-top: 20px;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--tastebud-font-color);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--tastebud-black);
  font-size: 18px;
  margin-right: 60px;
  font-weight: 500;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--tastebud-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding: 53px 50px 60px;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title a {
  color: var(--tastebud-base);
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  margin-top: 16px;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: var(--tastebud-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--tastebud-font-color);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: var(--tastebud-white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.billing_input_box textarea:focus {
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--tastebud-font-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--tastebud-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--tastebud-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--tastebud-white);
  border-right: 2px solid var(--tastebud-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
  border-color: var(--tastebud-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: var(--tastebud-white);
  border-radius: 10px;
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.billing_details_form-btn-1 {
  position: relative;
  display: block;
}

.billing_details_form-btn-1 .thm-btn {
  border: none;
}

.billing_details_form-btn-2 {
  position: relative;
  display: block;
}

.billing_details_form-btn-2 .thm-btn {
  border: none;
}


.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding: 37px 30px 45px;
  z-index: 1;
}

.sidebar-order-summary .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--tastebud-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--tastebud-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}


.sidebar-order-summary__list {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.sidebar-order-summary__list>li>.left-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.left-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list>li>.right-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text p {
  font-size: 18px;
  margin: 0px;
}


.sidebar-order-summary__list>li>.right-text>ul {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li+li {
  margin-top: 5px;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.sidebar-order-summary__list>li>.right-text>ul>li label {
  position: relative;
  display: block;
  padding-right: 24px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
  position: absolute;
  top: 6px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid rgba(var(--tastebud-black-rgb), .15);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--tastebud-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
  border-color: var(--tastebud-base);
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}


.sidebar-order-summary__Payment {
  position: relative;
  display: block;
  margin-top: 37px;
}

.checkout__payment {
  position: relative;
  margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 23px;
}

.checkout__payment__title {
  display: flex;
  color: var(--tastebud-black);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--tastebud-white);
  border: 2px solid rgba(var(--tastebud-black-rgb), .10);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 10px;
  color: var(--tastebud-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--tastebud-base);
  border-color: var(--tastebud-base);
  content: '\f00c';
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--tastebud-font-color);
  font-weight: 400;
  margin-top: 15px;
}

.sidebar-order-summary__bottom {
  position: relative;
  display: block;
}

.sidebar-order-summary__bottom .text1 {
  margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
  color: var(--tastebud-base);
  text-decoration: underline;
}







.sidebar-order-summary__checked {
  position: relative;
  display: block;
  margin-top: 20px;
  ;
}

.sidebar-order-summary__checked label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--tastebud-font-color);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--tastebud-font);
}

.sidebar-order-summary__checked label a {
  color: var(--tastebud-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
  display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--tastebud-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.sidebar-order-summary__checked label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--tastebud-white);
  border-right: 2px solid var(--tastebud-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
  border-color: var(--tastebud-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.sidebar-order-summary__btn {
  position: relative;
  display: block;
  margin-top: 27px;
  line-height: 0px;
}



/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  display: block;
  background: var(--tastebud-white);
  padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .wishlist-table {
    min-width: 1170px;
  }
}

.wishlist-table {
  margin-bottom: 0px;
}

.wishlist-table thead th {
  color: var(--tastebud-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding-top: 22px;
  padding-bottom: 22px;
  font-family: var(--tastebud-font-two);
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--tastebud-font-color);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--tastebud-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.wishlist-table .product-box {
  display: flex;
  align-items: center;
}

.wishlist-table .cross-icon {
  position: relative;
  display: block;
}

.wishlist-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--tastebud-black);
  font-size: 16px;
}

.wishlist-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--tastebud-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--tastebud-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--tastebud-base);
}


.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"],
.sign-up-one__form form input[type="password"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: rgba(var(--tastebud-black-rgb), .05);
  width: 100%;
  height: 60px;
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-family: var(--tastebud-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus,
.sign-up-one__form form input[type="password"]:focus {
  border-color: var(--tastebud-base);
  background-color: var(--tastebud-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--tastebud-font-color);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tastebud-font-color);
  background-color: var(--tastebud-white);
  color: var(--tastebud-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--tastebud-font);
  font-weight: 500;
  padding: 10px 10px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--tastebud-base);
  background-color: var(--tastebud-white);
}

.sign-up-one__form form .google-facebook a+a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--tastebud-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--tastebud-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"],
.login-one__form form input[type="password"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--tastebud-black-rgb), .10);
  background-color: rgba(var(--tastebud-black-rgb), .05);
  width: 100%;
  height: 60px;
  color: var(--tastebud-font-color);
  font-size: 16px;
  font-family: var(--tastebud-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus,
.login-one__form form input[type="password"]:focus {
  border-color: var(--tastebud-base);
  background-color: var(--tastebud-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--tastebud-font-color);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}


.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--tastebud-font-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--tastebud-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--tastebud-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
  border-color: var(--tastebud-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--tastebud-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--tastebud-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--tastebud-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--tastebud-black);
}

.login-one__form form .create-account p a {
  color: var(--tastebud-base);
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page-one {
  padding: 120px 0px 120px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# About Page Three
--------------------------------------------------------------*/
.about-page-three {
  padding: 120px 0px 120px;
}

.main-menu__contact-list li .text p a:hover {
  color: #f01543;
}

.features-one__single-text a {
  font-size: 18px;
}

.features-one__single-text a span:before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  top: 2px;
  margin-left: 2px;
}

.c_btn,
.sp_btn {
  margin: 20px 0 0;
}

.c_btn a,
.sp_btn a {
  font-size: 20px;
}

.cuisine-one__single:hover .c_btn a {
  color: #fff;
}

.c_btn a:hover {
  color: #fff;
}

.sp_btn a:hover {
  color: #000;
}

.c_btn a span:before,
.sp_btn a span:before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  top: 2px;
  margin-left: 2px;

}

.features-one__single-icon img {
  max-width: 55px;
}

.features-one__single-text p {
  margin: 0 0 15px;
}

.features-one__single-text a:hover {
  color: #000 !important;
}

.cuisine-one__single-img img {
  border-radius: 20%;
  max-width: 250px;

}

.more_btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.foodq_s img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}


.slider-container {
  width: 100%;
  margin: auto;
  padding: 100px 0 50px;
}

.slider-container .swiper {
  padding-bottom: 60px;
}

.slider-container .swiper-slide {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider-container .swiper-slide:hover {
  transform: translateY(-8px);
}

.slider-container .card-image img {
  width: 100%;
  /* height:220px; */
  object-fit: cover;
  display: block;
}

.slider-container .card-content {
  padding: 40px 20px;
  text-align: center;
}

.slider-container .card-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #111827;
}

.slider-container .card-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

.slider-container .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.slider-container .btn:hover {
  background: #111827;
}

/* Arrows */
.slider-container .swiper-button-next,
.slider-container .swiper-button-prev {
  color: #fff;
  background: #ef5744;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.slider-container .swiper-button-next:after,
.slider-container .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

/* Dots */
.slider-container .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.slider-container .swiper-pagination-bullet-active {
  background: #ef5744;
}

/* Responsive */
@media(max-width:991px) {
  .slider-container .card-image img {
    height: 200px;
  }
}

.prf_servers {
  padding: 80px 80px;
}

.pf_text {
  background: #fff;
  padding: 40px 60px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  display: block;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.pf_text h2 {
  color: var(--tastebud-black);
  font-size: 40px;
  line-height: 1.1 !important;
  font-weight: 700;
  margin-bottom: 20px;
}

.booked-table-one__content .sec-title h2 {
  font-size: 46px;
}

.fq_bg {
  background-image: url(../images/fq-bg.jpg);
  background-position: 0 70%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

.fq_bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.6;
}

.footer-widget-two__about-logo {
  background: #fff;
  padding: 20px;
  display: inline-block;
  border-radius: 10px;
}

.footer-widget-two__about-logo img {
  max-width: 160px;
}

.footer-widget-two__contact-list li .icon i {
  color: #fff;
}

.abt_se_sp {
  padding: 120px 0;
}

.qu_eq {
  background-image: url(../images/eq-bg.jpg);
  background-position: 0 70%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

.qu_eq:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.7;
}

.eq_b_b {
  background: #09080694;
  padding: 40px 40px;
  border-radius: 20px;
  height: 100%;
  /* text-align: center; */
  box-shadow: rgb(249 93 74 / 43%) 0px 2px 8px 0px;
  transition: all .3s linear;
}

.eq_b_b:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

.eq_b_b h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.eq_b_b p {
  color: #fff;
}

.ev_sp {
  padding: 100px 0 80px;
}

.u_m_i {
  background: #fff;
  padding: 100px 0 120px;
}

.um_itm_b .sec-title {
  padding-bottom: 22px;
}

.um_itm_b {}

.um_itm_b img {
  width: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.menu-section {
  padding: 100px 20px;
  background: #fff;
  overflow: hidden;
}

.menu-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Content */
.menu-content {
  flex: 1;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;

  color: #ff5b4d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.menu-tag::before {
  content: "";
  width: 35px;
  height: 2px;
  background: #ff5b4d;
}

.menu-content h2 {
  margin: 0;
  color: #111;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
}

.menu-content h2 span {
  color: #ff5b4d;
}

.title-line {
  width: 65px;
  height: 5px;
  margin: 25px 0;

  border-radius: 10px;
  background: linear-gradient(90deg, #ff5b4d, #ff9b6a);
}

.menu-content p {
  max-width: 560px;
  margin: 0 0 15px;

  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* Features */
.menu-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 25px 0 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.feature span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: #fff0ed;
  color: #ff5b4d;
}

/* Button */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 15px 22px;

  border-radius: 50px;
  background: #111;

  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition: .3s ease;
}

.menu-btn i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  background: #ff5b4d;

  font-style: normal;

  transition: .3s ease;
}

.menu-btn:hover {
  background: #ff5b4d;
  transform: translateY(-3px);
}

.menu-btn:hover i {
  background: #fff;
  color: #ff5b4d;
  transform: translateX(4px);
}

/* Image */
.menu-image-wrap {
  position: relative;
  flex: 1;
  padding: 25px;
}

.menu-image-card {
  position: relative;
  z-index: 2;

  width: 100%;
  aspect-ratio: 1.15 / 1;

  overflow: hidden;
  border-radius: 28px;

  background: #292727;

  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

  transform: rotate(1deg);

  transition: .5s ease;
}

.menu-image-card:hover {
  transform: rotate(0deg) translateY(-8px);
}

.menu-image-card img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: .6s ease;
}

.menu-image-card:hover img {
  transform: scale(1.06);
}

/* Badge */
.image-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;

  display: flex;
  flex-direction: column;

  padding: 15px 20px;

  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 15px;

  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.image-badge strong {
  color: #ff5b4d;
  font-size: 25px;
}

.image-badge small {
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

/* Decorations */
.image-decoration {
  position: absolute;
  border-radius: 50%;
}

.decoration-one {
  width: 130px;
  height: 130px;

  top: -10px;
  right: -10px;

  background: #fff0ec;
}

.decoration-two {
  width: 90px;
  height: 90px;

  bottom: 0;
  left: 0;

  background: #ff5b4d;
  opacity: .12;
}

/* Tablet */
@media (max-width: 991px) {

  .menu-section {
    padding: 80px 25px;
  }

  .menu-container {
    gap: 40px;
  }

  .menu-content h2 {
    font-size: 42px;
  }

  .menu-features {
    display: block;
  }

  .feature {
    margin-bottom: 10px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .menu-section {
    padding: 60px 20px;
  }

  .menu-container {
    flex-direction: column;
    gap: 45px;
  }

  .menu-content,
  .menu-image-wrap {
    width: 100%;
  }

  .menu-content h2 {
    font-size: 38px;
  }

  .menu-content p {
    font-size: 15px;
  }

  .menu-image-wrap {
    padding: 15px 5px;
  }

  .menu-image-card {
    border-radius: 22px;
    transform: none;
  }

  .menu-image-card:hover {
    transform: translateY(-5px);
  }

  .menu-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .menu-section {
    padding: 50px 16px;
  }

  .menu-content h2 {
    font-size: 34px;
  }

  .menu-image-card {
    aspect-ratio: 1 / 1;
  }

  .image-badge {
    left: 15px;
    bottom: 15px;
    padding: 12px 15px;
  }
}

/* ==========================================
   SERVICE INFORMATION SECTION
========================================== */

.service-info {
  position: relative;
  padding: 100px 20px;
  background: #f7f5f1;
  overflow: hidden;
}

/* Background decoration */
.service-info::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -250px;
  right: -150px;
  border-radius: 50%;
  background: #ff5b4d;
  opacity: .04;
}

.service-info::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -200px;
  left: -150px;
  border-radius: 50%;
  background: #ff5b4d;
  opacity: .04;
}

.service-info .service-container {
  position: relative;
  z-index: 2;

  max-width: 1280px;
  margin: 0 auto;

  display: flex;
  align-items: stretch;
  gap: 24px;
}


/* ==========================================
   CARD
========================================== */

.service-info .service-card {
  position: relative;

  background: #ffffff;

  border: 1px solid #e7e3de;
  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 15px 45px rgba(20, 20, 20, .06);

  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;
}

.service-info .service-card-large {
  flex: 1.9;
}

.service-info .service-card-small {
  flex: 1;
}

.service-info .service-card:hover {
  transform: translateY(-8px);

  border-color: #ffb0a8;

  box-shadow:
    0 25px 60px rgba(20, 20, 20, .11);
}


/* ==========================================
   CARD NUMBER
========================================== */

.service-info .card-number {
  position: absolute;
  top: 25px;
  right: 30px;

  font-size: 72px;
  line-height: 1;

  font-weight: 800;

  color: #f4f1ed;

  pointer-events: none;

  transition: .4s ease;
}

.service-info .service-card:hover .card-number {
  color: #fff0ed;
  transform: scale(1.05);
}


/* ==========================================
   CARD CONTENT
========================================== */

.service-info .card-content {
  position: relative;
  z-index: 2;

  padding: 55px 60px 50px;
}

.service-info .service-card-small .card-content {
  padding-left: 50px;
  padding-right: 50px;
}


/* ==========================================
   LABEL
========================================== */

.service-info .card-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;

  color: #ff5b4d;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 2px;
}

.service-info .card-label::before {
  content: "";

  width: 28px;
  height: 2px;

  border-radius: 10px;

  background: #ff5b4d;
}


/* ==========================================
   HEADING
========================================== */

.service-info .card-content h2 {
  max-width: 850px;

  margin: 0;

  color: #101010;

  font-size: clamp(34px, 3.5vw, 52px);

  line-height: 1.12;

  font-weight: 800;

  letter-spacing: -1.8px;
}

.service-info .service-card-small h2 {
  font-size: clamp(32px, 3vw, 46px);
}

.service-info .card-content h2 span {
  color: #ff5b4d;
}


/* ==========================================
   HEADING LINE
========================================== */

.service-info .heading-line {
  width: 65px;
  height: 4px;

  margin: 25px 0 28px;

  border-radius: 20px;

  background: #ff5b4d;

  transition: width .4s ease;
}

.service-info .service-card:hover .heading-line {
  width: 100px;
}


/* ==========================================
   TEXT
========================================== */

.service-info .card-content p {
  margin: 0 0 15px;

  color: #333;

  font-size: 16px;

  line-height: 1.85;

  letter-spacing: .05px;
}


/* ==========================================
   BOTTOM FEATURE
========================================== */

.service-info .card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 28px;
  padding-top: 22px;

  border-top: 1px solid #eee;

  color: #222;

  font-size: 16px;
  font-weight: 700;
}

.service-info .bottom-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #fff0ed;

  color: #ff5b4d;

  font-size: 13px;

  transition: .3s ease;
}

.service-info .service-card:hover .bottom-icon {
  background: #ff5b4d;
  color: #fff;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

  .service-info {
    padding: 80px 25px;
  }

  .service-info .service-container {
    gap: 20px;
  }

  .service-info .card-content {
    padding: 45px 40px;
  }

  .service-info .service-card-small .card-content {
    padding-left: 35px;
    padding-right: 35px;
  }

  .service-info .card-content h2 {
    font-size: 38px;
  }

  .service-info .service-card-small h2 {
    font-size: 34px;
  }

  .service-info .card-content p {
    font-size: 14px;
    line-height: 1.75;
  }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .service-info {
    padding: 60px 18px;
  }

  .service-info .service-container {
    flex-direction: column;
    gap: 20px;
  }

  .service-info .service-card-large,
  .service-info .service-card-small {
    flex: none;
    width: 100%;
  }

  .service-info .card-content,
  .service-info .service-card-small .card-content {
    padding: 40px 28px;
  }

  .service-info .card-number {
    top: 18px;
    right: 22px;
    font-size: 55px;
  }

  .service-info .card-content h2,
  .service-info .service-card-small h2 {
    font-size: 34px;
    letter-spacing: -1px;
    padding-right: 30px;
  }

  .service-info .card-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .service-info .heading-line {
    margin: 20px 0 25px;
  }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

  .service-info {
    padding: 45px 14px;
  }

  .service-info .service-card {
    border-radius: 22px;
  }

  .service-info .card-content,
  .service-info .service-card-small .card-content {
    padding: 32px 22px;
  }

  .service-info .card-content h2,
  .service-info .service-card-small h2 {
    font-size: 30px;
  }

  .service-info .card-content p {
    font-size: 14px;
  }

  .service-info .card-number {
    font-size: 45px;
  }

  .service-info .card-label {
    font-size: 10px;
  }

  .service-info .card-bottom {
    font-size: 12px;
  }
}

.slider-container .swiper-button-next,
.slider-container .swiper-button-prev {
  top: 42%;
}

.slider-container .swiper-button-next:hover,
.slider-container .swiper-button-prev:hover {
  background-color: #000;
}

.footer_map {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.footer_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .footer_map {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer_map {
    height: 280px;
  }
}

.floating_info {
  position: fixed;
  left: 10px;
  bottom: 150px;
  z-index: 9999;
}

.floating_info li {
  width: 50px;
  height: 50px;
  background: #ef5744;
  margin-bottom: 10px;
  border-radius: 50%;
  text-align: center;
  line-height: 59px;
  transition: all .3s linear;
}

.floating_info li:hover {
  background-color: #000;
}

.floating_info li a i {
  color: #fff;
  font-size: 25px;
}

/*--------------------------------------------------------------
# End All Css
--------------------------------------------------------------*/