@import url("https://fonts.googleapis.com/css2?family=Bowlby+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*default form variables*/
/*theme base variables*/
/*default colors*/
/*theme base colors*/
/* media query mixins */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale3d(0.7, 0.7, 0.7);
  }
  50% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(0.7, 0.7, 0.7);
  }
}
.mh--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mh--flex.is-flex-center {
  justify-content: center;
}

.txt-center {
  text-align: center;
}

.marg-bottom-40 {
  margin-bottom: 40px;
}

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

* {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body, html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 1.3rem;
  background: #191919 url("../images/shadow-bg.png") top right/70% no-repeat;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
  font-weight: 400;
  margin: 0;
  color: #010101;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100vw;
}
@media (max-width: 767px) {
  body {
    padding-top: 0px;
  }
  .top-bar
  {
      margin-top:70px;
  }
}
body::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 40%;
  bottom: 0;
  background-image: radial-gradient(50% 50% at 50% 50%, #A470AC 0%, #56295D 100%);
  /* Ellipse 192 */
  opacity: 0.8;
  filter: blur(137px);
  z-index: -1;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #333;
  outline: 0;
}
body .main-layout {
  visibility: hidden;
}
body .main-layout header, body .main-layout .splash {
  display: none;
}
body.visible .page-loader {
  animation: 0.2s fadeOut;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
body.visible .main-layout {
  visibility: visible;
  animation: 0.2s fadeIn;
}
body.visible .main-layout header {
  display: block;
}
body.visible .main-layout .splash {
  display: flex;
}
body.noScroll {
  overflow: hidden;
}

.wrapper {
  position: relative;
  padding: 20px;
}

/* For main media query container set width */
.mq-container {
  margin: 0 auto;
  position: relative;
  width: 1400px;
}
@media (max-width: 767px) {
  .mq-container {
    width: 92%;
  }
}
@media (min-width: 768px) {
  .mq-container {
    width: 720px;
  }
}
@media (min-width: 960px) {
  .mq-container {
    width: 960px;
  }
}
@media (min-width: 1280px) {
  .mq-container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .mq-container {
    width: 1400px;
  }
}
@media (min-width: 1924px) {
  .mq-container {
    width: 75%;
  }
}

/*for lenis scroll-behavior*/
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.btn-primary, .gform_button {
  font-size: 18px;
  color: #F2F4F7;
  background-color: #D705F7;
  padding: 5px 30px;
  height: 48px;
  gap: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: 0.2s ease-in;
  font-family: "Bowlby One", sans-serif;
  border: 4px solid #1E1E1E;
  box-shadow: 8px 8px 0px #000000;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .btn-primary, .gform_button {
    height: auto;
    padding: 5px 20px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .btn-primary, .gform_button {
    padding: 5px 20px;
    font-size: 14px;
  }
}
@media (min-width: 960px) {
  .btn-primary, .gform_button {
    padding: 5px 20px;
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .btn-primary, .gform_button {
    font-size: 18px;
    padding: 5px 30px;
  }
}
.btn-primary:hover, .gform_button:hover {
  background-color: rgb(127.9761904762, 2.9761904762, 147.0238095238);
  box-shadow: 5px 5px 0px #000000;
  color: #fff;
}
.btn-primary:active, .gform_button:active {
  background-color: rgb(84.4642857143, 1.9642857143, 97.0357142857);
  box-shadow: 1px 1px 0px #000000;
}
.btn-primary.large {
  padding: 5px 40px;
  height: 60px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .btn-primary.large {
    padding: 5px 25px;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .btn-primary.large {
    padding: 5px 25px;
    font-size: 20px;
  }
}
.btn-primary.wide {
  width: 100%;
}
.btn-primary svg {
  width: 20px;
  fill: currentColor;
}
.btn-primary.circle {
  width: 50px;
  padding: 0;
  justify-content: center;
}
.btn-primary.clr-yellow {
  background-color: #fbf31f;
  color: #010101;
}
.btn-primary.clr-yellow:hover {
  background-color: #e3d202;
  color: #010101;
}
.btn-primary.clr-orange {
  background-color: #FF600B;
  color: #fff;
}
.btn-primary.clr-orange:hover {
  background-color: rgb(164, 57.131147541, 0);
}
.btn-primary.clr-white {
  background-color: #fff;
  color: #151515;
}
.btn-primary.clr-white:hover {
  background-color: #cccccc;
}

.top-bar {
  background-color: #090909;
  color: #fff;
  /*display: flex;*/
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  justify-content: center;
  overflow-x: hidden;
}
@media (max-width: 959px) {
  .top-bar {
    /*display: none;*/
  }
}

header {
  position: relative;
  color: #010101;
  padding: 30px 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
  opacity: 1;
  animation: 0.6s slideInDown;
  font-family: "Bowlby One", sans-serif;
}
header .mq-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  header {
    padding: 15px 0;
    animation: 0.4s fadeInDown;
    position: fixed;
    background-color: #010101;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  }
}
header .logo {
  max-width: 134px;
  display: flex;
  align-content: center;
}
@media (max-width: 959px) {
  header .logo {
    max-width: 70px;
  }
}
@media (min-width: 960px) {
  header .logo {
    max-width: 110px;
  }
}
@media (min-width: 1280px) {
  header .logo {
    max-width: 134px;
  }
}
header .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  header .btn-primary {
    display: none;
  }
}
header nav {
  display: flex;
  font-size: 18px;
  align-items: center;
  gap: 36px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 959px) {
  header nav {
    display: none;
  }
}
@media (min-width: 960px) {
  header nav {
    gap: 24px;
    font-size: 12px;
  }
}
@media (min-width: 1280px) {
  header nav {
    gap: 30px;
    font-size: 15px;
  }
}
@media (min-width: 1600px) {
  header nav {
    font-size: 18px;
  }
}
header nav a {
  transition: 0.2s ease-in;
  display: inline-flex;
  gap: 10px;
  color: #fff;
  position: relative;
  transition: 0.2s ease-in;
}
header nav a:hover {
  color: #fbf31f;
}
header nav a.selected {
  color: #fbf31f;
}
header nav a.selected::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  background-color: #D705F7;
}
header .cta {
  gap: 5px;
  margin-left: 30px;
}
header.s-t-i-c-k-y {
  padding: 10px 0;
  animation: 0.4s fadeInDown;
  position: fixed;
  background-color: #010101;
  z-index: 10;
}
header.s-t-i-c-k-y .logo {
  max-width: 100px;
}
@media (max-width: 959px) {
  header.s-t-i-c-k-y .logo {
    max-width: 70px;
  }
}
header.s-t-i-c-k-y .cta {
  height: 42px;
}

.menu-left, .right-cta-container {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .menu-left {
    width: 100vw;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .right-cta-container {
    display: none;
  }
}

/*Mobile Hamburger and Drawer*/
.menu-icon {
  margin-left: -8px;
}
@media (max-width: 767px) {
  .menu-icon {
    position: absolute;
    left: 20px;
  }
}
@media (min-width: 960px) {
  .menu-icon {
    display: none;
  }
}
.menu-icon ~ .logo {
  margin-left: 15px;
}

.drawer-hamburger {
  width: 48px;
  height: 40px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
}

.drawer-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fefefe;
  border-radius: 9px;
  opacity: 1;
  left: 12px;
  right: 12px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.drawer-hamburger span:nth-child(1) {
  top: 8px;
  transform-origin: left center;
}

.drawer-hamburger span:nth-child(2) {
  top: 18px;
  transform-origin: left center;
}

.drawer-hamburger span:nth-child(3) {
  top: 28px;
  transform-origin: left center;
}

.drawer-toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 1;
  opacity: 0;
}

.menu-icon.open .drawer-hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  left: 12px;
}

