@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


html, body {
  overflow-x: hidden;   /* block horizontal scroll */
  width: 100%;          /* ensure body doesn't extend */
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
  min-height: 100%;
  color: #000000;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
}

[data-aos=fade-up] {
  transform: translate3d(0, 30px, 0); /* smaller upward shift */
}

[data-aos=fade-up].aos-animate {
  transform: translate3d(0, 0, 0);
}

body {
  overflow-x: hidden;
}

a,
button,
input {
  outline: none;
}

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

p,
li {
  margin-bottom: 0;
}

button {
  border: 0;
  background-color: transparent;
}

*:focus {
  outline: none;
}

.content-wrapper {
  width: 100%;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

.desk-visible {
  display: block;
}

.only-mobile {
  display: none;
}

.hide-mobile-tablet {
  display: block;
}

.only-mobile-tablet {
  display: none;
}

@media (max-width: 1023px) {
  .content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-mobile-tablet {
    display: none;
  }
  .only-mobile-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .desk-visible {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
.eq-btn {
  position: relative;
  padding: 15px 20px;
  border: 1px solid transparent; /* Replace with your "primary" color */
  color: #ffffff; /* Replace with --primary-foreground */
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease-in;
  background-color: #241f21;
}

/* Hover effect */
.eq-btn:hover {
  background-color: #ffffff; /* Replace with --primary-foreground */
  color: #241f21; /* Replace with --primary */
}

/* Hover sliding effect */
.hover-highlight {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-left: 2px solid #fff; /* Replace with --primary-foreground */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out;
}

.eq-btn:hover .hover-highlight {
  transform: translateX(0);
  opacity: 0.8;
}

.eq-btn-blk {
  font-family: "marcellus", sans-serif;
  color: #241f21;
  background-color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.5s ease-in;
  font-weight: 400;
  letter-spacing: 1px;
}
.eq-btn-blk:hover {
  background-color: rgba(255, 255, 255, 0.7411764706); /* Replace with --primary-foreground */
  color: #241f21; /* Replace with --primary */
}

.eq-btn-wht {
  font-family: "marcellus", sans-serif;
  color: #241f21;
  background-color: #ffffff;
  padding: 10px 18px;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease-in;
  font-weight: 400;
  letter-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.eq-btn-wht:hover {
  background-color: rgba(255, 255, 255, 0.7411764706); /* Replace with --primary-foreground */
  color: #241f21; /* Replace with --primary */
  box-shadow: 0px 0px 8px 0px rgba(119, 119, 119, 0.2509803922);
}

.eq-head h2 {
  color: #221f1f;
  font-family: "Marcellus", sans-serif;
  font-size: 25px;
  line-height: 50px;
  text-transform: capitalize;
  letter-spacing: 2px;
}
.eq-head h2.head {
  color: #221f1f;
  font-family: "Marcellus", sans-serif;
  font-size: 12px;
  line-height: 32px;
  text-transform: uppercase;
 text-align: center;
}

@media (max-width: 767px) {
  .eq-head h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.eq-card {
  display: inline-block;
}
.eq-card__img {
  width: 100%;
  height: 315px;
  overflow: hidden;
  border-radius: 16px;
}
.eq-card__img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.eq-card__head {
  color: #221f1f;
  font-size: 20px;
  line-height: 26px;
  padding: 15px 0;
}
.eq-card:hover .eq-card__img img {
  transform: scale(1.04);
}

.eq-card-invt__head-outer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
}
.eq-card-invt__head-outer h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
}
.eq-card-invt__icon {
  width: 30px;
  height: 30px;
}
.eq-card-invt__icon img {
  width: 100%;
  height: 100%;
}
.eq-card-invt__cnt {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 20px;
  width: 90%;
}

.eq-form .enquiry-form-wrapper {
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", sans-serif;
  text-align: center;
  color: #1c1c1c;
}
.eq-form .eq-head h2 {
  padding: 20px 0;
}
.eq-form .enquiry-form-wrapper p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}
.eq-form .enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80%;
  margin: auto;
}
.eq-form .enquiry-form select,
.eq-form .enquiry-form input,
.eq-form .enquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}
.eq-form .enquiry-form .form-row {
  display: flex;
  gap: 16px;
}
.eq-form .enquiry-form .form-row input,
.eq-form .enquiry-form .form-row select {
  flex: 1;
}
.eq-form .enquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}
.eq-form .enquiry-form button {
  align-self: flex-start;
  background-color: #1c1c1c;
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Marcellus", sans-serif;
}
.eq-form .enquiry-form button:hover {
  background-color: #333;
}

@media (max-width: 767px) {
  .eq-form .enquiry-form {
    width: 100%;
  }
  .eq-form .enquiry-form .form-row {
    flex-direction: column;
  }
}
.eq-contact-form .form-container {
  margin: 40px 0;
}
.eq-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.eq-contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.eq-contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.eq-contact-form .form-group label {
  margin-bottom: 5px;
  font-weight: 500;
}
.eq-contact-form .form-group input,
.eq-contact-form .form-group textarea {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}
.eq-contact-form .form-group input:focus,
.eq-contact-form .form-group textarea:focus {
  border-color: #666;
}
.eq-contact-form .full-width {
  width: 100%;
}
.eq-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.eq-contact-form button {
  align-self: flex-start;
  background-color: #1c1c1c;
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Marcellus", sans-serif;
  margin-top: 20px;
}
.eq-contact-form button:hover {
  background-color: #333;
}

.eq-modal__form {
  /* Fix select arrow issue */
}
.eq-modal__form .catering-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}
.eq-modal__form .form-heading {
  font-size: 16px;
  margin-bottom: 20px;
}
.eq-modal__form .form-control {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.eq-modal__form .textarea {
  height: 100px;
  resize: vertical;
}
.eq-modal__form .full-width {
  width: 100%;
  margin-bottom: 16px;
}
.eq-modal__form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.eq-modal__form .form-row .form-control {
  flex: 1 1 48%; /* two per row with space */
  min-width: 200px;
}

.eq-modal__form .submit-btn {
  background-color: #231f20;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin-top: 20px;
}

.eq-modal__form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='gray' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 14px center;
  background-size: 14px 14px;
  padding-right: 40px;
  background-color: #fff;
}

.modal-header {
  border: none !important;
}

