@font-face {
  font-family: "Herbik";
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/Herbik-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Herbik";
  font-style: italic;
  font-weight: 400;
  src: url(../../fonts/Herbik-Italic.woff2) format("woff2");
}
@font-face {
  font-family: "Ruder Plakat LL VIP";
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/RuderPlakatLLVIPWeb.woff2) format("woff2");
}
@font-face {
  font-family: "FT Polar";
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/FTPolar-Semibold.woff2) format("woff2");
}
:root {
  --font-primal: "Herbik", "Times New Roman", serif;
  --font-alternative: "FT Polar", Arial, Helvetica, sans-serif;
  --font-strong: "Ruder Plakat LL VIP", Arial, Helvetica, sans-serif;
  --color-primary: #5c4e72;
  --color-blue: #79b0c8;
  --color-action: #ffbf40;
  --header-spacing: 68px;
  --header-spacing-desktop: 80px;
}

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;
  vertical-align: baseline;
}

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

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font: 400 16px/1.2 var(--font-primal);
  color: var(--color-primary);
  background: url("/themes/baldor/images/bite-2026/bg-pattern.png") repeat center center #faf8f3;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

ol, ul {
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

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

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

.container {
  padding: 0 16px;
  width: 100%;
  max-width: 1664px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .container {
    padding: 0 32px;
  }
}

.main {
  margin-top: calc(-1 * var(--header-spacing));
}
@media only screen and (min-width: 1025px) {
  .main {
    margin-top: calc(-1 * var(--header-spacing-desktop));
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  transition: background 0.3s;
}
.scrolled .header {
  background: #faf8f3;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 68px;
}
@media only screen and (min-width: 1025px) {
  .header__inner {
    height: 80px;
  }
}
.header__logo {
  position: relative;
  display: block;
  color: #fff;
  transition: color 0.3s;
  z-index: 11;
}
.scrolled .header__logo {
  color: var(--color-primary);
}
.active-nav .header__logo {
  color: #fff;
}
.header__icon-logo {
  width: 168px;
  height: 36px;
}
@media only screen and (min-width: 1025px) {
  .header__icon-logo {
    width: 218px;
    height: 48px;
  }
}
.header__desktop-nav {
  margin: 0 auto;
}
.header__desktop-nav .nav {
  display: none;
  gap: 40px;
  font: 400 16px/1.2 var(--font-alternative);
}
@media only screen and (min-width: 1025px) {
  .header__desktop-nav .nav {
    display: flex;
  }
}
.header__desktop-nav .nav li {
  position: relative;
  padding: 8px 0;
}
.header__desktop-nav .nav li::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 71px;
}
.header__desktop-nav .nav li:hover::before {
  display: block;
}
.header__desktop-nav .nav li:hover ul {
  display: block;
}
.header__desktop-nav .nav ul {
  display: none;
  position: absolute;
  top: 62px;
  left: -19px;
  min-width: 336px;
  background: #fafafa;
  border: solid 1px #e9eaeb;
  border-radius: 12px;
  padding: 7px;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.1);
}
.header__desktop-nav .nav ul li {
  padding: 0;
}
.header__desktop-nav .nav ul li::before {
  display: none !important;
}
.header__desktop-nav .nav ul li:not(:first-child) {
  padding-top: 2px;
}
.header__desktop-nav .nav ul a {
  display: block;
  border-radius: 8px;
  padding: 12px;
  white-space: nowrap;
  color: var(--color-primary);
  transition: all 0.3s;
}
.header__desktop-nav .nav ul a:hover {
  background: #eeebe2;
  color: var(--color-primary);
}
.header__desktop-nav a {
  position: relative;
  color: #fff;
  transition: all 0.3s;
}
.scrolled .header__desktop-nav a {
  color: var(--color-primary);
}
.header__side {
  position: relative;
  z-index: 11;
  display: none;
}
@media only screen and (min-width: 500px) {
  .header__side {
    display: block;
  }
}
.header__hamburger {
  position: relative;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  z-index: 11;
}
@media only screen and (min-width: 1025px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 0;
  width: 20px;
  height: 2px;
  color: transparent;
  background: #fff;
  transition: background 0.3s;
}
.scrolled .header__hamburger span {
  background: var(--color-primary);
}
.header__hamburger span:after, .header__hamburger span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.scrolled .header__hamburger span:after, .scrolled .header__hamburger span:before {
  background: var(--color-primary);
}
.header__hamburger span:before {
  top: -8px;
}
.header__hamburger span:after {
  bottom: -8px;
}
.active-nav .header__hamburger span {
  background: none;
}
.active-nav .header__hamburger span:before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}
.active-nav .header__hamburger span:after {
  bottom: 0;
  transform: rotate(-45deg);
  background: #fff;
}
.header__mobile-flyout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 84px 24px 24px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: var(--color-primary);
}
.active-nav .header__mobile-flyout {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (min-width: 1025px) {
  .header__mobile-flyout {
    display: none;
  }
}
.header__mobile-flyout .widget-button {
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
}
@media only screen and (min-width: 500px) {
  .header__mobile-flyout .widget-button {
    display: none;
  }
}
.header__mobile-nav {
  font: 400 40px/1.2 var(--font-strong);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 0 24px;
}
@media only screen and (min-width: 768px) {
  .header__mobile-nav {
    font-size: 56px;
  }
}
.header__mobile-nav a {
  color: #fff;
}
.header__mobile-nav li {
  padding: 0 0 4px;
}
.header__mobile-nav li li {
  padding-left: 24px;
  opacity: 0.6;
}

.top-banner {
  padding: 128px 0 56px;
  color: #fff;
  background: var(--color-primary);
}
@media only screen and (min-width: 1440px) {
  .top-banner {
    padding: 160px 0 88px;
  }
}
@media only screen and (min-width: 768px) {
  .top-banner__inner {
    display: flex;
  }
}
.top-banner__title {
  font: 400 56px/0.9 var(--font-strong);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  .top-banner__title {
    margin: 0 36px 0 0;
    width: calc(50% - 36px);
    min-width: calc(50% - 36px);
  }
}
@media only screen and (min-width: 1440px) {
  .top-banner__title {
    font-size: 86px;
  }
}
.top-banner__content {
  font: 400 16px/1.2 var(--font-primal);
}
@media only screen and (min-width: 768px) {
  .top-banner__content {
    width: 50%;
    min-width: 50%;
    font-size: 20px;
  }
}
@media only screen and (min-width: 1025px) {
  .top-banner__content {
    font-size: 32px;
  }
}
.bg-violet .top-banner {
  background: var(--color-primary);
}
.bg-blue .top-banner {
  background: var(--color-blue);
}
.bg-red .top-banner {
  background: #ff9d81;
}
.bg-green .top-banner {
  background: #80bf7c;
}

.footer {
  padding-top: 80px;
  padding-bottom: 60px;
  font: 500 20px/1.6 Arial, sans-serif;
  color: var(--color-primary);
}
.footer a {
  color: var(--color-primary);
}
.footer__top {
  display: grid;
  padding-bottom: 60px;
  gap: 45px 56px;
  grid-template-areas: "logo" "contact" "address" "subscribe";
}
@media only screen and (min-width: 768px) {
  .footer__top {
    grid-template-areas: "logo contact" "subscribe address";
  }
}
@media only screen and (min-width: 1025px) {
  .footer__top {
    grid-template-areas: "logo contact address subscribe";
  }
}
.footer__top a:hover {
  text-decoration: underline;
}
.footer__icon-logo {
  grid-area: logo;
}
.footer__icon-logo {
  width: 285px;
  height: 62px;
}
.footer__contact {
  grid-area: contact;
}
.footer__address {
  grid-area: address;
  font-style: normal;
}
.footer__subscribe {
  grid-area: subscribe;
  font-style: normal;
  display: flex;
}
@media only screen and (min-width: 1025px) {
  .footer__subscribe {
    justify-content: flex-end;
  }
}
.footer__bottom {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media only screen and (min-width: 414px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__copyright {
  font-size: 16px;
}
.footer__social-list {
  display: flex;
  gap: 17px;
}
.footer__social-link {
  width: 37px;
  height: 37px;
  border: solid 1px #e5e5e5;
  border-radius: 8px;
  background: #faf8f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer__social-link:hover {
  background: var(--color-action);
  border-color: var(--color-action);
}
.footer__instagram-icon {
  width: 19px;
  height: 19px;
}
.footer__linked-in-icon {
  width: 15px;
  height: 15px;
}

.widget-banner {
  font: 400 20px/1.2 var(--font-primal);
  color: #fff;
}
.widget-banner__inner {
  height: 700px;
  padding-top: 127px;
  border: solid 8px var(--color-action);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .widget-banner__inner {
    height: 757px;
    padding-top: 160px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-banner__inner {
    padding-top: 150px;
  }
}
@media only screen and (min-width: 1600px) {
  .widget-banner__inner {
    position: relative;
  }
}
.widget-banner__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}
.widget-banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget-banner__content {
  float: right;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .widget-banner__content {
    width: 342px;
  }
}
@media only screen and (min-width: 768px) {
  .widget-banner__content {
    margin-right: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-banner__content {
    width: 452px;
    margin-right: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .widget-banner__content {
    width: 452px;
    margin-right: 100px;
  }
}
.widget-banner__title {
  font: 400 64px/0.85 var(--font-strong);
  letter-spacing: 3px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 1440px) {
  .widget-banner__title {
    font-size: 86px;
    padding-bottom: 24px;
  }
}
.widget-banner__text {
  padding-bottom: 20px;
}
@media only screen and (min-width: 1025px) {
  .widget-banner__text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-banner__text {
    padding-bottom: 28px;
  }
}
.widget-banner__info {
  display: flex;
  gap: 24px;
}
.widget-banner__info-label {
  display: block;
  font: 400 15px/28px var(--font-alternative);
  text-align: center;
  color: var(--color-primary);
  border-radius: 5px;
  width: 85px;
  background: #ff9e81;
  margin-bottom: 12px;
}
.widget-banner__info-label--alt {
  background: #80bf7c;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 400 16px/36px var(--font-alternative);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-primary);
  background: var(--color-action);
  height: 48px;
  padding: 0 16px 0 24px;
  border: solid 1px var(--color-action);
  border-radius: 24px;
  transition: all 0.3s;
}
.button:hover {
  color: var(--color-action);
  background: var(--color-primary);
}
.button__icon {
  width: 24px;
  height: 24px;
}
.button--wide {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .widget-button {
    height: 36px;
    border-radius: 18px;
  }
}

.widget-cms-whats-bite {
  padding: 0 16px;
  width: 100%;
  max-width: 1664px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .widget-cms-whats-bite {
    padding: 0 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-cms-whats-bite {
    padding: 0 32px;
  }
}
.widget-cms-whats-bite {
  padding-top: 84px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .widget-cms-whats-bite {
    display: flex;
    gap: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-cms-whats-bite {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
.widget-cms-whats-bite .title {
  font: 400 48px/0.85 var(--font-strong);
  letter-spacing: 1px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .widget-cms-whats-bite .title {
    width: 180px;
    min-width: 180px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-cms-whats-bite .title {
    width: 200px;
    min-width: 200px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-cms-whats-bite .title {
    width: 350px;
    min-width: 350px;
    padding-right: 50px;
    font-size: 72px;
  }
}
.widget-cms-whats-bite__text {
  font-size: 20px;
  line-height: 1.15;
  flex-grow: 1;
}
@media only screen and (min-width: 1440px) {
  .widget-cms-whats-bite__text {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .widget-cms-whats-bite--alternative .title {
    width: 230px;
    min-width: 230px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-cms-whats-bite--alternative .title {
    width: 240px;
    min-width: 240px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-cms-whats-bite--alternative .title {
    width: 350px;
    min-width: 350px;
    padding-right: 0;
  }
}

.widget-video-holder {
  margin-bottom: 60px;
}
.widget-video-holder__title-section {
  background: var(--color-blue);
  padding: 50px 0 0;
}
@media only screen and (min-width: 768px) {
  .widget-video-holder__title-section {
    padding: 60px 0 0;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-video-holder__title-section {
    font-size: 64px;
    padding: 70px 0 0;
  }
}
.widget-video-holder__title {
  font: 400 48px/1 var(--font-strong);
  color: #faf8f3;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .widget-video-holder__title {
    padding: 0 0 70px;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-video-holder__title {
    font-size: 64px;
    padding: 0 0 90px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-video-holder__title {
    font-size: 80px;
    padding: 0 0 100px;
  }
}
.widget-video-holder__title span {
  color: rgba(250, 248, 243, 0.4);
}
.widget-video-holder__video-section {
  background: linear-gradient(to bottom, var(--color-blue) 0%, var(--color-blue) 50%, transparent 50%, transparent 100%);
}
.widget-video-holder__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}
.widget-video-holder__poster {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.widget-video-holder__poster:hover .widget-video-holder__play {
  background: var(--color-action);
  color: var(--color-primary);
}
.widget-video-holder__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.widget-video-holder__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  color: #fff;
  transition: all 0.3s;
}
@media only screen and (min-width: 1440px) {
  .widget-video-holder__play {
    width: 64px;
    height: 64px;
  }
}
.widget-video-holder__play-icon {
  width: 12px;
  height: 12px;
}
@media only screen and (min-width: 1440px) {
  .widget-video-holder__play-icon {
    width: 22px;
    height: 22px;
  }
}

.widget-sponsors {
  padding: 0 0 30px;
}
@media only screen and (min-width: 1025px) {
  .widget-sponsors {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 30px 0;
    border-top: solid 1px #d1d1d1;
  }
}
.widget-sponsors__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font: 400 16px/1.5 var(--font-alternative);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #d1d1d1;
}
@media only screen and (min-width: 1025px) {
  .widget-sponsors__header {
    display: block;
    flex-grow: 1;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.widget-sponsors__title {
  font-size: 26px;
  line-height: 1.2;
}
@media only screen and (min-width: 1025px) {
  .widget-sponsors__title {
    margin-bottom: 6px;
  }
}
.widget-sponsors__button {
  white-space: nowrap;
  display: flex;
  gap: 8px;
}
.widget-sponsors__button-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
@media only screen and (min-width: 1025px) {
  .widget-sponsors__content {
    width: calc(100% - 250px);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }
}
.widget-sponsors__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-sponsors__image {
  max-height: 93px;
}

.widget-time-left {
  background: var(--color-blue);
}
.widget-time-left__inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(296px, 1fr);
  gap: 16px;
  width: 100%;
  overflow: auto hidden;
}
@media only screen and (min-width: 768px) {
  .widget-time-left__inner {
    grid-auto-columns: minmax(328px, 1fr);
  }
}
.widget-time-left__section {
  background: url("/themes/baldor/images/bite-2026/bg-pattern.png") repeat center center #faf8f3;
  padding: 24px;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 1530px) {
  .widget-time-left__section {
    padding: 30px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.widget-time-left__countdown-title {
  font: 400 27px/1.2 var(--font-strong);
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 12px;
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown-title {
    font: 400 24px/78px var(--font-strong);
    margin: 0;
  }
}
.widget-time-left__countdown {
  display: flex;
  margin: auto;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown {
    margin: 0;
  }
}
.widget-time-left__countdown-slot {
  width: 63px;
  text-align: center;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown-slot {
    width: 78px;
  }
}
.widget-time-left__countdown-digit {
  height: 60px;
  position: relative;
  font: 400 42px/60px var(--font-strong);
  letter-spacing: 2px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown-digit {
    height: 74px;
    font: 400 52px/74px var(--font-strong);
  }
}
.widget-time-left__countdown-digit::before, .widget-time-left__countdown-digit::after {
  content: "";
  background: rgba(92, 78, 114, 0.2);
  position: absolute;
  width: 100%;
  height: calc(50% - 1px);
  left: 0;
  z-index: 0;
}
.widget-time-left__countdown-digit::before {
  top: 0;
  border-radius: 8px 8px 0 0;
}
.widget-time-left__countdown-digit::after {
  bottom: 0;
  border-radius: 0 0 8px 8px;
}
.widget-time-left__countdown-separator {
  font: 400 34px/50px var(--font-alternative);
  padding: 0 6px;
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown-separator {
    font: 400 42px/62px var(--font-alternative);
  }
}
.widget-time-left__countdown-text {
  font: 400 15px/17px var(--font-alternative);
}
@media only screen and (min-width: 768px) {
  .widget-time-left__countdown-text {
    font: 400 18px/21px var(--font-alternative);
  }
}
.widget-time-left__statistic-value {
  font: 400 80px/0.85 var(--font-strong);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.widget-time-left__statistic-title {
  font: 400 23px/1.2 var(--font-primal);
  font-style: italic;
  margin-bottom: 8px;
}
.widget-time-left__statistic-text {
  font: 400 16px/26px var(--font-primal);
}

.widget-getting-here {
  padding-top: 20px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .widget-getting-here {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-getting-here {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.widget-getting-here__top {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .widget-getting-here__top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
  }
}
.widget-getting-here__main {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .widget-getting-here__main {
    width: 280px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-getting-here__main {
    width: 450px;
    margin-bottom: 0;
  }
}
.widget-getting-here__map-wrapper {
  background: var(--color-blue);
  border-radius: 12px;
  position: relative;
  max-width: 1050px;
  height: 288px;
  flex-grow: 1;
}
.widget-getting-here__image-map, .widget-getting-here__google-map {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  overflow: hidden;
}
.widget-getting-here__image-map img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  border-radius: 3px;
}
.widget-getting-here__title {
  font: 400 48px/1.3 var(--font-strong);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1440px) {
  .widget-getting-here__title {
    font-size: 72px;
  }
}
.widget-getting-here__label {
  display: inline-block;
  font: 400 15px/28px var(--font-alternative);
  text-align: center;
  border-radius: 5px;
  width: 85px;
  color: #fff;
  background: var(--color-blue);
  margin-bottom: 12px;
}
.widget-getting-here__address {
  display: block;
  font: 400 24px/1.2 var(--font-primal);
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  .widget-getting-here__bottom {
    display: flex;
    gap: 80px;
  }
}
.widget-getting-here__bottom-section {
  margin-bottom: 30px;
  flex-grow: 1;
  font: 400 20px/1.2 var(--font-primal);
}
.widget-getting-here__sub-title {
  font: 400 32px/1.3 var(--font-strong);
  letter-spacing: 2px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1440px) {
  .widget-getting-here__sub-title {
    font-size: 40px;
  }
}
.widget-getting-here dl {
  margin-top: 40px;
  border-top: solid 1px rgba(92, 78, 114, 0.34);
}
.widget-getting-here dt {
  font: 400 24px/1.4 var(--font-alternative);
  margin-top: 40px;
}
.widget-getting-here dd {
  font: 400 20px/1.5 var(--font-primal);
}

.widget-faq {
  background: var(--color-primary);
  padding: 16px 0;
}
@media only screen and (min-width: 768px) {
  .widget-faq {
    padding: 32px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-faq {
    padding: 80px 0;
  }
}
.widget-faq__inner {
  border-radius: 12px;
  background: url("/themes/baldor/images/bite-2026/bg-pattern.png") repeat top center #faf8f3;
  padding: 80px 16px 24px;
}
@media only screen and (min-width: 768px) {
  .widget-faq__inner {
    padding: 80px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-faq__inner {
    padding: 80px;
  }
}
.widget-faq__title {
  font: 400 48px/1 var(--font-strong);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .widget-faq__title {
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-faq__title {
    font-size: 72px;
    letter-spacing: 3px;
  }
}
.widget-faq__intro {
  font: 400 16px/1.15 var(--font-primal);
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .widget-faq__intro {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-faq__intro {
    max-width: 724px;
    margin: auto;
  }
}
.widget-faq__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  gap: 20px;
}
@media only screen and (min-width: 500px) {
  .widget-faq__buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}
.widget-faq__link {
  font: 400 16px var(--font-alternative);
  text-decoration: underline;
}
.widget-faq__link:hover {
  text-decoration: none;
}
.widget-faq__accordeon {
  border-bottom: solid 1px #ededed;
  margin: 50px 0 0;
}
.widget-faq .ui-accordion-header {
  font: 400 20px/1.5 var(--font-alternative);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 8px;
  border-top: solid 1px #ededed;
  padding: 26px 0;
}
@media only screen and (min-width: 768px) {
  .widget-faq .ui-accordion-header {
    font-size: 24px;
  }
}
.widget-faq .ui-accordion-header-icon {
  width: 32px;
  height: 32px;
  position: relative;
}
.widget-faq .ui-accordion-header-icon::before, .widget-faq .ui-accordion-header-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 19px;
  height: 2px;
  background: var(--color-primary);
}
.widget-faq .ui-accordion-header-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.widget-faq .ui-accordion-header-active .ui-accordion-header-icon::after {
  display: none;
}
.widget-faq .ui-accordion-content {
  padding-bottom: 26px;
  font: 400 20px/1.15 var(--font-primal);
}
@media only screen and (min-width: 768px) {
  .widget-faq .ui-accordion-content {
    font: 400 24px/1.5 var(--font-primal);
  }
}
.top-banner + .bitefaq .widget-faq, .bitefaq + .bitefaq .widget-faq {
  padding-top: 0 !important;
}

.widget-contact-us {
  background: #faf8f3;
  padding: 96px 0;
  border-bottom: solid 1px rgba(92, 78, 114, 0.19);
}
@media only screen and (min-width: 1025px) {
  .widget-contact-us__inner {
    display: flex;
    justify-content: space-between;
    gap: 57px;
  }
}
.widget-contact-us__title {
  font: 400 48px/1 var(--font-strong);
  letter-spacing: 2px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1440px) {
  .widget-contact-us__title {
    font-size: 72px;
    letter-spacing: 3px;
  }
}
.widget-contact-us__content {
  font: 400 24px/1.15 var(--font-primal);
  margin-bottom: 40px;
}
@media only screen and (min-width: 1025px) {
  .widget-contact-us__content {
    max-width: 470px;
  }
}
.widget-contact-us__form {
  background: #fff;
  padding: 24px 16px;
  border-radius: 16px;
}
@media only screen and (min-width: 414px) {
  .widget-contact-us__form {
    padding: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .widget-contact-us__form {
    padding: 40px 32px;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-contact-us__form {
    width: 560px;
    min-width: 560px;
  }
}
.widget-contact-us__field {
  padding-bottom: 24px;
}
.widget-contact-us__field--captcha {
  margin-right: -20px;
}
.widget-contact-us label {
  font: 400 16px/24px var(--font-family);
  display: block;
  margin-bottom: 6px;
}
.widget-contact-us input[type=text],
.widget-contact-us input[type=number],
.widget-contact-us input[type=email],
.widget-contact-us select,
.widget-contact-us textarea {
  display: block;
  width: 100%;
  background: #faf8f3;
  border: solid 1px #d5d7da;
  border-radius: 8px;
  padding: 10px 14px;
  height: 44px;
  color: rgba(92, 78, 114, 0.55);
}
.widget-contact-us input[type=text]::placeholder,
.widget-contact-us input[type=number]::placeholder,
.widget-contact-us input[type=email]::placeholder,
.widget-contact-us select::placeholder,
.widget-contact-us textarea::placeholder {
  color: rgba(92, 78, 114, 0.55);
}
.widget-contact-us select {
  background: url("/themes/baldor/images/bite-2026/select.svg") no-repeat right 10px center #faf8f3;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
}
.widget-contact-us textarea {
  height: 130px;
  resize: vertical;
}
.widget-contact-us__error {
  color: red;
}
.widget-contact-us__error:not(:empty) {
  padding-bottom: 20px;
}
.widget-contact-us__success {
  color: green;
}
.widget-contact-us__success:not(:empty) {
  padding-bottom: 20px;
}
.widget-contact-us .errorMessage {
  padding-top: 6px;
  color: red;
}
.widget-contact-us__button-wrapper {
  padding-top: 8px;
}

.widget-sponsor-page {
  border-bottom: solid 1px rgba(92, 78, 114, 0.19);
}
.widget-sponsor-page__top-section {
  padding: 64px 0;
}
@media only screen and (min-width: 769px) {
  .widget-sponsor-page__top-section {
    display: flex;
    gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .widget-sponsor-page__top-section {
    gap: 64px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-sponsor-page__top-section {
    padding: 120px 0;
  }
}
.widget-sponsor-page__top-section-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media only screen and (min-width: 769px) {
  .widget-sponsor-page__top-section-main {
    width: 50%;
    gap: 48px;
    padding-top: 40px;
  }
}
.widget-sponsor-page__top-section-title {
  font: 400 48px/0.9 var(--font-strong);
  letter-spacing: 2px;
}
@media only screen and (min-width: 1440px) {
  .widget-sponsor-page__top-section-title {
    font-size: 64px;
  }
}
.widget-sponsor-page__top-section-intro {
  font: 400 16px/1.2 var(--font-primal);
}
@media only screen and (min-width: 768px) {
  .widget-sponsor-page__top-section-intro {
    font-size: 20px;
  }
}
.widget-sponsor-page__top-section-image-wrapper {
  position: relative;
  border: solid 9px var(--color-blue);
  border-radius: 24px;
  height: 408px;
}
@media only screen and (min-width: 769px) {
  .widget-sponsor-page__top-section-image-wrapper {
    width: 50%;
  }
}
.widget-sponsor-page__top-section-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.widget-sponsor-page__gallery, .widget-sponsor-page__top-sponsors {
  border-top: solid 1px rgba(92, 78, 114, 0.19);
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media only screen and (min-width: 1280px) {
  .widget-sponsor-page__gallery, .widget-sponsor-page__top-sponsors {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-sponsor-page__gallery, .widget-sponsor-page__top-sponsors {
    padding: 120px 0;
  }
}
@media only screen and (min-width: 680px) {
  .widget-sponsor-page__gallery-info {
    text-align: center;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-sponsor-page__gallery-info {
    width: 400px;
    min-width: 400px;
    text-align: left;
  }
}
.widget-sponsor-page__gallery-title {
  font: 400 48px/1 var(--font-strong);
  letter-spacing: 2px;
  margin: 0 0 8px;
}
.widget-sponsor-page__gallery-content {
  font: 400 24px/1.15 var(--font-primal);
}
.widget-sponsor-page__gallery-button {
  margin: 32px 0 0;
}
.widget-sponsor-page__gallery-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.widget-sponsor-page__gallery-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 20px;
  font-size: 18px;
  text-align: center;
}
@media only screen and (min-width: 680px) {
  .widget-sponsor-page__gallery-list-item {
    width: 33.3%;
    font-size: 24px;
  }
}
@media only screen and (min-width: 800px) {
  .widget-sponsor-page__gallery-list-item {
    width: 25%;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-sponsor-page__gallery-list-item {
    width: 33.3%;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-sponsor-page__gallery-list-item {
    width: 25%;
  }
}
.widget-sponsor-page__top-sponsors .widget-sponsor-page__gallery-list-item {
  width: 100%;
}
@media only screen and (min-width: 680px) {
  .widget-sponsor-page__top-sponsors .widget-sponsor-page__gallery-list-item {
    width: 50%;
  }
}
@media only screen and (min-width: 800px) {
  .widget-sponsor-page__top-sponsors .widget-sponsor-page__gallery-list-item {
    width: 33.3%;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-sponsor-page__top-sponsors .widget-sponsor-page__gallery-list-item {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-sponsor-page__top-sponsors .widget-sponsor-page__gallery-list-item {
    width: 33.3%;
  }
}
.widget-sponsor-page__event {
  background: var(--color-blue);
  padding: 80px 16px 16px;
  margin: 0 -16px;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .widget-sponsor-page__event {
    margin: 0;
    border-radius: 24px;
    padding: 80px 24px 48px;
  }
}
@media only screen and (min-width: 1404px) {
  .widget-sponsor-page__event {
    padding: 80px 60px;
  }
}
.widget-sponsor-page__event + .widget-sponsor-page__gallery {
  border: none;
}
.widget-sponsor-page__event .widget-sponsor-page__gallery-title {
  text-align: center !important;
}
.widget-sponsor-page__event .widget-sponsor-page__gallery-info {
  width: 100% !important;
}
.widget-sponsor-page__event-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  margin-top: 48px;
  text-align: left;
}
.widget-sponsor-page__event-list-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  color: var(--color-primary);
  font: 400 14px/1.15 var(--font-primal);
  padding: 24px;
  border-radius: 16px;
}
@media only screen and (min-width: 600px) {
  .widget-sponsor-page__event-list-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .widget-sponsor-page__event-list-item {
    width: calc(33% - 9px);
    font-size: 16px;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-sponsor-page__event-list-item {
    width: calc(25% - 12px);
  }
}
.widget-sponsor-page__event-img-link {
  display: flex;
  align-items: center;
  height: 100px;
  margin-bottom: 16px;
}
.widget-sponsor-page__event-img-link img {
  max-height: 100px;
}
.widget-sponsor-page__event-link {
  font: 400 16px/24px var(--font-alternative);
  color: var(--color-primary);
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  gap: 8px;
}
.widget-sponsor-page__event-link:hover {
  color: var(--color-action);
}
.widget-sponsor-page__event-link-icon {
  width: 24px;
  height: 24px;
}

.widget-text-with-image {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media only screen and (min-width: 1025px) {
  .widget-text-with-image {
    display: flex;
    gap: 64px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-text-with-image {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.widget-text-with-image__main {
  margin-bottom: 60px;
}
@media only screen and (min-width: 1025px) {
  .widget-text-with-image__main {
    width: 50%;
    margin-bottom: 0;
  }
}
.widget-text-with-image__title {
  font: 400 48px/0.9 var(--font-strong);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1440px) {
  .widget-text-with-image__title {
    font-size: 64px;
  }
}
.widget-text-with-image__text {
  font: 400 20px/1.5 var(--font-primal);
}
@media only screen and (min-width: 768px) {
  .widget-text-with-image__text {
    font-size: 20px;
  }
}
.widget-text-with-image__text-grid {
  padding-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.widget-text-with-image__text-grid-item {
  width: 100%;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .widget-text-with-image__text-grid-item {
    width: calc(50% - 20px);
    min-width: calc(50% - 20px);
  }
}
.widget-text-with-image h3 {
  font: 400 32px/0.9 var(--font-strong);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.widget-text-with-image__image-wrapper {
  position: relative;
  border: solid 9px var(--color-blue);
  border-radius: 24px;
  height: 249px;
}
@media only screen and (min-width: 768px) {
  .widget-text-with-image__image-wrapper {
    height: 471px;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-text-with-image__image-wrapper {
    width: 50%;
    height: 595px;
  }
}
.widget-text-with-image__image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.widget-text-with-image__button-wrapper {
  margin-top: 36px;
}

.widget-text-with-buttons {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #80bf7c;
  color: #fff;
}
@media only screen and (min-width: 1440px) {
  .widget-text-with-buttons {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons__inner {
    display: flex;
    gap: 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons__main {
    min-width: 60%;
    width: 60%;
  }
}
.widget-text-with-buttons__title {
  font: 400 48px/0.9 var(--font-strong);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
@media only screen and (min-width: 1025px) {
  .widget-text-with-buttons__title {
    font-size: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .widget-text-with-buttons__title {
    font-size: 72px;
  }
}
@media only screen and (min-width: 1600px) {
  .widget-text-with-buttons__title {
    font-size: 86px;
  }
}
.widget-text-with-buttons__text {
  font: 400 16px/1.2 var(--font-primal);
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .widget-text-with-buttons__text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1025px) {
  .widget-text-with-buttons__text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons__text {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
.widget-text-with-buttons__button-wrapper {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons__button-wrapper {
    padding-top: 0;
  }
}
.widget-text-with-buttons--alternative {
  background: #ff9d81;
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons--alternative .widget-text-with-buttons__inner {
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons--alternative .widget-text-with-buttons__main {
    min-width: 0;
    width: auto;
  }
}
.widget-text-with-buttons--alternative .widget-text-with-buttons__title {
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .widget-text-with-buttons--alternative .widget-text-with-buttons__title {
    text-align: left;
  }
}
.widget-text-with-buttons--alternative .widget-text-with-buttons__button-wrapper {
  justify-content: center;
}

.widget-subscribe {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .widget-subscribe {
    max-width: 352px;
  }
}
.widget-subscribe__label {
  display: block;
  font: 400 18px/1.4 Arial, sans-serif;
  margin-bottom: 32px;
}
.widget-subscribe__input-wrapper {
  position: relative;
}
.widget-subscribe__email-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #989895;
}
.widget-subscribe__input {
  background: #fff;
  border: solid 1px #fff;
  border-radius: 12px;
  width: 100%;
  height: 58px;
  padding: 17px 58px 17px 50px;
  font: 400 16px/24px Arial, sans-serif;
  color: #989895;
}
.widget-subscribe__input::placeholder {
  color: #989895;
}
.widget-subscribe__button {
  background: var(--color-action);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: solid 1px var(--color-action);
  border-radius: 7px;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.widget-subscribe__button:hover {
  background: var(--color-primary);
  color: var(--color-action);
}
.widget-subscribe__button-icon {
  width: 18px;
  height: 18px;
}
.widget-subscribe .errorMessage {
  font-size: 16px;
  padding-top: 8px;
  color: red;
}
.widget-subscribe .successMessage {
  font-size: 16px;
  padding-top: 8px;
  color: forestgreen;
}