.menu-icon.open .drawer-hamburger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-icon.open .drawer-hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 26px;
  left: 12px;
}

.menu-slide {
  background-color: #010101;
  position: fixed;
  inset: 0;
  z-index: 9;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  color: #fefefe;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.menu-slide .social-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.menu-slide.show-menu {
  width: 100%;
  pointer-events: all;
  display: block;
  opacity: 1;
  animation: 0.4s fadeInLeft;
}
.menu-slide .mq-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  min-height: 670px;
}
.menu-slide ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12%;
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  .menu-slide ul {
    margin-top: 60px;
    margin-bottom: 15px;
    align-items: center;
    flex-direction: column;
  }
}
.menu-slide li {
  position: relative;
  padding-left: 44px;
  padding-right: 30px;
}
@media (max-width: 959px) {
  .menu-slide li {
    margin: 5px 0;
    padding: 0;
  }
}
.menu-slide li a {
  font-weight: 700;
  font-size: 3rem;
  text-decoration: none;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  display: block;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .menu-slide li a {
    font-size: 4rem;
  }
}
.menu-slide li a:hover, .menu-slide li a.selected {
  color: #fbf31f;
}
.menu-slide .contact-info {
  min-width: 315px;
  display: flex;
  justify-content: space-between;
  color: #fefefe;
}
@media (max-width: 767px) {
  .menu-slide .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .menu-slide .contact-info {
    gap: 50px;
  }
}
.menu-slide .contact-info > div {
  margin-right: 40px;
}
@media (min-width: 768px) and (max-width: 959px) {
  .menu-slide .contact-info > div {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .menu-slide .contact-info > div {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.menu-slide .contact-info a {
  position: relative;
  font-weight: 500;
}
.menu-slide .contact-info a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  transform: scaleX(0);
  transform-origin: right;
  height: 1px;
  transition: 0.3s transform ease;
  background-color: #F2F4F7;
}
.menu-slide .contact-info a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-slide .contact-info strong {
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 959px) {
  .menu-slide .social-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.menu-slide .social-wrap span {
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 959px) {
  .menu-slide .social-wrap span + span {
    display: none;
  }
}

.over-lay {
  background-color: #010101;
  position: fixed 0;
  display: none;
  z-index: 9;
}

.social-rights {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.8rem;
  color: #fefefe;
}
@media (min-width: 768px) and (max-width: 959px) {
  .social-rights {
    font-size: 16px;
    align-items: flex-start;
  }
  .social-rights strong {
    margin-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .social-rights {
    align-items: center;
    flex-direction: column;
    padding-bottom: 10px;
  }
}

.show-menu ~ .over-lay {
  display: block;
}

footer::before {
  content: "";
  display: block;
  background: url(../images/footer-fire.svg) left top/cover no-repeat;
  height: 50px;
  width: 100%;
  position: relative;
  top: 4px;
}
@media (max-width: 767px) {
  footer {
    text-align: center;
  }
}
footer .logo-foot {
  width: 130px;
}
footer .holder {
  background-color: #D1EF53;
}
footer .mq-container {
  font-size: 1.8rem;
  color: #151515;
  gap: 20px;
}
@media (max-width: 767px) {
  footer .mq-container {
    flex-direction: column;
    font-size: 3.6vw;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  footer .mq-container {
    font-size: 1.4rem;
  }
}
@media (min-width: 960px) {
  footer .mq-container {
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  footer .mq-container {
    font-size: 16px;
  }
}
footer .mq-container .footer-col {
  max-width: 400px;
  list-style: none;
  padding: 0;
}
@media (max-width: 959px) {
  footer .mq-container .footer-col {
    width: 100%;
  }
}
@media (min-width: 960px) {
  footer .mq-container .footer-col {
    max-width: 300px;
  }
}
@media (min-width: 1280px) {
  footer .mq-container .footer-col {
    max-width: 400px;
  }
}
footer .mq-container .footer-col li:not(:last-child) {
  margin-bottom: 10px;
}
footer .mq-container .footer-col h5 {
  text-transform: uppercase;
  font-weight: normal;
  margin: 0 0 10px;
  font-family: "Bowlby One", sans-serif;
  font-size: 16px;
}
@media (min-width: 960px) {
  footer .mq-container .footer-col h5 {
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  footer .mq-container .footer-col h5 {
    font-size: 16px;
  }
}
footer .mq-container cite {
  font-style: normal;
}

.social-wrap .icons-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.social-wrap .icons-group a {
  position: relative;
}
.social-wrap .icons-group a img {
  opacity: 0.8;
  transition: 0.2s ease-in;
  transform: scale(0.8);
}
.social-wrap .icons-group a:hover img {
  transform: scale(1.3, 1.3);
  opacity: 1;
}


.newsletter .gfield_label{
    display: none;
}

.form-input, .ginput_container input {
  border: 1px solid rgb(89.1428571429, 111.4285714286, 144.8571428571);
  border-radius: 3px;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  padding: 15px 20px;
  width: 100%;
  resize: none;
  min-height: 50px;
}

.page-loader {
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  font-weight: 600;
  color: #fff;
  z-index: 100;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5vw;
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #fefefe;
}

section {
  padding: 4rem 0;
}
section.top0 {
  padding-top: 0;
}
section.btm0 {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  section {
    padding: 2rem 0;
  }
}

.txt-center {
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}

h1 {
  line-height: 1;
  margin: 0 0 20px;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 960px) {
  h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 5.6rem;
  }
}
@media (min-width: 1924px) {
  h1 {
    font-size: 6rem;
  }
}

h2 {
  line-height: 1;
  margin: 0 0 20px;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.4rem;
    margin: 0 0 10px;
  }
}
@media (min-width: 960px) {
  h2 {
    font-size: 3.6rem;
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 4.8rem;
    margin: 0 0 20px;
  }
}
@media (min-width: 1924px) {
  h2 {
    font-size: 6rem;
    margin: 0 0 20px;
  }
}
h2 + p {
  margin: 0 0 3rem;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  h2 + p {
    font-size: 1.6rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 768px) {
  h2 + p {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  h2 + p {
    font-size: 2.2rem;
  }
}
@media (min-width: 1600px) {
  h2 + p {
    font-size: 2.4rem;
  }
}

.hero {
  padding: 0 0 50px;
  position: relative;
}
.hero .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hero .item {
    flex-direction: column;
  }
}
.hero .content {
  max-width: 570px;
}
@media (max-width: 767px) {
  .hero .content {
    order: 2;
    text-align: center;
  }
  .hero .content h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .hero .content h1 br {
    display: none;
  }
}
.hero figure {
  width: 50%;
  margin: 0;
  position: relative;
}
@media (max-width: 767px) {
  .hero figure {
    width: 100%;
    order: 1;
  }
}
.hero figure img {
  width: 100%;
  z-index: 1;
  position: relative;
}

.smoke {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url(../images/smoke-bg.png) top center/cover no-repeat;
  animation: smoke-bulured 5s ease-in infinite;
}

@keyframes smoke-bulured {
  0% {
    opacity: 0.9;
    transform: scale(1.1);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="7" /></filter></svg>#filter');
    -webkit-filter: blur(5px);
    filter: blur(7px);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.1);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@media (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

@media (max-width: 767px) {
  .legal {
    flex-direction: column;
    padding-bottom: 20px;
    text-align: center;
  }
}

.cb-reviews .review-cards {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.cb-reviews .review-cards article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: #151515;
  transition: 0.2s ease-in;
}
@media (max-width: 959px) {
  .cb-reviews .review-cards article .info-row {
    flex-direction: column;
  }
}
.cb-reviews .review-cards article .user {
  gap: 10px;
}
.cb-reviews .review-cards article h4 {
  color: white;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 959px) {
  .cb-reviews .review-cards article h4 {
    width: 100%;
  }
}
.cb-reviews .review-cards article p {
  font-size: 20px;
  line-height: 30px;
  opacity: 0.9;
  padding-top: 15px;
  margin-top: 15px;
  margin-bottom: 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 959px) {
  .cb-reviews .review-cards article p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 960px) {
  .cb-reviews .review-cards article p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 1280px) {
  .cb-reviews .review-cards article p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .cb-reviews .review-cards article p {
    font-size: 20px;
    line-height: 30px;
  }
}
.cb-reviews .review-cards article:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-module {
  background: #191919;
  background: linear-gradient(180deg, rgb(25, 25, 25) 0%, rgb(48, 34, 51) 17%, rgb(48, 34, 51) 84%, rgb(25, 25, 25) 100%);
}
.about-module .mq-container {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 959px) {
  .about-module .mq-container {
    flex-direction: column;
  }
}
@media (min-width: 960px) {
  .about-module .mq-container {
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .about-module .mq-container {
    flex-direction: row;
  }
}
.about-module h2 {
  color: #000;
}
.about-module .video--container {
  position: relative;
  line-height: 0;
}
.about-module .video--container::before {
  border: 10px solid #fff;
  height: 800px;
  width: 610px;
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(5deg);
  background: #000;
}
@media (max-width: 959px) {
  .about-module .video--container::before {
    display: none;
  }
}
@media (min-width: 960px) {
  .about-module .video--container::before {
    display: none;
  }
}
@media (min-width: 1280px) {
  .about-module .video--container::before {
    display: block;
    width: 600px;
    height: 800px;
  }
}
@media (min-width: 1600px) {
  .about-module .video--container::before {
    width: 700px;
    height: 800px;
  }
}
.about-module .video--container video {
  border: 10px solid #fff;
  height: 800px;
  width: 700px;
  z-index: 1;
  position: relative;
}
@media (max-width: 959px) {
  .about-module .video--container video {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 960px) {
  .about-module .video--container video {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .about-module .video--container video {
    width: 600px;
    height: 800px;
  }
}
@media (min-width: 1600px) {
  .about-module .video--container video {
    width: 700px;
    height: 800px;
  }
}
.about-module .video--container videoposter {
  width: 100%;
}
.about-module .about--content {
  background: #D1EF53;
  border-radius: 0 20px 20px 0;
  padding: 50px 50px 50px;
  margin: 50px 0;
}
@media (max-width: 959px) {
  .about-module .about--content {
    margin: 0;
    padding: 30px 20px 30px;
    border-radius: 0 0 20px 20px;
  }
}
@media (min-width: 960px) {
  .about-module .about--content {
    margin: 0;
    border-radius: 0 0 20px 20px;
  }
}
@media (min-width: 1280px) {
  .about-module .about--content {
    border-radius: 0 20px 20px 0;
    margin: 50px 0;
  }
}
.about-module .about--content ul li {
  font-size: 24px;
}
@media (max-width: 767px) {
  .about-module .about--content ul li {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .about-module .about--content ul li {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .about-module .about--content ul li {
    font-size: 24px;
  }
}
.about-module .about--content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.menu-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.menu-card-box {
  border-radius: 20px;
  border: 1px solid #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  font-size: 0;
}
.menu-card-box img {
  width: 100%;
  transition: 0.2s ease-in;
}
.menu-card-box:hover {
  box-shadow: 0 6px 20px #000;
}
.menu-card-box:hover img {
  transform: scale(1.1);
}

.card-info {
  position: absolute;
  display: flex;
  justify-content: space-between;
  background-color: rgba(30, 30, 30, 0.9);
  text-transform: uppercase;
  padding: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  gap: 20px;
  border-radius: 15px;
}
.card-info > div {
  width: 70%;
}
.card-info h3, .card-info span {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-family: "Bowlby One", sans-serif;
  color: #fff;
  font-weight: normal;
}
@media (max-width: 959px) {
  .card-info h3, .card-info span {
    font-size: 18px;
  }
}
@media (min-width: 960px) {
  .card-info h3, .card-info span {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  .card-info h3, .card-info span {
    font-size: 24px;
  }
}
.card-info a {
  color: #D705F7;
  font-size: 18px;
  margin-top: 10px;
  font-family: "Bowlby One", sans-serif;
}
.card-info.white {
  position: relative;
  inset: 0;
  padding: 60px 30px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .card-info.white {
    padding: 30px;
  }
}
.card-info.white h3, .card-info.white span {
  color: #151515;
}
.card-info.transparent-para {
  position: relative;
  inset: 0;
  padding: 0;
  background-color: transparent;
}
.card-info.transparent-para p {
  font-size: 24px;
  text-transform: none;
  margin: 0;
  color: #fff;
}
.card-info.transparent-para p strong {
  color: #D1EF53;
}

.social-proof {
  background: url("../images/noise-bg.png") center top/cover no-repeat;
}

.our-story {
  padding-top: 0;
}
.our-story .mq-container {
  padding: 50px;
  background-color: #D1EF53;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  line-height: 1;
}
@media (max-width: 767px) {
  .our-story .mq-container {
    flex-direction: column;
  }
}
.our-story h3 {
  margin: 0 0 20px;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 767px) {
  .our-story h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .our-story h3 {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .our-story h3 {
    font-size: 3.6rem;
  }
}
@media (min-width: 1280px) {
  .our-story h3 {
    font-size: 4.8rem;
  }
}
@media (min-width: 1924px) {
  .our-story h3 {
    font-size: 6rem;
  }
}
.our-story p {
  margin: 0 0 20px;
  font-size: 2.4rem;
  line-height: 40px;
}
@media (max-width: 959px) {
  .our-story p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 960px) {
  .our-story p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (min-width: 1280px) {
  .our-story p {
    font-size: 20px;
  }
}
@media (min-width: 1924px) {
  .our-story p {
    font-size: 24px;
  }
}
.our-story .content {
  width: 59%;
}
@media (max-width: 767px) {
  .our-story .content {
    width: 100%;
  }
}
.our-story .img-section {
  display: flex;
  flex-direction: column;
  width: 40%;
}
@media (max-width: 767px) {
  .our-story .img-section {
    width: 100%;
  }
}
.our-story .img-section img {
  width: 100%;
}

.video-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.video-list .ugc--video {
  position: relative;
  opacity: 1;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.video-list .ugc--video:hover, .video-list .ugc--video.active {
  opacity: 0.6;
}
.video-list .ugc--video .play-btn {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background: #fff url(../images/play.svg) center center no-repeat;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  border-radius: 50%;
}

.catering {
  position: relative;
}
.catering h2 {
  color: #151515;
  text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.5);
}
.catering::before, .catering::after {
  content: "";
  display: block;
  height: 100px;
  width: 100%;
  position: relative;
}
.catering::before {
  background: url("../images/top-fire.svg") center top/cover no-repeat;
  top: 4px;
}
.catering::after {
  top: -4px;
  background: url("../images/botm-fire.svg") center top/cover no-repeat;
}
.catering .holder {
  background-color: #FF600B;
  position: relative;
  z-index: 1;
}
.catering .holder .txt-center {
  padding-left: 5%;
  padding-right: 5%;
}

.instagram-handle {
  background: url("../images/noise-bg.png") center top/cover no-repeat;
  text-align: center;
}
.instagram-handle .insta-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px 0;
  margin-top: 40px;
  flex-direction: column;
}
.instagram-handle .insta-grid .img-holder {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.instagram-handle .insta-grid .img-holder div img {
  width: 100%;
}

.newsletter {
  margin-top: 50px;
}
.newsletter.mq-container {
  padding: 40px 50px;
  border-radius: 20px;
  background-color: #B3A0CD;
}
@media (max-width: 959px) {
  .newsletter.mq-container {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .newsletter.mq-container h1 {
    font-size: 24;
  }
}
.newsletter.mq-container h1, .newsletter.mq-container h3 {
  color: #151515;
  margin: 0;
}
@media (max-width: 959px) {
  .newsletter.mq-container h1, .newsletter.mq-container h3 {
    padding: 0 !important;
  }
}
.newsletter.mq-container h3 {
  font-size: 30px;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}
@media (max-width: 959px) {
  .newsletter.mq-container h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .newsletter.mq-container h3 {
    font-size: 20px;
  }
}
.newsletter.mq-container .form {
  margin-top: 20px;
  display: flex;
  align-content: center;
  justify-content: space-between;
  gap: 20px;
  flex-basis: 1s;
}
@media (max-width: 959px) {
  .newsletter.mq-container .form {
    flex-direction: column;
  }
}
.newsletter.mq-container .form .btn-primary {
  min-width: 220px;
  width: 100%;
}

.page-head {
  text-align: center;
}
.page-head .mq-container {
  padding: 0 10%;
}
.page-head h1 + p {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 959px) {
  .page-head h1 + p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .page-head h1 + p {
    font-size: 18px;
  }
}

.best-seller-container .seller-larg-thumb {
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 15px;
  line-height: 0;
}
@media (min-width: 960px) {
  .best-seller-container .seller-larg-thumb {
    max-height: 470px;
  }
}
@media (min-width: 1280px) {
  .best-seller-container .seller-larg-thumb {
    max-height: 530px;
  }
}
@media (min-width: 1600px) {
  .best-seller-container .seller-larg-thumb {
    max-height: 610px;
  }
}
.best-seller-container .seller-larg-thumb img {
  border: 0 !important;
  object-fit: align-sel;
}
.best-seller-container .best-seller-btn {
  background: #D705F7;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(17px);
  border-radius: 20px;
  color: #fff;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
  font-size: 48px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .best-seller-container .best-seller-btn {
    font-size: 22px;
  }
  .best-seller-container .best-seller-btn span {
    display: none;
  }
}
@media (min-width: 768px) {
  .best-seller-container .best-seller-btn {
    font-size: 34px;
  }
}
@media (min-width: 960px) {
  .best-seller-container .best-seller-btn {
    font-size: 48px;
  }
}
.best-seller-container .best-seller-btn + p {
  font-size: 24px;
  line-height: 36px;
  padding: 0 10%;
  color: #fff;
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 959px) {
  .best-seller-container .best-seller-btn + p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .best-seller-container .best-seller-btn + p {
    font-size: 18px;
  }
}
.best-seller-container .best-seller-item {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .best-seller-container .best-seller-item {
    flex-direction: column;
  }
}
.best-seller-container .best-seller-item:not(:last-child) {
  margin-bottom: 70px;
}
.best-seller-container .best-seller-item img {
  border-radius: 15px;
  border: 1px solid #fff;
  width: 100%;
}
.best-seller-container .best-seller-item .col {
  display: flex;
  gap: 30px;
  width: 50%;
  flex-direction: column;
}
@media (max-width: 767px) {
  .best-seller-container .best-seller-item .col {
    width: 100%;
  }
}

.menu-main .menu-category-bar {
  position: relative;
  display: flex;
  background-color: #D1EF53;
  border: 1px solid #fff;
  align-items: center;
  height: 100px;
  padding: 70px 50px;
  border-radius: 15px;
  margin: 70px 0;
}
@media (max-width: 959px) {
  .menu-main .menu-category-bar {
    padding: 50px 30px;
    margin: 50px 0;
  }
}
@media (max-width: 767px) {
  .menu-main .menu-category-bar {
    padding: 30px 30px;
    margin: 10px 0 30px;
  }
}
.menu-main .menu-category-bar h3 {
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Bowlby One", sans-serif;
  font-weight: normal;
}
@media (max-width: 959px) {
  .menu-main .menu-category-bar h3 {
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .menu-main .menu-category-bar h3 {
    font-size: 36px;
  }
}
@media (min-width: 1280px) {
  .menu-main .menu-category-bar h3 {
    font-size: 48px;
  }
}
.menu-main .menu-category-bar img {
  position: absolute;
  right: 0;
  width: 300px;
}
@media (max-width: 959px) {
  .menu-main .menu-category-bar img {
    width: 80px;
  }
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 959px) {
  .menu-item-row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .menu-item-row {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .menu-item-row ul li:last-child {
    margin-bottom: 0;
  }
}
.menu-item-row .menu-card-box {
  flex-shrink: 0;
  width: 48%;
}
@media (max-width: 959px) {
  .menu-item-row .menu-card-box {
    width: 100%;
  }
}
.menu-item-row .menu-card-box img {
  width: 100%;
}
.menu-item-row .menu-card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48%;
}
@media (max-width: 959px) {
  .menu-item-row .menu-card-content {
    width: 100%;
  }
}
.menu-item-row .menu-card-content p {
  max-width: 70%;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  margin: 0;
}
@media (max-width: 959px) {
  .menu-item-row .menu-card-content p {
    max-width: 100%;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 960px) {
  .menu-item-row .menu-card-content p {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .menu-item-row .menu-card-content p {
    font-size: 30px;
  }
}
.menu-item-row ul {
  list-style: none;
  width: 100%;
  padding: 0 50px;
}
.menu-item-row li {
  font-size: 30px;
  color: #fff;
  display: flex;
  margin-bottom: 35px;
  justify-content: space-between;
}
@media (max-width: 959px) {
  .menu-item-row li {
    font-size: 20px;
    flex-direction: column;
  }
}
@media (min-width: 960px) {
  .menu-item-row li {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .menu-item-row li {
    font-size: 30px;
  }
}
.menu-item-row:nth-child(odd) {
  flex-flow: row-reverse;
}
@media (max-width: 959px) {
  .menu-item-row:nth-child(odd) {
    flex-direction: column;
  }
}

.disclaimer {
  margin-top: 50px;
}
.disclaimer img {
  width: 100%;
}

.pad-top-zero {
  padding-top: 0;
}

.location-container {
  background-color: #2D1F2F;
}
.location-container.no-bg {
  background-color: transparent;
}
.location-container .location-card-holder {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 959px) {
  .location-container .location-card-holder {
    flex-direction: column;
  }
}
.location-container .location-card {
  background-color: #B3A0CD;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-direction: column;
  position: relative;
  width: 25%;
}
.location-container .location-card .new-tag {
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (max-width: 959px) {
  .location-container .location-card {
    width: 100%;
  }
}
.location-container .location-card .btn-primary {
  font-size: 13px;
  height: 40px;
}
.location-container .location-card h4 {
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 24px;
  margin: 0 0 12px;
}
@media (min-width: 960px) {
  .location-container .location-card h4 {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .location-container .location-card h4 {
    font-size: 24px;
  }
}
.location-container .location-card span {
  background: #D1EF53;
  font-size: 16px;
  border-radius: 100px;
  padding: 4px 10px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.location-container .location-card .location-pin {
  background-color: #EBE7F2;
  border-radius: 10px;
  padding: 20px;
}
.location-container .location-card .location-pin h5 {
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 20px;
  margin: 0 0 5px;
}
@media (min-width: 960px) {
  .location-container .location-card .location-pin h5 {
    font-size: 15px;
  }
}
@media (min-width: 1280px) {
  .location-container .location-card .location-pin h5 {
    font-size: 20px;
  }
}
.location-container .location-card .location-pin p {
  font-size: 18px;
  line-height: 20px;
}
@media (min-width: 960px) {
  .location-container .location-card .location-pin p {
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  .location-container .location-card .location-pin p {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .location-container .location-card .location-pin p {
    font-size: 18px;
  }
}

.popular-location {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .popular-location {
    gap: 1px;
  }
}
.popular-location img {
  max-width: 24%;
  width: 100%;
  border-radius: 15px;
}

.form-row label, .contact-form label {
  font-weight: 500;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.form-row label + span {
  display: inline-block;
  margin-top: 10px;
}
.form-row:not(:last-child) {
  margin-bottom: 24px;
}
.form-row input[type=checkbox] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.form-row.col-half {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.form-row.col-half > div {
  width: 100%;
}

.form-chunk {
  background-color: rgba(179, 160, 205, 0.8);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}
@media (max-width: 959px) {
  .form-chunk .form-row {
    flex-direction: column;
  }
}

.contact-container .mq-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 959px) {
  .contact-container .mq-container {
    flex-direction: column;
  }
}
.contact-container .mq-container .contact-form, .contact-container .mq-container .contact-content {
  width: 48%;
}
@media (max-width: 959px) {
  .contact-container .mq-container .contact-form, .contact-container .mq-container .contact-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-container .mq-container .contact-content {
    order: 2;
  }
}
.contact-container .mq-container .contact-form {
  background-color: rgba(179, 160, 205, 0.7);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 767px) {
  .contact-container .mq-container .contact-form {
    order: 1;
    padding: 20px;
  }
}
.contact-container .mq-container p, .contact-container .mq-container h5 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 20px;
  line-height: 36px;
}
.contact-container .mq-container p a {
  color: #D1EF53;
}
.contact-container .mq-container h5 {
  color: #D1EF53;
  margin: 40px 0 20px;
}
.contact-container .mq-container .icons-group svg circle {
  stroke: #fff;
}

.marquee-container .marquee {
  display: flex;
  gap: 50px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-container .marquee div {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-container .marquee img {
  height: 90px;
  display: inline-block;
  margin-left: 90px;
}

@media (max-width: 767px) {
  .marquee-container .marquee img {
    height: 50px;
    margin-left: 40px;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .marquee-container .marquee img {
    height: 70px;
    margin-left: 50px;
  }
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.catering-terms ul {
  list-style: none;
}
.catering-terms ul li {
  list-style-image: url(../images/check-icon.svg);
  list-style-position: 10px;
  font-size: 22px;
  color: #fff;
}
.catering-terms ul li:not(:last-child) {
  margin-bottom: 8px;
}

[id=root] {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.mh-intro {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.mh-intro img {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}
.mh-intro small {
  font-size: 16px;
  color: #010101;
  text-align: center;
  font-weight: 300;
}


.order-page .mq-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 959px) {
  .order-page .mq-container {
    flex-direction: column;
  }
}
.order-page .pickup {
  background-color: rgba(179, 160, 205, 0.7);
  border-radius: 20px;
  padding: 40px;
  width: 50%;
  text-align: center;
}
@media (max-width: 959px) {
  .order-page .pickup {
    width: 100%;
  }
}
.order-page .pickup p {
  margin: 0;
}

[id=root] {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.mh-intro {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.mh-intro img {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}
.mh-intro small {
  font-size: 16px;
  color: #010101;
  text-align: center;
  font-weight: 300;
}


/*Frenchise page */

.delivery-icon {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  background-color: rgb(167, 143, 203);
  line-height: 0;
  padding: 10px;
  border-radius: 10px;
}
.delivery-icon.mini img {
  width: 36px;
  margin-left: 5px;
}
.delivery-icon img {
  transition: 0.2s ease-in;
  opacity: 0.8;
}
.delivery-icon img:hover {
  opacity: 1;
}

.cb-reviews .review-cards {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.cb-reviews .review-cards article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: #151515;
  transition: 0.2s ease-in;
}
.cb-reviews .review-cards article .info-row {
  flex-direction: column;
  align-items: flex-start;
}
.cb-reviews .review-cards article .user {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.cb-reviews .review-cards article .user .details {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cb-reviews .review-cards article .user .details img {
  width: 60px;
}
.cb-reviews .review-cards article .user .google--icon {
  width: 36px;
}
.cb-reviews .review-cards article h4 {
  color: white;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 5px;
}
@media (max-width: 959px) {
  .cb-reviews .review-cards article h4 {
    width: 100%;
  }
}
.cb-reviews .review-cards article .date {
  font-size: 13px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}
.cb-reviews .review-cards article p {
  font-size: 18px;
  line-height: 30px;
  opacity: 0.8;
  margin-top: 15px;
  margin-bottom: 0;
  transition: 0.2s ease;
  color: #fff;
}
@media (max-width: 959px) {
  .cb-reviews .review-cards article p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 960px) {
  .cb-reviews .review-cards article p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 1280px) {
  .cb-reviews .review-cards article p {
    font-size: 18px;
    line-height: 24px;
  }
}
.cb-reviews .review-cards article:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.cb-reviews .review-cards article:hover p {
  opacity: 1;
}

header svg {
  fill: currentColor;
}

.franchaise-banner img {
  margin-bottom: 20px;
  width: 100%;
}

.investment h2 {
  text-align: center;
}
.investment .investment-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 50px;
}
@media (max-width: 767px) {
  .investment .investment-container {
    flex-direction: column;
  }
}
.investment .investment-container h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  margin: 0;
}
@media (max-width: 959px) {
  .investment .investment-container h4 {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  .investment .investment-container h4 {
    font-size: 24px;
  }
}
@media (min-width: 1280px) {
  .investment .investment-container h4 {
    font-size: 30px;
  }
}
.investment .investment-container p {
  font-size: 14px;
  opacity: 0.7;
}
.investment .investment-container > div {
  color: #fff;
  text-align: center;
}
.investment .investment-container > div img {
  height: 80px;
}

.franchise-orange .mq-container {
  background: #FF600B;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.popular-location img {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 960px) {
  .new-tag {
    width: 32px;
  }
}
@media (min-width: 1280px) {
  .new-tag {
    width: auto;
  }
}

[id=root] {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.mh-intro {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.mh-intro img {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}
.mh-intro small {
  font-size: 16px;
  color: #010101;
  text-align: center;
  font-weight: 300;
}
@media (max-width: 767px) {
  .best-seller-container .best-seller-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  body .newsletter .gform_wrapper .gform_footer {
    width: 100%;
    margin-left: 0!important;
  }
}

@media (max-width: 767px) {
  .btn-primary, .gform_button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #gform_submit_button_4 {
    margin-top: 20px;
  }
}
#field_2_13
{
    width: 100%!important;
}
.franchise-orange h3 {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .franchise-orange h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .franchise-orange h3 {
    font-size: 2.4rem;
  }
}

.investment .investment-container {
  align-items: flex-start;
}

.investment .investment-container > div {
  width: 32%;
}
@media (max-width: 767px) {
  .investment .investment-container > div {
    width: 100%;
	  padding:0 15px!important;
  }
}

.investment .investment-container p {
  line-height: 22px;
}

footer .mq-container {
  align-items: flex-start;
}