/*.eq-home-tab {
  padding:15px;
} */
.eq-home-tab .hidden {
  display: none;
}
.eq-home-tab .tab-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0.4rem;
  padding:12px !important;
}
.eq-home-tab .tab-layout .main-banner {
  grid-column: span 3;
  grid-row: span 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  width: 100%;
  height: 100%;
  aspect-ratio: 830/510;
  border-radius: 1.5rem;
  overflow: hidden;
  background: no-repeat center/cover;
  color: var(--color-primary-foreground);
}
.eq-home-tab .tab-layout .main-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5019607843);
}
.eq-home-tab .tab-layout .main-banner .content {
  z-index: 50;
  position: relative;
}
.eq-home-tab .tab-layout .main-banner .content h1 {
  font-size: 60px;
  text-transform: uppercase;
  line-height: 70px;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 4px;
}
.eq-home-tab .tab-layout .main-banner .content p {
  font-size: 19px;
  line-height: 26px;
  color: #ffffff;
  padding-bottom: 20px;
  width: 60%;
}
.eq-home-tab .tab-layout .main-banner .content .buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 1rem;
}
.eq-home-tab .tab-layout .main-banner .content .buttons .secondary {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-family: "Marcellus", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.5s ease-in;
}
.eq-home-tab .tab-layout .main-banner .content .buttons .secondary:hover {
  font-weight: 700;
}
.eq-home-tab .tab-layout .info-card {
  grid-row: span 2;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: no-repeat center/cover;
  color: var(--color-primary-foreground);
    justify-content: space-between; /* pushes content to top & bottom */
    height: 100%;
}
.eq-home-tab .tab-layout .info-card .content {
  z-index: 50;
  position: relative;
}
.eq-home-tab .tab-layout .info-card .eq-btn-blk {
    margin: 29px 0;
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 18px;
    line-height: 35px;
}
.eq-home-tab .tab-layout .info-card .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(var(--color-secondary-foreground-rgb), 0.5);
  z-index: 10;
}
.eq-home-tab .tab-layout .info-card .contact {
  position: relative;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 1.25rem;
}
.eq-home-tab .tab-layout .info-card .contact .item {
 display: flex;
 align-items: flex-start;
 gap: 0.5rem;
 padding: 10px;
 color: #ffffff;
 font-size: 15px;
 line-height: 23px;
}
.eq-home-tab .tab-layout .info-card .contact .item img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.eq-home-tab .tab-layout .info-card .booking {
  z-index: 10;
  padding: 2px;
  background: #fef3f5;
  border-radius: 0.75rem;
  color: var(--color-primary);
  margin-top: 7px;
}
.eq-home-tab .tab-layout .info-card .booking h4 {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}
.eq-home-tab .tab-layout .info-card .booking .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0 0;
  margin: 0 -10px;
}
.eq-home-tab .tab-layout .info-card .booking .inner h4 {
  font-size: 12px;
  line-height: 22px;
}
.eq-home-tab .tab-layout .info-card .booking .inner .card {
/*   width: calc(33.33% - 20px); */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  margin: 0 10px;
}
.eq-home-tab .tab-layout .info-card .booking .inner .icon {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(119, 119, 119, 0.2509803922);
  padding: 12px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.5019607843);
 width: 45px;
  height: 45px;
}
.eq-home-tab .tab-layout .info-card .booking .inner .icon img{
width: 100%;
 height: 100%;
}
.eq-home-tab .tab-layout .info-card .booking .inner .icon:hover {
  background-color: #b0898d;
  color: #ffffff;
}
.eq-home-tab .tab-layout .info-card .booking .inner .icon svg {
  width: 32px;
  height: 32px;
}
.eq-home-tab .tab-outer {
  background-color: #fef3f5;
  padding: 20px;
 /* margin: -13px -10px 0;
  border-radius: 20px; */
}
.eq-home-tab .tab-outer__btn {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(119, 119, 119, 0.2509803922);
  border-radius: 10px;
  color: #241f21;
  font-size: 15px;
  line-height: 30px;
  font-family: "Marcellus", sans-serif;
  display: inline-block;
  font-weight: 400;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  margin: 10px;
}
.eq-home-tab .tab-outer__btn svg {
  width: 24px;
  height: 24px;
}
.eq-home-tab .tab-outer__btn[aria-selected=true] {
  background-color: #241f21;
  color: #ffffff;
}
.eq-home-tab .tab-outer__btn[aria-selected=true] img {
  filter:invert(1);
}
.eq-home-tab .tab-outer__btn:hover {
  background-color: #241f21;
  color: #ffffff;
}
.eq-home-tab .tab-outer__btn:hover svg {
  color: #ffffff;
}
@media (max-width: 1366px) {
.eq-abut-loc__sec2 {
    width: 100%;
    background-color: #fef3f5;
    border-radius: 16px;
    padding: 10px !important;
}
.eq-home-tab .tab-layout .info-card {
    grid-row: span 2;
    padding: 5px !important;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background: no-repeat center / cover;
    color: var(--color-primary-foreground);
    justify-content: space-between;
    height: 100%;
}
.eq-abut-loc__time li p {
    color: #3b3b3b;
    font-size: 11px !important;
    line-height: 15px !important;
}
.eq-home-tab .tab-outer__btn {
    background-color: #ffffff;
    box-shadow: 0px 0px 8px 0px rgba(119, 119, 119, 0.2509803922);
    border-radius: 10px;
    color: #241f21;
    font-size: 12px;
    line-height: 30px;
    font-family: "Marcellus", sans-serif;
    display: inline-block;
    font-weight: 400;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s 
ease-in;
    margin: 10px;
}	
}

@media (max-width: 767px) {
  .eq-home-tab .tab-layout {
    display: flex;
    flex-direction: column;
  }
  .eq-home-tab .tab-layout .main-banner .content h1 {
    font-size: 36px;
    line-height: 50px;
  }
  .eq-home-tab .tab-layout .main-banner {
    padding: 40px 20px;
    aspect-ratio: unset;
  }
  .eq-home-tab .tab-layout .main-banner .content p {
    width: 100%;
  }
  .eq-home-tab {
    padding: 16px;
  }
}
.eq-categry-sec {
  padding: 24px;
}
.eq-categry-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px -10px;
}
.eq-categry-sec .eq-card {
  width: calc(33.33% - 20px);
  margin: 10px;
}

@media (max-width: 767px) {
  .eq-categry-sec {
    padding: 24px 16px;
  }
  .eq-categry-sec .eq-card {
    width: calc(100% - 20px);
    margin-bottom: 0;
  }
}
.eq-srvce-ofr {
  padding: 30px 0 20px;
}
.eq-srvce-ofr .head {
  color: #221F1F;
  padding-bottom: 10px;
  font-size: 24px;
  line-height: 34px;
}
.eq-srvce-ofr__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.eq-srvce-ofr__card {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.eq-srvce-ofr__card p {
  color: #4A4A4A;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
}
.eq-srvce-ofr__icon {
  width: 40px;
  height: 40px;
}
.eq-srvce-ofr__icon img {
  width: 100%;
  height: 100%;
}

.eq-inner-bnnr {
  margin: 24px;
}
.eq-inner-bnnr__bg {
  width: 100%;
  height: 475px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  position: relative;
  border-radius: 16px;
}
.eq-inner-bnnr__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
}
.eq-inner-bnnr__cnt-box {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.eq-inner-bnnr h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  padding-bottom: 20px;
  width: 40%;
  margin: 0 auto;
}
.eq-inner-bnnr__cnt {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .eq-inner-bnnr h1 {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
  }
  .eq-inner-bnnr__cnt {
    width: 95%;
  }
  .eq-inner-bnnr {
    margin: 16px;
  }
  .eq-inner-bnnr__bg {
    height: 100%;
    padding: 60px 20px 40px;
  }
}
.eq-prvcy-bnnr {
  padding: 40px 24px 20px;
}
.eq-prvcy-bnnr h1 {
  color: #221F1F;
  font-size: 36px;
  line-height: 44px;
  padding: 20px 0;
  text-transform: uppercase;
  text-align: center;
}
.eq-prvcy-bnnr .sub {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 20px;
  width: 75%;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .eq-prvcy-bnnr .sub {
    width: 100%;
  }
}
.eq-pdf-viewer__viewer {
  width: 100%;
  height: 700px;
  position: relative;
}
.eq-pdf-viewer__viewer iframe {
  width: 100%;
  height: 100%;
}
.eq-pdf-viewer .responsive-pdf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.eq-menu-tab {
  padding: 24px;
}
.eq-menu-tab__sec1 {
  padding: 0 24px;
}
.eq-menu-tab__sec1 .btn-outer {
  background-color: #f5f5f5;
  display: flex;
  padding: 0 12px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border-radius: 10px;
}
.eq-menu-tab__sec1 .btn-outer .nav-link {
  margin: 0 15px;
  cursor: pointer;
  font-family: "Marcellus", sans-serif;
  color: #241f21;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}
.eq-menu-tab__sec1 .btn-outer .nav-item {
  padding: 12px 0;
  background-color: #f5f5f5;
}
.eq-menu-tab__sec1 .btn-outer .nav-link {
  padding: 0 10px;
}
.eq-menu-tab__sec1 .tab-content {
  margin-top: 30px;
}
.eq-menu-tab__sec1 .nav-pills .nav-link.active,
.eq-menu-tab__sec1 .nav-pills .show > .nav-link {
  background-color: transparent;
  position: relative;
}
.eq-menu-tab__sec1 .nav-pills .nav-link.active::before,
.eq-menu-tab__sec1 .nav-pills .show > .nav-link::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #241f21;
  border-radius: 9px;
}

@media (max-width: 767px) {
  .eq-menu-tab__sec1 {
    padding: 0;
  }
  .eq-menu-tab {
    padding: 16px;
  }
  .eq-menu-tab__sec1 .btn-outer {
    gap: 20px;
  }
  .eq-menu-tab__sec1 .btn-outer {
    justify-content: center;
  }
  .eq-menu-tab__sec1 .btn-outer .nav-link {
    padding: 0;
    margin: 0;
  }
}
.eq-gllry-sec {
  padding: 40px 0;
}
.eq-gllry-sec .grid-sec {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 20px;
  width: 100%;
  margin: auto;
}
.eq-gllry-sec .grid-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  overflow: hidden;
}
.eq-gllry-sec .grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  cursor: pointer;
}
.eq-gllry-sec .grid-item img:hover {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .eq-gllry-sec .grid-sec {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.eq-pop-banner {
  margin: 24px;
}
.eq-pop-banner__bg {
  width: 100%;
  height: 475px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  position: relative;
  border-radius: 16px;
}
.eq-pop-banner__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
}
.eq-pop-banner__cnt-box {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.eq-pop-banner h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 auto;
}
.eq-pop-banner__cnt {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.eq-pop-banner__bnt-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 30px 0;
}

@media (max-width: 767px) {
  .eq-pop-banner h1 {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
  }
  .eq-pop-banner__cnt {
    width: 95%;
  }
  .eq-pop-banner {
    margin: 16px;
  }
  .eq-pop-banner__bg {
    height: 100%;
    padding: 60px 20px 40px;
  }
  .eq-pop-banner__bnt-outer {
    flex-direction: column;
  }
}
.eq-marquee {
  background-color: #fef3f5;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.eq-marquee .outer {
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translateX(-100%);
  display: inline-flex;
  white-space: nowrap;
  padding: 0 5px;
  animation: marquee 15s linear infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.eq-marquee .outer h2 {
  color: #3b3b3b;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: inherit;
}
.eq-marquee .outer span {
  color: #3b3b3b;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.eq-slection-card {
  border: 1px solid #ffffff;
  background-color: rgba(59, 59, 59, 0.031372549);
  padding: 20px 20px 20px 10px;
}
.eq-slection-card__outer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.eq-slection-card__head {
  color: #3B3B3B;
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 8px;
  text-transform: inherit;
}
.eq-slection-card__cnt {
  color: #777777;
  font-size: 15px;
  line-height: 22px;
  padding: 10px 20px;
}
.eq-slection-card__list {
  list-style: disc;
  padding-top: 10px;
  padding-left: 20px;
}
.eq-slection-card__list li {
  color: #777777;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
.eq-slection-card__img-card {
  width: 110px;
  height: auto;
}
.eq-slection-card__img-card img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.eq-slection-card__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.eq-slection-card__inner .head {
  color: #3b3b3b;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-transform: inherit;
}
.eq-slection-card__inner .cnt {
  color: #777777;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}
.eq-slection-card__inner .prce {
  color: #241f21;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.eq-prdct-slick-hme {
  padding: 50px 24px 20px;
}
.eq-prdct-slick-hme .eq-card__img img, .eq-prdct-slick-hme .eq-card__img {
  border-radius: 0;
}
.eq-prdct-slick-hme__slider {
  margin: 10px -15px 20px;
}
.eq-prdct-slick-hme__slider .slide {
  margin: 15px;
}

@media (max-width: 767px) {
  .eq-prdct-slick-hme {
    padding: 40px 16px 20px;
  }
}
.eq-gllry-hm {
  padding: 10px 24px 24px;
}
.eq-gllry-hm__head-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.eq-gllry-hm__head-outer h2 {
  color: #221f1f;
  font-family: "Marcellus", sans-serif;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.eq-gllry-hm__head-outer .btn-glry {
  color: #221f1f;
  text-decoration: underline;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  transition: all 0.3s ease-in;
}
.eq-gllry-hm__head-outer .btn-glry:hover {
  text-decoration: none;
}
.eq-gllry-hm__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.eq-gllry-hm__w-half {
  width: 50%;
}
.eq-gllry-hm__img {
  width: 100%;
  height: 545px;
  overflow: hidden;
  border-radius: 8px;
}
.eq-gllry-hm__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.eq-gllry-hm__img img:hover {
  transform: scale(1.04);
}
.eq-gllry-hm__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px -10px;
}
.eq-gllry-hm__card {
  width: calc(50% - 20px);
  height: 262px;
  margin: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.eq-gllry-hm__card img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.eq-gllry-hm__card img:hover {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .eq-gllry-hm__outer {
    flex-direction: column;
    gap: 10px;
  }
  .eq-gllry-hm__w-half {
    width: 100%;
  }
  .eq-gllry-hm__head-outer h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .eq-gllry-hm__img {
    height: auto;
  }
  .eq-gllry-hm {
    padding: 10px 16px 24px;
  }
}
.visit-sec-hm__sec1 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #bebebe;
  padding: 40px 20px 30px 40px;
  background-color: #fef3f5;
}
.visit-sec-hm__sec1.wht {
  background-color: #ffffff;
  border: none;
  padding-bottom: 60px;
}
.visit-sec-hm__sec1 .qarter {
  width: 35%;
}
.visit-sec-hm__sec1 .wdt-75 {
  width: 63%;
}
.visit-sec-hm__sec1 .wdt-75 img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}
.visit-sec-hm__sec1 .sub {
  color: #221f1f;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.visit-sec-hm__sec1 .eq-head h2 {
  width: 100%;
  padding: 0 0 15px;
}
.visit-sec-hm__sec1 .cnt {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 20px;
}
.visit-sec-hm__sec2 {
  padding: 40px 20px 30px 40px;
  background-color: #fef3f5;
}
.visit-sec-hm__sec2__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.visit-sec-hm__sec2 .eq-head h2 {
  text-align: center;
  padding: 30px 0 5px;
}
.visit-sec-hm__sec2 .sub {
  color: #4A4A4A;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 40px;
}
.visit-sec-hm .eq-card-invt {
  width: calc(33.33% - 20px);
  margin: 15px 10px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .visit-sec-hm__sec1 .eq-head h2 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .visit-sec-hm__sec1 .eq-head h2 {
    width: 100%;
  }
  .visit-sec-hm__sec1 .wdt-75 {
    width: 60%;
  }
  .visit-sec-hm__sec1 .qarter {
    width: 40%;
  }
  .visit-sec-hm__sec1 {
    align-items: center;
    gap: 20px;
  }
  .visit-sec-hm .eq-card-invt {
    width: calc(50% - 20px);
  }
  .visit-sec-hm .eq-card-invt__cnt {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .visit-sec-hm {
    padding: 24px 0;
  }
  .visit-sec-hm__sec1 {
    flex-direction: column;
    gap: 30px;
  }
  .visit-sec-hm__sec1 .wdt-75,
  .visit-sec-hm__sec1 .qarter,
  .visit-sec-hm__sec1 .eq-head h2 {
    width: 100%;
  }
  .visit-sec-hm .eq-card-invt {
    width: calc(100% - 20px);
  }
  .visit-sec-hm .eq-card-invt__cnt {
    width: 100%;
  }
  .visit-sec-hm__sec2 {
    margin-bottom: 10px;
  }
  .visit-sec-hm__sec2, .visit-sec-hm__sec1 {
    padding: 20px;
  }
}
.eq-footer {
  background-color: #000000;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.eq-footer__outer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.eq-footer__inner {
  display: flex;
  align-items: center;
  gap: 35px;
}
.eq-footer .cnt {
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 400;
}
.eq-footer .cnt svg {
  width: 160px;
  height: 20px;
  padding-left: 15px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eq-footer__outer {
    width: 100%;
  }
  .eq-footer {
    padding: 15px 10px;
  }
}
@media (max-width: 767px) {
  .eq-footer__outer {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .eq-footer {
    padding: 15px 10px;
  }
}
.eq-loc-hero {
  background-color: #fef3f5;
  padding: 24px;
  margin-bottom: 20px;
}
.eq-loc-hero h1 {
  font-weight: 400;
  text-transform: uppercase;
  color: #221f1f;
  text-align: center;
  padding: 30px 0;
  font-size: 41px;
  line-height: 50px;
}
.eq-loc-hero__outer {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}
.eq-loc-hero__w-35 {
  width: 35%;
}
.eq-loc-hero__w-65 {
  width: 65%;
}
.eq-loc-hero__cnt {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 20px;
}
.eq-loc-hero__img {
  width: 100%;
  height: auto;
}
.eq-loc-hero__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.eq-loc-hero__bnt-outer {
  display: flex;
  align-items: center;
  gap: 25px;
}
.eq-loc-hero__bnt-outer__btn {
  font-family: "marcellus", sans-serif;
  color: #241f21;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}
.eq-loc-hero__bnt-outer__btn svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.eq-loc-hero__bnt-outer__btn:hover svg {
  opacity: 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eq-loc-hero__outer {
    flex-direction: column;
  }
  .eq-loc-hero__w-35, .eq-loc-hero__w-65 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .eq-loc-hero__outer {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .eq-loc-hero h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .eq-loc-hero__w-35, .eq-loc-hero__w-65 {
    width: 100%;
  }
}
.eq-visit-loc {
  padding: 30px 24px;
}
.eq-visit-loc__outer {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  padding: 30px 0;
}
.eq-visit-loc__w-35 {
  width: 60%;
}
.eq-visit-loc__w-55 {
  width: 55%;
}
.eq-visit-loc__cnt {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 20px;
text-align: justify;
}
.eq-visit-loc__img {
  width: 100%;
  height: auto;
}
.eq-visit-loc__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.eq-visit-loc__sub {
  color: #221F1F;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
}
.eq-visit-loc .eq-head h2 {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .eq-visit-loc__outer {
    flex-direction: column;
  }
  .eq-visit-loc__w-55, .eq-visit-loc__w-35 {
    width: 100% !important;
  }
	.eq-visit-loc__w-35 {
    width: 100% !important;
}
}
.eq-abut-loc {
  padding: 24px;
}
.eq-abut-loc__outer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.eq-abut-loc__sec1 {
  width: 70%;
}
.eq-abut-loc__sec2 {
  width: 100%;
  background-color: #fef3f5;
  border-radius: 16px;
  padding: 30px;
}
.eq-abut-loc .head {
  color: #221f1f;
  font-size: 12px;
  line-height: 32px;
}
.eq-abut-loc .eq-head {
  padding-bottom: 20px;
}
.eq-abut-loc__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.eq-abut-loc__inner .half {
  width: 55%;
}
.eq-abut-loc__inner .quater {
  width: 40%;
}
.eq-abut-loc__img {
  width: 100%;
  height: auto;
}
.eq-abut-loc__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.eq-abut-loc .loc {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 32px;
}
.eq-abut-loc__sub {
  color: #3b3b3b;
  font-weight: 700;
  padding-bottom: 11px;
  font-size: 12px;
  line-height: 5px;
}
.eq-abut-loc__time li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
}
.eq-abut-loc__time li p {
  color: #3b3b3b;
  font-size: 12px;
  line-height: 11px;
}
.eq-abut-loc__time li p:first-child {
  font-weight: 600;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .eq-abut-loc__sec2 {
    width: 25%;
  }
  .eq-abut-loc__sec1 {
    width: 65%;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .eq-abut-loc__outer {
    flex-direction: column;
  }
  .eq-abut-loc__sec1, .eq-abut-loc__sec2 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .eq-abut-loc__outer {
    flex-direction: column;
  }
  .eq-abut-loc__sec2,
  .eq-abut-loc__sec1 {
    width: 100%;
  }
  .eq-abut-loc__inner {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .eq-abut-loc__outer {
    flex-direction: column;
    gap: 20px;
  }
  .eq-abut-loc__sec2,
  .eq-abut-loc__sec1,
  .eq-abut-loc__inner .half,
  .eq-abut-loc__inner .quater {
    width: 100%;
  }
  .eq-abut-loc__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.eq-map {
  margin: 24px;
}
.eq-map__map {
  width: 100%;
  height: 400px;
}
.eq-map__map iframe {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.eq-gllry-tab {
  padding: 24px;
}
.eq-gllry-tab__sec1 {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-gllry-tab__sec1 .btn-outer {
  background-color: #f5f5f5;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  margin: 0 auto;
  border-radius: 10px;
}
.eq-gllry-tab__sec1 .btn-outer .nav-link {
  margin: 0 15px;
  cursor: pointer;
  font-family: "Marcellus", sans-serif;
  color: #241f21;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}
.eq-gllry-tab__sec1 .btn-outer .nav-item {
  padding: 12px 0;
  background-color: #f5f5f5;
}
.eq-gllry-tab__sec1 .btn-outer .nav-link {
  padding: 0 10px;
}
.eq-gllry-tab__sec1 .tab-content {
  margin-top: 30px;
}
.eq-gllry-tab__sec1 .nav-pills .nav-link.active,
.eq-gllry-tab__sec1 .nav-pills .show > .nav-link {
  background-color: transparent;
  position: relative;
}
.eq-gllry-tab__sec1 .nav-pills .nav-link.active::before,
.eq-gllry-tab__sec1 .nav-pills .show > .nav-link::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #241f21;
  border-radius: 9px;
}

@media (max-width: 767px) {
  .eq-gllry-tab__sec1 {
    padding: 0;
  }
  .eq-gllry-tab__sec1 .btn-outer {
    justify-content: space-evenly;
  }
  .eq-gllry-tab__sec1 .btn-outer .nav-item {
    padding: 16px 0;
  }
  .eq-gllry-sec {
    padding: 24px 0;
  }
}
.eq-contact-sec {
  padding: 24px;
}
.eq-contact-sec__outer {
  display: flex;
  justify-content: space-between;
}
.eq-contact-sec__sec2 {
  width: 65%;
}
.eq-contact-sec__sec2 .eq-head h2 {
  padding-bottom: 20px;
  text-align:center;
}
.eq-contact-sec__sec2 .sub {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 22px;
}
.eq-contact-sec__sec1 {
  background-color: #241f21;
  padding: 40px 24px;
  width: 30%;
  border-radius: 10px;
}
/* .eq-contact-sec__sec1 .loc {
  padding: 30px 40px 20px;
} */
.eq-contact-sec__sec1 .loc p,
.eq-contact-sec__sec1 .loc a {
  color: #ffffff;
  font-size: 18px;
  line-height: 32px;
  padding-bottom: 20px;
}
.eq-contact-sec__sec1 .loc a {
  display: inline-block;
}
.eq-contact-sec__sec1 .social {
  border-top: 1px solid var(--White, #ffffff);
}
.eq-contact-sec__sec1 .social p {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  padding: 20px 10px 30px;
}
.eq-contact-sec__sec1 .social .btn-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.eq-contact-sec__sec1 .social .btn-outer svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eq-contact-sec__sec1 .loc {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .eq-contact-sec__outer {
    flex-direction: column;
    gap: 30px;
  }
  .eq-contact-sec__sec1, .eq-contact-sec__sec2 {
    width: 100% !important;
  }
}
.eq-contact-tme {
  padding: 24px;
}
.eq-contact-tme__outer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.eq-contact-tme__sec2 {
  width: 40%;
}
.eq-contact-tme__sec2 p {
  font-size: 16px;
  line-height: 24px;
  color: #3B3B3B;
  padding: 30px 0;
}
.eq-contact-tme__sec2 a {
  font-size: 16px;
  line-height: 24px;
  color: #3B3B3B;
  text-decoration: underline;
}
.eq-contact-tme__sec2__img {
  width: 100%;
  height: auto;
}
.eq-contact-tme__sec2__img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.eq-contact-tme__sec1 {
  background-color: #fef3f5;
  padding: 20px 0;
  width: 60%;
  display: flex;
  border-radius: 16px;
}
.eq-contact-tme__sec1 .half {
  width: 50%;
  border-right: 1px solid #bebebe;
  padding: 35px;
}
.eq-contact-tme__sec1 .half:last-child {
  border: none;
  padding-left: 20px;
}
.eq-contact-tme__sec1 .inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 30px;
}
.eq-contact-tme__sec1 .inner .img {
  width: auto;
  height: 60px;
}
.eq-contact-tme__sec1 .inner .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.eq-contact-tme__sec1 .inner h2 {
  color: #000000;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
}
.eq-contact-tme__sec1 .sub {
  color: #3b3b3b;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3B3B3B;
  font-size: 14px;
  line-height: 24px;
}
.eq-contact-tme__time li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}
.eq-contact-tme__time li p {
  color: #3b3b3b;
  font-size: 16px;
  line-height: 22px;
}
.eq-contact-tme__time li p:first-child {
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eq-contact-tme__outer {
    flex-direction: column;
  }
  .eq-contact-tme__sec1, .eq-contact-tme__sec2 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .eq-contact-tme__outer {
    flex-direction: column;
  }
  .eq-contact-tme__sec1, .eq-contact-tme__sec2 {
    width: 100%;
  }
  .eq-contact-tme__sec1 {
    flex-direction: column;
  }
  .eq-contact-tme__sec1 .half {
    width: 100%;
    border: none;
  }
}
.eq-catering-innr {
  padding: 50px 24px;
}
.eq-catering-innr__head .eq-head h2 {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  padding: 20px 0;
}
.eq-catering-innr__head .sub {
  color: #4A4A4A;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}
.eq-catering-innr__outer {
  padding: 40px 20px;
}
.eq-catering-innr__outer .eq-slection-card:nth-child(even) {
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .eq-catering-innr {
    padding: 16px;
  }
  .eq-catering-innr__head .eq-head h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .eq-catering-innr__outer {
    padding: 30px 0;
  }
}
.eq-functs-tab {
  padding: 24px;
}
.eq-functs-tab .eq-menu-tab__sec1 .btn-outer {
  flex-wrap: wrap;
  justify-content: center;
}
.eq-functs-tab__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 50px -10px 30px;
}
.eq-functs-tab__card {
  width: calc(33.33% - 20px);
  margin: 10px 10px;
  border: 3px solid var(--Black, #241f21);
}
.eq-functs-tab__card img {
  width: 100%;
  height: auto;
}
.eq-functs-tab__subhead {
  color: #3b3b3b;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  padding: 30px 0;
}
.eq-functs-tab__head {
  padding-bottom: 40px;
}
.eq-functs-tab__head .sub {
  color: #4a4a4a;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  width: 65%;
  margin: auto;
}
.eq-functs-tab__head .eq-head h2 {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  padding: 40px 0 10px;
}
.eq-functs-tab .eq-slection-card:nth-child(even) {
  background-color: #ffffff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eq-functs-tab .eq-menu-tab__sec1 .btn-outer {
    justify-content: flex-start;
  }
  .eq-menu-tab__sec1 .btn-outer .nav-item {
    padding: 18px 0;
  }
}
@media (max-width: 767px) {
  .eq-functs-tab__card {
    width: calc(50% - 20px);
  }
  .eq-functs-tab {
    padding: 24px 16px;
  }
  .eq-functs-tab__subhead {
    font-size: 24px;
    line-height: 34px;
  }
}
.eq-prvcy-sec {
  padding: 24px 30px;
}
.eq-prvcy-sec__head {
  color: #221f1f;
  font-size: 24px;
  line-height: 44px;
  font-family: "marcellus", sans-serif;
  text-transform: uppercase;
  padding: 20px 0 5px;
}
.eq-prvcy-sec__head:first-child {
  border-top: 1px solid #bebebe;
  padding-top: 30px;
}
.eq-prvcy-sec__sub {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 22px;
  padding: 0 0 20px;
}
.eq-prvcy-sec__list {
  list-style: disc;
  padding: 0 20px;
}
.eq-prvcy-sec__list li {
  color: #4a4a4a;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .eq-prvcy-sec {
    padding: 40px 16px;
  }
}
.side-menu {
  display: flex;
  justify-content: space-between;
}
.side-menu #drawerToggle {
  margin-right: 14px;
}
.side-menu__lft-sec {
  width: 20%;
  background-color: #241f21;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
  padding: 40px 20px;
  position: sticky;
  top: 0;
  z-index: 990;
  height: 100%;
}
.side-menu__logo {
  width: 80%;
  height: auto;
  display: flex;
  margin: auto;
}
.side-menu__logo img {
  width: 100%;
  height: 100%;
}
.side-menu__nav-bar {
  padding: 50px 32px;
}
.side-menu__nav-bar .nav-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  cursor: pointer;
  margin-bottom: 22px;
}
.side-menu__nav-bar .nav-link .nav-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.nav-link:hover .side-menu__nav-bar .nav-link .nav-icon svg {
  transform: scale(1.1);
}
.side-menu__nav-bar .nav-link .nav-label {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-family: "marcellus", sans-serif;
}
.side-menu__nav-bar .nav-link .nav-label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.side-menu__nav-bar .nav-link .nav-label:hover::after, .side-menu__nav-bar .nav-link .nav-label.active::after {
  width: 100%;
}
.side-menu__store {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 12px;
}
.side-menu__store img {
  width: 60%;
  height: 60%;
}
.side-menu__btn {
    font-family: "marcellus", sans-serif;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    margin: 3px 0px 20px 0px;
    text-transform: uppercase;
}
.side-menu__topbar {
  position: sticky;
  width: 100%;
  height: 80px;
  top: 0;
  background-color: #272324;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  z-index: 999;
}
.side-menu__topbar .inner {
  display: flex;
  align-items: center;
}
.side-menu__right-sec {
  width: 80%;
}
.side-menu__right-sec .logo {
  width: 60px;
  height: auto;
}
.side-menu__right-sec .logo img {
  width: 100%;
  height: 100%;
}
.side-menu__cntbox {
  padding: 30px 20px;
}
.side-menu__social {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 20px;
}
.side-menu__social .eq-btn {
  padding: 5px;
}
.side-menu__mob-menu {
  position: absolute;
  background-color: #241f21;
  width: 75%;
  height: 100%;
  left: 0;
  top: 0;
  box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
  transition: all 0.4s ease-out;
  transform: translateX(-145%);
  padding: 30px;
  z-index: 999;
}
.side-menu__mob-menu.active {
  transform: translateX(0);
}
.side-menu__mob-menu .logo {
  width: 50%;
  height: auto;
  display: inline-block;
}
.side-menu__mob-menu .logo img {
  width: 100%;
  height: 100%;
}
.side-menu__mob-menu .side-menu__store {
  width: 75%;
  margin: 10px;
}
.side-menu__mob-menu .head-outer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.side-menu__mob-menu button svg {
  width: 22px;
  height: 22px;
}
.side-menu__drawer {
  position: fixed;
  background-color: #ffffff;
  width: 30%;
  height: 100%;
  right: 0;
  top: 0;
  box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.0392156863);
  transform: translateX(100%);
  transition: all 0.4s ease-out;
  padding: 15px;
  z-index: 999;
}
.side-menu__drawer.active {
  transform: translateX(0);
  overflow-y: auto;
}
.side-menu__drawer .loc-list {
  max-height: 400px;
  overflow-y: auto;
}
.side-menu__drawer .loc-list::-webkit-scrollbar {
  width: 5px;
}
.side-menu__drawer .loc-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.side-menu__drawer .loc-list::-webkit-scrollbar-thumb {
  background: #221f1f;
  border-radius: 10px;
}
.side-menu__drawer .loc-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.side-menu__drawer .loc-list li {
  text-align: center;
}
.side-menu__drawer .loc-list li a {
  display: inline-block;
  padding: 12px 0;
  font-family: "marcellus", sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #241f21;
}
.side-menu__drawer .head-outer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.side-menu__drawer .head {
  font-family: "marcellus", sans-serif;
  font-size: 40px;
  line-height: 40px;
  color: #221f1f;
  text-align: center;
  text-transform: uppercase;
  padding: 40px 0 30px;
}
.side-menu__drawer button svg {
  width: 22px;
  height: 22px;
}
.side-menu .toggle-mob #checkbox {
  display: none;
}
.side-menu .toggle-mob .toggle {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition-duration: 0.5s;
}
.side-menu .toggle-mob .bars {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
}
.side-menu .toggle-mob #bar2 {
  transition-duration: 0.8s;
}
.side-menu .toggle-mob #bar1,
.side-menu .toggle-mob #bar3 {
  width: 70%;
}
.side-menu .toggle-mob #checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}
.side-menu .toggle-mob #checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}
.side-menu .toggle-mob #checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}
.side-menu .toggle-mob #checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}
.side-menu .toggle-mob #checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

/* End Side Menu */


/* wp-form contact -page code*/

/* all moda css */


/* Using your existing .eq-modal__form styles but targeting multiple WPForms with form IDs */

#wpforms-form-440 .form-heading,
#wpforms-form-450 .form-heading,
#wpforms-form-444 .form-heading {
  font-size: 16px !important;
  margin-bottom: 20px !important;
}

#wpforms-form-440 input[type="text"],
#wpforms-form-440 input[type="email"],
#wpforms-form-440 input[type="tel"],
#wpforms-form-440 input[type="number"],
#wpforms-form-440 textarea,
#wpforms-form-440 select,
#wpforms-form-440 .choices__inner,
#wpforms-form-450 input[type="text"],
#wpforms-form-450 input[type="email"],
#wpforms-form-450 input[type="tel"],
#wpforms-form-450 input[type="number"],
#wpforms-form-450 textarea,
#wpforms-form-450 select,
#wpforms-form-450 .choices__inner,
#wpforms-form-444 input[type="text"],
#wpforms-form-444 input[type="email"],
#wpforms-form-444 input[type="tel"],
#wpforms-form-444 input[type="number"],
#wpforms-form-444 textarea,
#wpforms-form-444 select,
#wpforms-form-444 .choices__inner {
  /* padding: 12px 14px !important; */
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
}

#wpforms-form-440 textarea,
#wpforms-form-450 textarea,
#wpforms-form-444 textarea {
  height: 100px !important;
  resize: vertical !important;
}

#wpforms-form-440 .wpforms-field[data-field-id="2"],
#wpforms-form-450 .wpforms-field[data-field-id="2"],
#wpforms-form-444 .wpforms-field[data-field-id="2"] {
  width: 100% !important;
  /* margin-bottom: 16px !important; */
}

#wpforms-form-440 .wpforms-layout-row,
#wpforms-form-450 .wpforms-layout-row,
#wpforms-form-444 .wpforms-layout-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  /* margin-bottom: 16px !important; */
}

#wpforms-form-440 .wpforms-layout-row .wpforms-layout-column-50,
#wpforms-form-450 .wpforms-layout-row .wpforms-layout-column-50,
#wpforms-form-444 .wpforms-layout-row .wpforms-layout-column-50 {
  flex: 1 1 48% !important; /* two per row with space */
  min-width: 200px !important;
}

#wpforms-form-440 .wpforms-submit,
#wpforms-form-450 .wpforms-submit,
#wpforms-form-444 .wpforms-submit {
  background-color: #231f20 !important;
  color: white !important;
  border: none !important;

  /* font-size: 14px !important; */
  border-radius: 6px !important;
  cursor: pointer !important;
  display: block !important;
  margin-top: 20px !important;
}

#wpforms-form-440 select,
#wpforms-form-440 .choices__inner,
#wpforms-form-450 select,
#wpforms-form-450 .choices__inner,
#wpforms-form-444 select,
#wpforms-form-444 .choices__inner {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 40px !important;
  background-color: #fff !important;
}

.modal-header {
  border: none !important;
}

/* Additional fixes for WPForms specific elements */
#wpforms-form-440 .choices__list--single .choices__item,
#wpforms-form-450 .choices__list--single .choices__item,
#wpforms-form-444 .choices__list--single .choices__item {
  padding: 0 !important;
}

#wpforms-form-440 .wpforms-field,
#wpforms-form-450 .wpforms-field,
#wpforms-form-444 .wpforms-field {
  margin-bottom: 0 !important;
}

#wpforms-form-440 .wpforms-layout-column-50 .wpforms-field,
#wpforms-form-450 .wpforms-layout-column-50 .wpforms-field,
#wpforms-form-444 .wpforms-layout-column-50 .wpforms-field {
  margin-bottom: 0 !important;
}

.modal-body {
    padding: 30px !important;
}
#desk-padd {
    margin-top: 20px !important;
}

/* conatct form  page css */

#wpforms-467-field_3-container label
{
font-weight: 400;
}
#wpforms-submit-467
{
background-color: #241f21;
}
.eq-contact-sec__sec1 {
    background-color: #241f21;
    padding: 40px 24px;
    width: 100%;
    border-radius: 15px !important;
}
.eq-contact-sec__sec2 {
    width: 100%;
}
.eq-contact-tme__sec1 .half {
    /* width: 50%; */
    border-right: 1px solid #bebebe;
    padding-right: 28px;
    /* padding: 34px; */
}
.wpforms-field-container label
{
font-weight: 400;
}
.wpforms-field-container input
{
border-radius: 10px !important;
}
.wpforms-field-container text-area
{
border-radius: 10px;
}

.wpforms-field-container textarea
{
border-radius: 10px !important;
}


@media (min-width: 768px) and (max-width: 1023px) {
  .side-menu__right-sec {
    overflow-x: hidden;
    width: 100%;
  }
  .eq-home-tab .tab-layout {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .side-menu__right-sec {
    overflow-x: hidden;
    width: 100%;
  }
  .side-menu__drawer {
    width: 75%;
  }
  .side-menu__drawer .loc-list {
    max-height: 100%;
  }
  .side-menu__drawer .head {
    font-size: 28px;
    line-height: 28px;
    text-align: center;
  }
  .side-menu__topbar {
    padding: 20px;
    height: auto;
  }
  .side-menu__topbar {
    justify-content: space-between;
  }
  .side-menu .eq-btn .select-label {
    display: none;
  }
  .side-menu .eq-btn {
    padding: 5px;
  }
  .side-menu__social {
    padding-right: 15px;
  }
  .side-menu__nav-bar {
    padding: 30px 20px;
  }
  .side-menu__mob-menu .side-menu__store {
    margin: 10px 0;
  }
  .side-menu__btn {
    justify-content: flex-start;
    
  }
	.eq-loc-hero__bnt-outer {
    display: flex;
    gap: 9px;
    flex-direction: column;
}
}


.custom-download-btn {
    background-color: #231f20 !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: block !important;
    margin: 20px auto 0 auto !important; /* margin-top + auto left/right for centering */
    outline: none !important;
    transition: background 0.3s ease !important;
    text-align: center;
    padding: 12px 24px;
    max-width: 200px; /* optional: limit width */
    text-decoration: none !important;
}

.custom-download-btn:hover {
    background-color: #444 !important; /* example hover */
}



.page-id-161 .eq-slection-card__row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.page-id-161 .eq-slection-card {
  flex: 1 1 calc(50% - 30px);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
              rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.page-id-161 .eq-slection-card__head {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-id-161 .eq-slection-card__list {
  margin: 0;
  padding-left: 18px;
}

.page-id-161 .eq-slection-card__list li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.page-id-161 .eq-slection-card__cnt {
  margin-top: 15px;
  color: #555;
  font-size: 14px;
}



div.wpforms-container .wpforms-form .choices__inner {
    width: 100%;
    background-color: #ffffff !important;
    padding: 4px 6px 0 !important;
    border: 1px solid #8c8f94;
    overflow: hidden;
    border-radius: 4px !important;
}
#wpforms-764 {
  padding: 40px 30px !important;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff !important;
  border-radius: 10px !important;
  box-sizing: border-box !important;
}

#wpforms-764 .wpforms-field {
  margin-bottom: 20px !important;
}

#wpforms-764 input[type="text"],
#wpforms-764 input[type="email"],
#wpforms-764 input[type="tel"],
#wpforms-764 input[type="date"],
#wpforms-764 input[type="number"],
#wpforms-764 select,
#wpforms-764 textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  outline: none !important;
  box-sizing: border-box !important;
  background: #fff !important;
}

#wpforms-764 input:focus,
#wpforms-764 select:focus,
#wpforms-764 textarea:focus {
  border-color: #cca91f !important;
  box-shadow: 0 0 0 2px rgba(204, 169, 31, 0.3) !important;
}

#wpforms-764 select {
  height: 45px !important;
}
#wpforms-764 .wpforms-submit-container {
  text-align: center !important;
  margin-top: 30px !important;
}

#wpforms-764 .wpforms-submit {
  background-color: #231f20 !important;
  color: white !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  display: inline-block !important;
  margin: 20px auto 0 auto !important;
  outline: none !important;
  transition: background 0.3s ease !important;
  padding: 12px 24px !important;
}

#wpforms-764 .wpforms-submit:hover {
  background-color: #b5931c !important;
}


#wpforms-764 .wpforms-layout-column {
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
}

#wpforms-764 .wpforms-layout-row {
  margin-left: -10px !important;
  margin-right: -10px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
}

@media (max-width: 768px) {
  #wpforms-764 .wpforms-layout-row {
    flex-direction: column !important;
  }

  #wpforms-764 .wpforms-layout-column {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


.catering-form .notice-bar {
  text-align: center;
  padding: 40px 20px;  /* top and bottom padding */
  max-width: 800px;
  margin: 0 auto 40px auto; /* center horizontally + bottom margin */
  box-sizing: border-box;
}

.catering-form .notice-bar span {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}

.catering-form .notice-bar .form-heading {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

@media (max-width: 768px) {
  .catering-form .notice-bar {
    padding: 30px 15px;
    max-width: 100%;
  }

  .catering-form .notice-bar span {
    font-size: 14px;
  }

  .catering-form .notice-bar .form-heading {
    font-size: 20px;
  }
}

#iframe-section {
        display: none;
        text-align: center;
        padding: 40px 0;
        position: relative;
    }
    #iframe-section.active {
        display: block;
    }
    #iframe-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #000;
        color: #fff;
        border: none;
        font-size: 16px;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 4px;
        z-index: 1000;
    }
    #iframe-close:hover {
        background: #444;
    }
.eq-btn-blk-eq {
    font-family: "marcellus", sans-serif;
    color: #241f21;
    background-color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.5s ease-in;
    font-weight: 400;
    letter-spacing: 1px;
}
.eq-btn-blk-detail
{
	 font-family: "marcellus", sans-serif;
    color: #241f21;
    background-color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.5s ease-in;
    font-weight: 400;
    letter-spacing: 1px;
}
.eq-btn-blk-eq {
  font-family: "marcellus", sans-serif;
  color: #241f21;
  background-color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.5s ease-in;
  font-weight: 400;
  letter-spacing: 1px;
}
.eq-btn-blk-eq:hover {
  background-color: rgba(255, 255, 255, 0.7411764706); /* Replace with --primary-foreground */
  color: #241f21; /* Replace with --primary */
}

.eq-home-tab .tab-layout .info-card .eq-btn-blk-eq {
 margin: 10px 0;
  text-align: center;
  width: 100%;
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
}

/* apply Form css */



/* Form container */
#wpforms-799 .job-application-container {
    width: 90% !important;
    max-width: 900px !important;
    background: #fff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Form header */
#wpforms-799 .form-header {
    text-align: center !important;
    margin-bottom: 30px !important;
}

#wpforms-799 .form-header h2 {
    color: #333 !important;
    font-size: 2em !important;
    margin-bottom: 10px !important;
}

#wpforms-799 .form-header p {
    color: #666 !important;
    font-size: 1em !important;
}

/* Form columns layout */
#wpforms-799 .form-columns {
    display: flex !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

#wpforms-799 .form-column {
    flex: 1 !important;
    min-width: 300px !important;
}

/* Form group */
#wpforms-799 .form-group {
    margin-bottom: 20px !important;
}

#wpforms-799 .form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #555 !important;
    font-weight: bold !important;
}

/* Form inputs, selects, textarea */
#wpforms-799 input,
#wpforms-799 select,
#wpforms-799 textarea {
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    font-size: 1em !important;
    transition: border-color 0.3s !important;
}

#wpforms-799 input:focus,
#wpforms-799 select:focus,
#wpforms-799 textarea:focus {
    border-color: #007bff !important;
    outline: none !important;
}

/* Submit button container */
#wpforms-799 .wpforms-submit-container {
    text-align: center !important;
    margin-top: 30px !important;
}

/* Submit button */
#wpforms-799 .wpforms-submit {
    background-color: #231f20 !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: inline-block !important;
    outline: none !important;
    transition: background 0.3s ease !important;
    padding: 12px 24px !important;
}

.job_apply {
    text-align: center;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    #wpforms-799 .form-columns {
        flex-direction: column !important;
    }
    #wpforms-799 .small-btn {
        width: 100% !important;
    }
}

/* catering css */

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.store-card {
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

/* .store-card:hover,
.store-card.selected {
  border-color: #007bff;
  background-color: #f0f8ff;
} */

.store-card h6 {
  font-size: 1.2rem;
  color: #333;
}

.store-card .address {
  color: #666;
  margin: 10px 0;
}

.store-card .phone {
  color: #007bff;
  font-weight: bold;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
}

.selected-store-info {
  background-color: #e0f2ff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-navigation {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
  .form-navigation {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
}
#tab-content-area {
  scroll-margin-top: 100px; /* adjust to your header height */
}

/* ============================
   Typography & Titles
============================ */
.step-title {
  text-transform: capitalize;
  border-bottom: 1px solid #E4E4E4;
}

.step-title-sub {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 22px;
}

/* ============================
   Store Card Styles
============================ */
.store-card {
  border: 2px solid #ddd;
  padding: 40px;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.3s;
  height: 100%;
  text-align: center;
}

.store-cards {
  border: 2px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.3s;
  height: 100%;
  text-align: center;
}

.store-cards h6 {
    font-size: 20px;
    padding: 20px 0px 20px 0px;
}
.store-card h6 {
  color: #241F21;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.store-card .address {
  color: rgba(7, 18, 34, 0.5); /* #07122280 */
  font-size: 14px;
  margin: 10px 0;
}

.store-card .phone {
  color: #241F21;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 6px;
}

.store-card.active {
  border-color: #e91e63;
  background-color: #fff0f5;
  box-shadow: 0 0 5px rgba(233, 30, 99, 0.3);
}

/* ============================
   Store Select Button
============================ */
.store-select-btn {
  background-color: #241f21 !important;
  color: #fff;
  border: none;
  margin-top: 10px;
  border-radius: 25px;
  padding: 10px 16px;
  font-size: 14px;
}

.store-select-btn:hover {
  background-color: #fef3f5 !important;
	color:#000000;
}

/* Highlight Selected Store */
.store-card.active .store-select-btn {
  background-color: #241f21 !important;
  color: #fff !important;
}

/* ============================
   Cake Order Button
============================ */
.eq-cake-order-btn .btn-primary {
  background-color: #241f21 !important;
  border-color: #241f21 !important;
  border-radius: 25px;
  padding: 10px 16px;
  color: #ffffff;
}

.eq-cake-order-btn .btn-primary:hover {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #ffffff !important;
}

/* ============================
   Popup Buttons (Generic)
============================ */
.btn-popup {
  background-color: #241f21 !important;
  border-color: #241f21 !important;
  border-radius: 25px;
  padding: 10px 16px;
  color: #ffffff;
}

/* ============================
   Responsive Adjustments
============================ */
@media (max-width: 768px) {
  .store-card {
    padding: 12px;
  }

  .modal-dialog {
    max-width: 95%;
  }
}

.store-card button.btn.btn-primary.select-store {
    color: white;
    background: #000000;
    border-radius: 22px;
    padding: 10px 15px 10px 15px;
    margin: 0;
}

.store-card button.btn.btn-primary.select-store:hover {
    color:#000000;
    background: #ffffff;
}

.eq-catering-innr__head h2 {
    text-align: center;
	padding:15px 0;
}

.ui-timepicker-wrapper {
    background-color: #dc3545 !important;
    width: 19% !important;
}

.ui-timepicker-list {
    background-color: #fef3f5 !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
  color:orange;
  cursor:pointer;
}

.ui-timepicker-list li {
    padding: 3px 0 3px 5px;
    cursor: pointer;
    white-space: nowrap;
    color: #393939 !important;
    list-style: none;
    margin: 0;
	font-size: 17px;align-content
	
}
.ui-timepicker-list li {
    color: #000000 !important;
    padding: 8px 12px;
    cursor: pointer;
}
li.ui-timepicker-selected, .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover {
    background: #000000 !important;
    color: #fff !important;
}
.ui-timepicker-list li:hover {
    background-color: #198754;
    color: #ffffff9e;
}
/* ============================
   Responsive Adjustments Function CTA
============================ */

@media (max-width: 767px) {
	.form-navigation {
   position: absolute !important;
        right: 34px !important;
        bottom: 5% !important;
    }
}
.wpforms-form input,
.wpforms-form textarea,
.wpforms-form select,
.wpforms-form button {
    all: revert;
}
.eq-contact-sec .contact-row {
  background-color: transparent;
}

.eq-contact-sec .contact-row .emails, .eq-contact-sec .contact-row .mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eq-contact-sec .fa {
  padding-bottom: 20px;
}

.eq-contact-sec__title{
	font-weight: bold;
    font-size: 25px;
    margin-bottom: 19px;
	color:#ffffff;
}
.eq-contact-form button {
      align-self: flex-start !important;
    background-color: #1c1c1c !important;
    color: white;
    padding: 12px 24px !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    border: none;
    border-radius: 6px !important;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "Marcellus", sans-serif !important;
   
}

.eq-contact-form button:hover {
  opacity:0.8;
}
.mobile a {
    letter-spacing: 2px;
}
.eq-slection-card__inner .head {
width : 20%
}

.eq-slection-card__inner .cnt {
width : 60%
}

.eq-slection-card__inner{
flex-wrap:wrap;
}

  @media (max-width: 767px) {
    .eq-slection-card__inner .head, .eq-slection-card__inner .cnt {
      width: 100%;
      padding-bottom: 10px;
    }
	  .eq-slection-card__outer{
		  flex-wrap:wrap;
	  }
	  .eq-loc-hero__bnt-outer__btn svg{
		 opacity:1;
	  }

  }
.eq-slection-card .eq-selection-cake {
  width: 80%;
}

.eq-slection-card .eq-selection-cake  .head {
  width: 100%;
}

.section-wrapper {
      padding: 60px 20px;
      background-color: #ffffff;
    }

    .content-wrappers {
      max-width: 800px;
      margin: 0 auto;
    }

    .gal-form {
      background-color: #ffffff;
      padding: 40px 20px;
   
    }

    .gal-form h2 {
      text-align: center;
      color: #333;
      margin-bottom: 20px;
    }

    .gal-form .wpforms-container {
      margin-top: 20px;
    }
.eq-visit-loc__w-35 {
    width: 54% !important;
}


.eq-categry-sec-v1 {
  padding: 24px;
}
.eq-categry-sec-v1 .eq-card {
  display: inline;
}
.eq-categry-sec-v1__outer {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px -15px;
}
.eq-categry-sec-v1__col {
  width: calc(33.33% - 20px);
  margin: 10px;
}
.eq-categry-sec-v1__col .eq-card__img {
  height: 455px;
}
.eq-categry-sec-v1__row {
  width: calc(50% - 30px);
  margin: 15px;
}
.eq-categry-sec-v1__row .eq-card__img {
  height: 300px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .eq-categry-sec-v1__row,
  .eq-categry-sec-v1__col {
    width: calc(50% - 20px);
  }
  .eq-categry-sec-v1__outer {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .eq-categry-sec-v1__row,
  .eq-categry-sec-v1__col {
    width: 100%;
  }
  .eq-categry-sec-v1__col .eq-card__img {
    height: 100%;
    width: 100%;
  }
}
.eq-categry-sec-v1 {
  display: flex;
  flex-wrap: wrap;
	  justify-content: center; /* centers horizontally */
  gap: 20px; /* space between items */
  text-align: center;
}
.eq-categry-sec-v1 > div {
  flex: 0 0 auto; /* prevent items from stretching */
}
@media (max-width: 768px) {
   .eq-categry-sec-v1 {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center items horizontally */
    gap: 15px;
  }

  .eq-categry-sec-v1 img {
    width: 100%;
    max-width: 320px;  /* control image size */
    height: auto;
  }
}
@media (max-width: 767px) {
  .eq-visit-loc__outer {
    flex-direction: column;
  }
  .eq-visit-loc__w-55, .eq-visit-loc__w-35 {
    width: 100% !important;
  }
	.eq-visit-loc__w-35 {
    width: 100% !important;
}
	.eq-head h2 {  
	text-align:center !important;
	}
	.eq-visit-loc__cnt {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 20px;
    text-align: center;
}
.visit-sec-hm__sec1 .qarter {
text-align: center;
}
.visit-sec-hm__sec2 {
text-align:center;
}
.eq-card-invt__cnt {
text-align: justify !important;
}
}
.eq-card-invt__cnt {
text-align: justify !important;
}
#tab1-tab
{
display: none !important;
}
.side-menu__right-sec {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important; /* adjust only if extra space is padding */
}
.side-menu__right-sec:empty {
    display: none !important;
}

* {
  max-width: 100% !important;
}

body {
  overflow-x: clip !important; /* better than hidden on mobile */
}

.modal-content {
width: 65%;
margin: auto;
}
.loc {
    display: flex;
    flex-wrap: wrap; /* makes it responsive */
    gap: 20px;       /* spacing between cards */
}

.contact-row {
    flex: 1 1 30%;   /* each will take about 1/3 width */
    max-width: 33.33%;
    background: #222;
    padding: 15px 20px;
    border-bottom: 1px solid #444 !important;
    box-sizing: border-box;
}
