@charset "UTF-8";
body {
  --header-height: 100px;
  padding-top: var(--header-height);
}
body.home {
  padding-top: 0;
}
body.home .hp-intro {
  padding-top: var(--header-height);
}
@media (max-width: 1199px) {
  body {
    --header-height: 76px;
  }
}

.header {
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  position: fixed;
  top: var(--wp-admin--admin-bar--height);
  left: 0;
  right: 0;
  z-index: 1000;
}
@media (max-width: 1199px) {
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header > .d-flex {
    position: relative;
  }
  .header > .d-flex:after {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    bottom: -16px;
    background-color: #fff;
    z-index: -1;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 550px) {
  .header > .d-flex {
    padding-left: 11.5px !important;
    padding-right: 11.5px !important;
  }
}
@media (min-width: 1199.1px) {
  .home .header {
    background-color: rgba(255, 255, 255, 0);
  }
}
.header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .menu {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
}
@media (min-width: 1199.1px) {
  .header .menu {
    gap: 15px;
  }
}
.header .menu a {
  text-decoration: none;
}
@media (min-width: 1199.1px) {
  .header .menu .sub-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateX(42px);
    transition: all 0.4s ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 250px;
    border-radius: 16px;
    overflow: hidden;
  }
  .header .menu .sub-menu li {
    border-bottom: 2px solid var(--wp--preset--color--yellow);
  }
  .header .menu .sub-menu a {
    display: block;
    padding: 16px 40px 12px 20px;
    transition: all 0.5s ease-in-out;
  }
  .header .menu .sub-menu a:hover {
    background-color: var(--wp--preset--color--yellow);
  }
}
.header .menu > li {
  position: relative;
}
.header .menu > li > a {
  display: block;
}
@media (min-width: 1199.1px) {
  .header .menu > li > a {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 36px;
    padding-top: 40px;
  }
}
@media (min-width: 1199.1px) {
  .header .menu > li.menu-item-has-children > a {
    padding-right: 34px;
    position: relative;
  }
  .header .menu > li.menu-item-has-children > a:after {
    content: "\e92b";
    font-size: 24px !important;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(180deg);
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 1199.1px) {
  .header .menu > li.menu-item-has-children:hover > a:after {
    transform: translateY(-50%) rotate(0deg);
  }
  .header .menu > li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }
}
.header__logo img {
  width: 253px;
  height: auto;
}
@media (min-width: 1199.1px) {
  .header__logo img {
    margin-left: 3.5px;
    margin-right: 3.5px;
  }
}
@media (max-width: 1300px) {
  .header__logo img {
    width: 190px;
  }
}
@media (max-width: 550px) {
  .header__logo img {
    width: 140px;
  }
}
.header__cta {
  gap: 12px;
}
@media (max-width: 675px) {
  .header__cta .wp-block-buttons .wp-block-button:last-child:not(:only-child) {
    display: none;
  }
}
@media (max-width: 550px) {
  .header__cta .wp-block-button__link {
    padding: 6px 17px;
  }
}

.menu-line {
  background-color: var(--wp--preset--color--red);
  width: 0;
  position: absolute;
  visibility: hidden;
  margin-left: 10px !important;
  padding: 0 !important;
}
@media (max-width: 1199px) {
  .menu-line {
    display: none;
  }
}

.menu-toggler {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
}
.menu-toggler__line {
  background-color: #000;
  width: 24px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.menu-toggler__line:nth-child(1) {
  top: 8px;
}
.menu-toggler__line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.menu-toggler__line:nth-child(3) {
  bottom: 8px;
}
.menu-open .menu-toggler .menu-toggler__line {
  background-color: var(--wp--preset--color--yellow);
}
.menu-open .menu-toggler .menu-toggler__line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-open .menu-toggler .menu-toggler__line:nth-child(2) {
  display: none;
}
.menu-open .menu-toggler .menu-toggler__line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 1199.1px) {
  .menu-toggler {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - var(--wp-admin--admin-bar--height) - var(--header-height));
    overflow: auto;
    background-color: var(--wp--preset--color--navy);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
    padding-top: var(--header-height);
    pointer-events: none;
  }
  .menu-open .header__menu {
    transform: translateY(0);
    pointer-events: all;
  }
  .header__menu ul {
    flex-direction: column;
  }
  .header__menu > .menu {
    padding: 20px calc(var(--wp--style--root--padding-right) + 5px + 16px) 70px calc(var(--wp--style--root--padding-left) + 5px + 16px);
  }
  .header__menu > .menu a {
    font-weight: 700;
  }
  .header__menu > .menu > li > a {
    color: var(--wp--preset--color--yellow);
    font-size: var(--wp--preset--font-size--h-4);
    border-bottom: 1px solid var(--wp--preset--color--yellow);
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .header__menu > .menu .sub-menu {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header__menu > .menu .sub-menu a {
    color: #fff;
    display: block;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.footer {
  border-radius: 20px 20px 0 0;
  background-color: var(--wp--preset--color--navy);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 43px;
  }
}
@media (max-width: 1199px) {
  .footer > .d-flex {
    flex-wrap: wrap;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__bottom {
  border-top: 1px solid var(--wp--preset--color--sky-blue);
  padding-top: 29px;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .footer__bottom {
    flex-direction: column;
    padding-top: 40px;
    margin-top: 40px;
  }
}
.footer__copy {
  gap: 49px;
}
.footer__copy p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer__copy p {
    font-size: var(--wp--preset--font-size--small);
  }
}
@media (max-width: 991px) {
  .footer__copy {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.footer__menu {
  flex: 0 0 67%;
}
@media (max-width: 1199px) {
  .footer__menu {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    flex-wrap: wrap;
  }
}
.footer__menu > .menu {
  flex: 0 0 75%;
  display: flex;
}
@media (max-width: 767px) {
  .footer__menu > .menu {
    flex-wrap: wrap;
    flex: 0 0 100%;
    gap: 20px 0;
  }
}
.footer__menu > .menu > li {
  flex: 1;
  padding-right: 16px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .footer__menu > .menu > li {
    flex: 0 0 50%;
  }
}
@media (max-width: 360px) {
  .footer__menu > .menu > li {
    font-size: var(--wp--preset--font-size--small);
  }
}
.footer__menu .menu-item-has-children > a, .footer__menu h3 {
  font-size: var(--wp--preset--font-size--medium);
  color: var(--wp--preset--color--yellow);
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.75em;
}
.footer__menu .menu-item-has-children > a {
  margin-bottom: 20px;
}
.footer__menu h3 {
  margin-bottom: 10px;
}
.footer__menu h3 a {
  color: var(--wp--preset--color--yellow);
}
.footer__menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact {
  flex: 0 0 25%;
  padding-right: 16px;
}
@media (min-width: 767.1px) {
  .footer__contact {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .footer__contact {
    flex: 0 0 50%;
    margin-left: 50%;
  }
}
@media (max-width: 360px) {
  .footer__contact {
    font-size: var(--wp--preset--font-size--small);
  }
}
@media (min-width: 1199.1px) {
  .footer__logo {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media (max-width: 1199px) {
  .footer__logo {
    flex: 0 0 100%;
    order: -1;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
  }
}
.footer__logo div:first-child img {
  max-width: 200px;
}
@media (max-width: 991px) {
  .footer__logo div:first-child img {
    max-width: 126px;
  }
}
@media (max-width: 1199px) {
  .footer__logo div:last-child {
    order: -1;
    padding-left: 17px;
  }
}
@media (max-width: 360px) {
  .footer__logo div:last-child {
    padding-left: 0;
  }
}
.footer__logo div:last-child img {
  max-width: 302px;
}
@media (max-width: 991px) {
  .footer__logo div:last-child img {
    max-width: 150px;
  }
}
.footer__logo img {
  height: auto;
  width: 100%;
}
.footer__social {
  gap: 20px;
}
@media (max-width: 1199px) {
  .footer__social {
    order: -1;
    padding-bottom: 30px;
  }
  .footer__social i {
    font-size: 40px;
  }
}
@media (max-width: 360px) {
  .footer__social i {
    font-size: 32px;
  }
}
.footer__social a {
  display: block;
  transition: all 0.3s ease-in-out;
}
.footer__social a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--yellow);
}

.instagram-wall {
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
}
.instagram-wall h2 {
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .instagram-wall h2 {
    text-align: center;
  }
}
.instagram-wall__feed {
  --gap: 8px;
  margin-left: calc(var(--gap) * -1) !important;
  margin-right: calc(var(--gap) * -1) !important;
}
.instagram-wall__feed .juicer-feed {
  overflow: visible;
}
.instagram-wall__feed .feed-item {
  background-color: #fff !important;
  padding-left: var(--gap) !important;
  padding-right: var(--gap) !important;
  box-sizing: border-box;
}
.instagram-wall__feed .feed-item img {
  border-radius: 8px;
}
.instagram-wall__feed .slick-arrow {
  background-color: var(--wp--preset--color--yellow) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  height: 40px !important;
  width: 40px !important;
}
.instagram-wall__feed .slick-arrow:before {
  content: "\e92b" !important;
  font-size: 30px !important;
  color: #212121 !important;
  display: block !important;
}
.instagram-wall__feed .slick-prev {
  left: var(--gap) !important;
}
@media (min-width: 500px) {
  .instagram-wall__feed .slick-prev {
    transform: translateX(-50%) !important;
  }
}
.instagram-wall__feed .slick-prev:before {
  transform: rotate(-90deg) !important;
}
.instagram-wall__feed .slick-next {
  right: var(--gap) !important;
}
@media (min-width: 500px) {
  .instagram-wall__feed .slick-next {
    transform: translateX(50%) !important;
  }
}
.instagram-wall__feed .slick-next:before {
  transform: rotate(90deg) !important;
}
.instagram-wall__feed .j-text {
  top: 0 !important;
  left: var(--gap) !important;
  right: var(--gap) !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 8px;
}
.instagram-wall__cta {
  font-weight: 700;
  font-family: var(--wp--preset--font-family--heading);
}
@media (max-width: 991px) {
  .instagram-wall__cta {
    justify-content: center !important;
  }
}
.instagram-wall__cta a {
  text-decoration: none;
  color: #212121;
}
.instagram-wall__cta a i {
  font-size: 18px;
  margin-left: 9px;
}

.mailchimp {
  overflow: hidden;
  background-color: #86AAEA;
  margin-bottom: -20px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.mailchimp > div {
  max-width: calc(880px + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right));
  gap: 20px;
}
@media (max-width: 991px) {
  .mailchimp > div {
    flex-direction: column;
  }
}
.mailchimp h3 {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .mailchimp h3 {
    text-align: center;
  }
}
.mailchimp__embed {
  flex: 1;
}
.mailchimp__embed .mc-field-group:nth-of-type(3), .mailchimp__embed .mc-field-group:nth-of-type(4) {
  margin-top: 10px;
  margin-bottom: 15px;
  flex-basis: 100% !important;
  max-width: 100% !important;
  color: #161616;
}
.mailchimp__embed .mc-field-group:nth-of-type(3) input[type=checkbox], .mailchimp__embed .mc-field-group:nth-of-type(4) input[type=checkbox] {
  display: none;
}
.mailchimp__embed .mc-field-group:nth-of-type(3) input[type=checkbox]:checked + label:before, .mailchimp__embed .mc-field-group:nth-of-type(4) input[type=checkbox]:checked + label:before {
  background-color: #393939;
}
.mailchimp__embed .mc-field-group:nth-of-type(3) input[type=checkbox]:checked + label:after, .mailchimp__embed .mc-field-group:nth-of-type(4) input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.mailchimp__embed .mc-field-group:nth-of-type(3) label, .mailchimp__embed .mc-field-group:nth-of-type(4) label {
  display: block;
  padding-left: 32px;
  position: relative;
}
.mailchimp__embed .mc-field-group:nth-of-type(3) label:before, .mailchimp__embed .mc-field-group:nth-of-type(4) label:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #393939;
  border-radius: 2px;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.mailchimp__embed .mc-field-group:nth-of-type(3) label:after, .mailchimp__embed .mc-field-group:nth-of-type(4) label:after {
  content: "✔";
  color: #fff;
  position: absolute;
  top: 0px;
  left: 6px;
  font-size: 16px !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.mailchimp__embed #mc_embed_signup_scroll {
  display: flex;
  flex-wrap: wrap;
  --gap: 6px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
  position: relative;
}
@media (min-width: 768px) {
  .mailchimp__embed #mc_embed_signup_scroll {
    padding-right: 105px;
  }
}
.mailchimp__embed #mc_embed_signup_scroll > div {
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767px) {
  .mailchimp__embed #mc_embed_signup_scroll > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.mailchimp__embed #mc_embed_signup_scroll .button {
  color: #fff;
  border: 0;
  font-weight: 500;
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.75;
  padding: 0.6em 1.3em 0.4em;
  background-color: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mailchimp__embed #mc_embed_signup_scroll .optionalParent {
    position: absolute;
    right: 0;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .mailchimp__embed #mc_embed_signup_scroll .optionalParent {
    text-align: center;
  }
}
.mailchimp__embed #mc_embed_signup_scroll .optionalParent .clear {
  background-color: #174187;
  font-size: var(--wp--preset--font-size--medium);
  border-radius: 1.5em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease-in-out, padding 0.3s ease-in-out, background 0s ease-in-out;
  overflow: clip;
  overflow-clip-margin: 1px;
  display: inline-block;
}
.mailchimp__embed #mc_embed_signup_scroll .optionalParent .clear:after {
  z-index: -1;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: var(--wp--preset--color--yellow);
  transform: translateY(102%);
  transition: all 0.3s ease-in-out;
}
.mailchimp__embed #mc_embed_signup_scroll .optionalParent .clear:hover {
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.25);
  background-color: var(--wp--preset--color--yellow);
  transition: color 0.3s ease-in-out, padding 0.3s ease-in-out, background 0s ease-in-out 0.2s;
}
.mailchimp__embed #mc_embed_signup_scroll .optionalParent .clear:hover:after {
  transform: translateY(0);
}
.mailchimp__embed #mc_embed_signup_scroll .optionalParent .clear:hover .button {
  color: #000;
}
.mailchimp__embed #mc_embed_signup_scroll .mc-address-group {
  display: none;
  opacity: 0;
}
.mailchimp__embed #mc_embed_signup_scroll input[type=text],
.mailchimp__embed #mc_embed_signup_scroll input[type=email],
.mailchimp__embed #mc_embed_signup_scroll input[type=zip] {
  outline: 0 !important;
  border-radius: 12px;
  padding: 15px 12px;
  border: 1px solid #000000;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.7142857143em;
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin-bottom: 8px;
}
.mailchimp__embed #mc_embed_signup_scroll input[type=text]::-moz-placeholder, .mailchimp__embed #mc_embed_signup_scroll input[type=email]::-moz-placeholder, .mailchimp__embed #mc_embed_signup_scroll input[type=zip]::-moz-placeholder {
  color: #C6C6C6;
}
.mailchimp__embed #mc_embed_signup_scroll input[type=text]::placeholder,
.mailchimp__embed #mc_embed_signup_scroll input[type=email]::placeholder,
.mailchimp__embed #mc_embed_signup_scroll input[type=zip]::placeholder {
  color: #C6C6C6;
}
.mailchimp__embed #mc_embed_signup_scroll .mc-address-group {
  flex-wrap: wrap;
  flex: 0 0 100%;
  max-width: 100%;
}
.mailchimp__embed #mc_embed_signup_scroll .mc-address-group > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.mailchimp__embed #mc_embed_signup_scroll .mc-address-group .mc-address-fields-group {
  display: flex;
  flex: 0 0 calc(100% + var(--gap) * 2);
  max-width: calc(100% + var(--gap) * 2);
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
}
.mailchimp__embed #mc_embed_signup_scroll .mc-address-group .mc-address-fields-group > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
}
.mailchimp__embed.focus #mc_embed_signup_scroll .mc-address-group {
  display: flex;
}
.mailchimp__embed.focus .optionalParent {
  bottom: 13px;
  top: auto !important;
}

.hp-intro {
  background: #e7b449;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.hp-intro h1 {
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .hp-intro h1 br {
    display: none;
  }
}
@media (max-width: 450px) {
  .hp-intro h1 {
    margin-bottom: 2px;
  }
}
.hp-intro__content {
  padding-top: 90px;
  padding-bottom: 217px;
}
@media (min-width: 1200px) {
  .hp-intro__content {
    padding-left: 117px;
  }
}
@media (min-width: 992px) {
  .hp-intro__content {
    max-width: 520px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hp-intro__content {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .hp-intro__content {
    padding-top: 250px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .hp-intro__content {
    padding-top: 300px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .hp-intro__content {
    padding-top: 250px;
    padding-bottom: 80px;
  }
}
.hp-intro__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  padding: 0 !important;
  text-align: right;
  aspect-ratio: 1455/1275;
  width: auto !important;
}
.hp-intro__image img {
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1600px) {
  .hp-intro__image {
    max-width: 50vw !important;
  }
}
@media (max-width: 991px) {
  .hp-intro__image {
    top: 50px;
    bottom: auto;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .hp-intro__image {
    max-width: 100% !important;
    height: 400px;
  }
}
@media (max-width: 450px) {
  .hp-intro__image {
    top: 15px;
  }
}
.hp-intro__logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 !important;
  max-width: 1512px !important;
  transform: translateY(27%);
}
.hp-intro__logo img {
  width: 100%;
}

.hp-text {
  color: #212121;
  padding-top: 140px;
  padding-bottom: 202px;
  overflow: hidden;
}
.hp-text > div {
  max-width: calc(922px + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right)) !important;
}
@media (max-width: 767px) {
  .hp-text {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.hp-text__main {
  color: #4F4F4F;
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .hp-text__main {
    margin-bottom: 10px;
  }
}
.hp-text__main p {
  margin-bottom: 0;
}
.hp-text__secondary {
  max-width: 453px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .hp-text__secondary {
    max-width: 100%;
  }
}

.hp-products {
  margin-top: 50px;
  margin-bottom: 76px;
}
.hp-products h2 {
  font-size: var(--wp--preset--font-size--h-4);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .hp-products h2 {
    text-align: center;
  }
}
.hp-products-inner {
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .hp-products-inner {
    flex-direction: column;
  }
}
.hp-products__single {
  text-decoration: none;
  border-radius: 24px;
  --padding-x: 40px;
  --padding-y: 40px;
  padding: var(--padding-y) 0 calc(var(--padding-y) + 44px) var(--padding-x);
  flex: 1;
  overflow: hidden;
  position: relative;
}
.hp-products__single.product-light h3 {
  color: #fff;
}
@media (max-width: 1199px) {
  .hp-products__single {
    --padding-x: 25px;
    --padding-y: 25px;
  }
}
@media (max-width: 991px) {
  .hp-products__single {
    --padding-x: 20px;
    --padding-y: 32px;
  }
}
@media (max-width: 450px) {
  .hp-products__single {
    aspect-ratio: 342/376;
    box-sizing: border-box;
  }
}
.hp-products__single h3 {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1310px) {
  .hp-products__single h3 {
    font-size: var(--wp--preset--font-size--h-4);
  }
}
.hp-products__single-image {
  margin-right: var(--padding-x);
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 451px) {
  .hp-products__single-image {
    height: 285px;
  }
}
.hp-products__single-image img {
  position: relative;
}
@media (min-width: 992px) {
  .hp-products__single-image img {
    transform: translateX(calc(var(--padding-x) * -1)) scale(1.6);
    transform-origin: left center;
  }
}
.hp-products__single-image:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/hp-products-hover.png") center no-repeat;
  background-size: contain;
  width: 100%;
  height: 150%;
}
@media (min-width: 992px) {
  .hp-products__single-image:before {
    opacity: 0;
    transition: all 0.3s linear;
  }
}
@media (max-width: 991px) {
  .hp-products__single-image:before {
    height: 120%;
  }
}
@media (min-width: 992px) {
  .hp-products__single:hover .hp-products__single-image:before {
    opacity: 1;
  }
}
.hp-products .wp-block-button {
  right: var(--padding-x);
  transform: translateX(0);
  position: absolute;
  bottom: var(--padding-y);
}
.hp-products .wp-block-button__link {
  white-space: nowrap;
  width: 130px;
  transition: all 0.4s linear;
}

.hp-products + .image-feature:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
}

.image-feature {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -20px;
}
.image-feature.first {
  background-color: var(--wp--preset--color--sky-blue);
}
@media (max-width: 767px) {
  .image-feature.first .image-feature__image img {
    transform: scale(1);
  }
}
@media (max-width: 450px) {
  .image-feature.first .image-feature__image img {
    -o-object-position: 65% center;
       object-position: 65% center;
  }
}
.image-feature.last {
  background-color: #eea5ac;
  border-radius: 20px;
}
@media (max-width: 450px) {
  .image-feature.last .image-feature__image img {
    transform: scale(1);
    -o-object-position: 22% center;
       object-position: 22% center;
  }
}
.image-feature__image {
  padding: 0 !important;
  max-width: 100% !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .image-feature__image {
    bottom: 250px;
  }
}
@media (max-width: 767px) {
  .image-feature__image {
    bottom: 300px;
  }
}
@media (max-width: 450px) {
  .image-feature__image {
    bottom: auto;
    aspect-ratio: 375/440;
  }
}
.image-feature__image img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .image-feature__image img {
    transform: scale(1.5);
    transform-origin: left center;
  }
}
.image-feature__content {
  margin-top: 227px;
  margin-bottom: 227px;
  max-width: 400px;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 991px) {
  .image-feature__content {
    margin-top: 50vw;
    margin-bottom: 0;
    margin-left: calc(var(--wp--style--root--padding-left) * -1);
    margin-right: calc(var(--wp--style--root--padding-right) * -1);
    max-width: calc(100% + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right));
    border-radius: 20px 20px 0 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .image-feature__content {
    margin-top: 400px;
  }
}
.image-feature__content-text {
  color: #212121;
  margin-bottom: 20px;
}
.image-feature__content-text p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .image-feature__content {
    width: 100%;
  }
}

.page-intro {
  position: relative;
  background-color: #E7B449;
  overflow: hidden;
}
.page-template-tips-and-tricks .page-intro {
  background-color: #536bab;
}
.blog .page-intro, .page-template-recipes .page-intro {
  background-color: #f0aab2;
}
.page-template-contact .page-intro {
  background-color: #c0c1c3;
}
.page-template-sustainability .page-intro {
  background-color: #d4d5d0;
}
.page-template-careers .page-intro {
  background-color: #7ec7f2;
}
.page-intro__content {
  height: 720px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.page-intro__content-inner {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px 40px;
}
@media (max-width: 600px) {
  .page-intro__content-inner {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .page-intro__content-inner {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 575px) {
  .page-intro__content-inner {
    padding: 30px 20px 20px;
  }
}
@media (max-width: 991px) {
  .page-intro__content {
    aspect-ratio: 375/400;
    padding-top: 0;
    padding-bottom: 40px;
    align-items: flex-end;
  }
}
@media (max-width: 575px) {
  .page-intro__content {
    aspect-ratio: 375/560;
  }
}
.page-intro__image {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-intro__image img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media (max-width: 1199px) {
  .page-intro__image img {
    -o-object-position: center center;
       object-position: center center;
  }
}
@media (max-width: 991px) {
  .page-intro__image {
    display: none;
  }
}
.page-intro__image-mobile {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-intro__image-mobile img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 992px) {
  .page-intro__image-mobile {
    display: none;
  }
}
.page-intro h1 {
  letter-spacing: -0.025em;
  font-size: clamp(40px, 2.5rem + (1vw - 3.2px) * 1.563, 68px);
}
.page-intro h1.m-0 {
  margin-bottom: 0;
}

.how-videos {
  padding-top: 120px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .how-videos {
    padding-top: 60px;
  }
}

.how-video {
  max-width: 1158px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  text-align: center;
}
.how-video iframe {
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .how-video {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .how-video {
    margin-bottom: 40px;
  }
}
.how-video__content {
  margin-top: 40px;
}
.how-video__thumb {
  position: relative;
}
.how-video__thumb img {
  border-radius: 24px;
  display: block;
  aspect-ratio: 1158/651;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.how-video__thumb i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 991px) {
  .how-video__thumb i {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .how-video__thumb i {
    font-size: 40px;
  }
}
.how-video__thumb-image {
  position: relative;
  cursor: pointer;
}
.how-video__thumb-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 2;
}

.page-template-how-to-use .gallery {
  position: relative;
  z-index: 10;
}
.page-template-how-to-use .image-feature {
  margin-top: -20px;
  position: relative;
  background-color: var(--wp--preset--color--yellow);
}
.page-template-how-to-use .image-feature:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 992px) {
  .page-template-how-to-use .image-feature__content {
    margin-top: 183px;
    margin-bottom: 183px;
  }
}

.gallery {
  overflow: hidden;
  padding-bottom: 160px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 60px;
  }
}
.gallery h2 {
  margin-bottom: 28px;
}
.gallery .swiper {
  overflow: visible;
}
@media (min-width: 768px) {
  .gallery__single.swiper-slide {
    width: 570px;
  }
}
.gallery__single.swiper-slide img {
  max-width: 100%;
  display: block;
  aspect-ratio: 570/360;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  margin-bottom: 26px;
}
.gallery__content {
  padding-left: 12px;
  padding-right: 12px;
}
.gallery__content h3 {
  margin-bottom: 10px;
}
.gallery-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery .swiper-buttons {
  display: flex;
  gap: 16px;
}
.gallery .swiper-button-next, .gallery .swiper-button-prev {
  color: #393939;
  position: static;
}
.gallery .swiper-button-next:after, .gallery .swiper-button-prev:after {
  display: none;
}
.gallery .swiper-button-next {
  transform: rotate(90deg);
}
.gallery .swiper-button-prev {
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .gallery .swiper-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}

.testimonials {
  padding-top: 120px;
  padding-bottom: 140px;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .testimonials {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.testimonials:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonials__list {
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  border-radius: 24px;
  padding: 48px 60px;
}
@media (max-width: 767px) {
  .testimonial {
    padding: 20px;
  }
}
.testimonial__content {
  position: relative;
}
@media (min-width: 768px) {
  .testimonial__content {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial__content {
    padding-top: 38px;
  }
}
.testimonial__content:before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
  font-family: var(--wp--preset--font-family--heading);
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
}
@media (max-width: 767px) {
  .testimonial__content:before {
    font-size: 40px;
    top: 6px;
  }
}
.testimonial__footer {
  font-weight: bold;
  align-items: center;
  margin-top: 26px;
}
.testimonial__footer-name {
  font-family: var(--wp--preset--font-family--heading);
}
@media (max-width: 767px) {
  .testimonial__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.page-template-testimonials .hp-products {
  padding-top: 140px;
}
@media (max-width: 767px) {
  .page-template-testimonials .hp-products {
    padding-top: 60px;
  }
}

.faq {
  margin-top: 60px;
  margin-bottom: 100px;
  overflow: hidden;
}
.faq__outer {
  flex-direction: column;
}
.faq__categories {
  order: -1;
}
.faq__single {
  border: 1px solid #161616;
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 20px;
}
.faq__single.open .icon-plus {
  opacity: 0;
}
.faq__question {
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}
.faq__question i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.faq__answer {
  overflow: hidden;
}
.faq__answer > div {
  padding-top: 20px;
}

.content {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .content {
    padding-top: 60px;
  }
}
.content__single {
  gap: 110px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .content__single h2 {
    font-size: 20px !important;
  }
}
@media (max-width: 991px) {
  .content__single {
    flex-direction: column;
    gap: 16px;
  }
  .content__single .content__single-image {
    order: -1;
  }
}
.content__single > div {
  flex: 1;
}
@media (min-width: 992px) {
  .content__single > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.content__single img {
  border-radius: 24px;
  display: block;
  aspect-ratio: 600/440;
  -o-object-fit: cover;
     object-fit: cover;
}
.content__single-text {
  color: #212121;
}
@media (min-width: 992px) {
  .content__single:nth-child(even) .content__single-image {
    order: -1;
  }
}
.content .wp-block-button {
  margin-top: 20px;
}
.content + .product-features {
  padding-top: 0;
}

.content_grid {
  border-radius: 20px;
  margin-bottom: -20px;
  padding-top: 100px;
  padding-bottom: 32px;
}
@media (max-width: 991px) {
  .content_grid {
    padding-top: 40px;
  }
}
.content_grid h2 {
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.content_grid__outer {
  --gap: 8px;
  margin-left: calc(var(--gap) * -1) !important;
  margin-right: calc(var(--gap) * -1) !important;
  flex-wrap: wrap;
}
.content_grid .content_grid__single {
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 68px;
}
@media (max-width: 991px) {
  .content_grid .content_grid__single {
    margin-bottom: 24px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.content_grid .content_grid__single img {
  border-radius: 24px;
  aspect-ratio: 688/360;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_grid .content_grid__single-image {
  margin-bottom: 26px;
}
@media (max-width: 991px) {
  .content_grid .content_grid__single-image {
    margin-bottom: 16px;
  }
}
.content_grid .content_grid__single h3 {
  margin-bottom: 2px;
}
@media (min-width: 992px) {
  .content_grid .content_grid__single-text {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.page-template-tips-and-tricks .image-feature {
  background-color: var(--wp--preset--color--yellow);
}
@media (max-width: 991px) {
  .page-template-tips-and-tricks .image-feature__content {
    width: 100%;
  }
}

.page-template-story .page-intro {
  background-color: #eda6ac;
}
.page-template-story .hp-text {
  background-color: #fff;
  border-radius: 20px;
  margin-top: -20px;
  margin-bottom: -20px;
  position: relative;
}
@media (max-width: 991px) {
  .page-template-story .content__single {
    gap: 28px;
  }
  .page-template-story .content__single h2 {
    font-size: 36px !important;
  }
}
.page-template-story .content__single img {
  aspect-ratio: 600/648;
}
@media (max-width: 991px) {
  .page-template-story .content__single img {
    aspect-ratio: 343/405;
  }
}

.history {
  padding-top: 100px;
  padding-bottom: 85px;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
}
@media (max-width: 991px) {
  .history {
    padding-top: 60px;
    padding-bottom: 40px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
}
.history .swiper-wrapper {
  padding-bottom: 64px;
}
@media (max-width: 991px) {
  .history .swiper-wrapper {
    padding-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .history h2 {
    margin-bottom: 0;
  }
}
.history__text {
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  color: #212121;
}
@media (min-width: 992px) {
  .history__text {
    max-width: 480px;
  }
}
@media (max-width: 991px) {
  .history__text {
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 767px) {
  .history__text {
    padding: 20px;
  }
}
.history__image {
  flex: 1;
  margin-left: -40px;
}
.history__image img {
  border-radius: 24px;
  aspect-ratio: 960/720;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .history__image img {
    border-radius: 0 0 20px 20px;
    aspect-ratio: 343/300;
  }
}
@media (max-width: 991px) {
  .history__content {
    flex-direction: column;
  }
  .history__content .history__image {
    margin-left: 0;
    margin-bottom: 16px;
  }
  .history .swiper-pagination {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .news {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .news h2 {
    padding-left: var(--wp--style--root--padding-left);
  }
  .news .swiper {
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
  }
}
.news h2 {
  margin-bottom: 22px;
}
.news .swiper-slide {
  height: auto;
}
.news__single {
  flex-direction: column;
  height: 100%;
}
.news__single img {
  border-radius: 24px;
  aspect-ratio: 453/284;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news__single-image {
  margin-bottom: 26px;
}
.news__single-text {
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news__single .wp-block-button {
  padding-top: 12px;
  margin-top: auto;
}

.team {
  margin-top: 140px;
  padding-bottom: 160px;
  border-radius: 0 0 20px 20px;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .team {
    background-color: var(--wp--preset--color--sky-blue) !important;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.team h2 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .team h2 {
    margin-bottom: 10px;
  }
}
.team__outer {
  flex-wrap: wrap;
  --gap: 8px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
}
@media (max-width: 767px) {
  .team__outer {
    --gap: 0;
  }
}
.team__single {
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .team__single {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .team__single {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.team__single img {
  display: block;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.team__single-inner {
  border-radius: 24px;
  padding: 40px 28px;
}
@media (max-width: 767px) {
  .team__single-inner {
    padding: 16px;
  }
}
.team__single-text {
  margin-top: 20px;
}
.team__single-text h3 {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .team__single-image {
    max-width: 280px;
    margin: 0 auto;
  }
}

.news-intro {
  padding-top: 140px;
  color: #212121;
}
@media (max-width: 767px) {
  .news-intro {
    padding-top: 26px;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
  }
  .single-recipe .news-intro {
    background-color: var(--wp--preset--color--yellow);
  }
}
.news-intro__text {
  max-width: 1158px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .news-intro__text {
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
  }
}
@media (max-width: 767px) {
  .news-intro__text {
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  .news-intro__text h1 {
    order: -1;
  }
}
.news-intro__inner {
  padding-bottom: 60px;
  border-radius: 0 0 20px 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .news-intro__inner {
    background-color: transparent !important;
    padding-bottom: 40px;
  }
  .wrapper .outer-container > .news-intro__inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.news-date {
  gap: 8px;
  margin-bottom: 30px;
}
.news-date i {
  font-size: 18px;
}
@media (max-width: 767px) {
  .news-date {
    color: #212121 !important;
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .news-image {
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .news-image {
    order: -1;
  }
  .wrapper .outer-container > .news-image {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.news-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1512/600;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .news-image img {
    border-radius: 20px 20px 0 0;
    aspect-ratio: 343/302;
  }
}
.news-content {
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-content {
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .news-content {
    padding-top: 60px;
  }
  .news-content + .instagram-wall {
    margin-top: 20px;
  }
}
.news-content > div {
  gap: 16px;
}
@media (max-width: 991px) {
  .news-content > div {
    flex-direction: column;
  }
}
.news-content__text {
  color: #212121;
  box-sizing: border-box;
  flex: 1;
}
@media (min-width: 992px) {
  .news-content__text {
    border-right: 1px solid #E6E6E6;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .news-content__text {
    padding-bottom: 60px;
  }
}
.news-content__text img {
  border-radius: 30px;
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .news-content__text img {
    aspect-ratio: 343/244;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .news-content__text {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .news-content__side {
    flex: 0 0 33%;
    max-width: 33%;
    box-sizing: border-box;
  }
}
@media (min-width: 1200px) {
  .news-content__side {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-content__side__related {
  margin-bottom: 40px;
}
.news-content__side__related ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.news-content__side h3 {
  margin-bottom: 15px;
}
.news-content__side__categories {
  margin-bottom: 40px;
}
.news-content__side__categories ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.news-content__side__categories ul li a {
  display: block;
  padding: 8px 31px;
  background-color: var(--wp--preset--color--sky-blue);
  border-radius: 24px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.news-content__side__categories ul li a:hover {
  background-color: var(--wp--preset--color--yellow);
}
@media (max-width: 767px) {
  .news-content__side__categories ul li a {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.news-item {
  margin-bottom: 20px;
}
.news-item > a {
  gap: 18px;
  text-decoration: none;
}
.news-item img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.news-item__image {
  flex: 0 0 100px;
  max-width: 100px;
}
@media (max-width: 767px) {
  .news-item__image {
    display: none;
  }
}
.news-item__text {
  flex: 1;
}
.news-item__text p {
  margin-bottom: 0;
  font-weight: bold;
}
.news-item-date {
  font-size: 18px;
  gap: 8px;
  margin-bottom: 6px;
}
.news-item-date i {
  font-size: 18px;
}
.news-categories {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .news-categories {
    margin-top: 60px;
  }
}
.news-list {
  flex-wrap: wrap;
  --gap: 7px;
  margin-left: calc(-1 * var(--gap));
  margin-right: calc(-1 * var(--gap));
}
.news-single {
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .news-single {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.news-single__thumb {
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .news-single__thumb {
    margin-bottom: 16px;
  }
}
.news-single__thumb img {
  border-radius: 24px;
  display: block;
  aspect-ratio: 689/360;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .news-single__thumb img {
    aspect-ratio: 343/300;
  }
}
.news-single__date {
  gap: 8px;
}
.news-single__date i {
  font-size: 18px;
}
.news-single h3 {
  margin-bottom: 0;
  padding-top: 6px;
}
.news-single__top {
  margin-bottom: 13px;
  gap: 12px;
}
@media (max-width: 767px) {
  .news-single__top {
    flex-direction: column;
    gap: 6px;
  }
}
@media (min-width: 768px) {
  .news-single__content {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.news-single__excerpt {
  margin-bottom: 12px;
}

.filters {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .filters {
    margin-bottom: 40px;
  }
}
.filters > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.filters > ul > li {
  background-color: var(--wp--preset--color--sky-blue);
  border-radius: 24px;
  padding: 8px 31px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.filters > ul > li.active, .filters > ul > li:hover {
  background-color: var(--wp--preset--color--yellow);
}
@media (max-width: 767px) {
  .filters > ul > li {
    padding: 8px 16px;
  }
}

.pagination {
  flex: 0 0 100%;
}
.pagination > div {
  gap: 5px;
}
.pagination a {
  text-decoration: none;
  color: #212121;
}
.pagination i {
  color: #000;
  font-size: 16px;
  padding: 8px;
  display: block;
}
.pagination .first {
  display: none;
}
.pagination .prev {
  transform: rotate(-90deg);
  display: none;
}
.pagination .next {
  transform: rotate(90deg);
}
.pagination .last {
  transform: rotate(180deg);
}
.pagination .page-numbers {
  width: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
}
.pagination .page-numbers:not(.first):not(.last):not(.prev):not(.next):not(.current) {
  background-color: var(--wp--preset--color--sky-blue);
}
.pagination .page-numbers.current {
  background-color: var(--wp--preset--color--yellow);
}

#top {
  position: relative;
  top: calc((var(--header-height) + var(--wp-admin--admin-bar--height) - 20px) * -1);
}

.recipe-details__inner, .recipe-ingredients__inner, .recipe-preparations__inner {
  max-width: calc(1158px + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right)) !important;
}
.recipe-details {
  margin-top: 100px;
  margin-bottom: 80px;
  font-weight: bold;
  font-size: var(--wp--preset--font-size--h-3);
  color: #333333;
}
@media (max-width: 767px) {
  .recipe-details {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.recipe-details__item {
  padding-left: 40px;
  padding-right: 40px;
  border-right: 1px solid #000000;
}
@media (max-width: 767px) {
  .recipe-details__item {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 20px;
    margin-bottom: 16px;
  }
}
.recipe-details__item:first-child {
  padding-left: 0;
}
@media (max-width: 767px) {
  .recipe-details__item:nth-child(3) {
    padding-left: 0;
  }
}
.recipe-details__item:last-child {
  padding-right: 0;
  border-right: 0;
}
.recipe-details__item__title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--h-6);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .recipe-details__inner {
    flex-wrap: wrap;
  }
}
.recipe-ingredients h2, .recipe-preparations h2 {
  margin-bottom: 22px;
}
.recipe-ingredients__list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.recipe-ingredients__list__item {
  color: #212121;
  padding-left: 46px;
  position: relative;
}
@media (max-width: 767px) {
  .recipe-ingredients__list__item {
    padding-left: 28px;
  }
}
.recipe-ingredients__list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid #212121;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .recipe-ingredients__list__item:before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
}
.recipe-ingredients__list__item:not(:last-child) {
  margin-bottom: 20px;
}
.recipe-preparations {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .recipe-preparations {
    margin-top: 60px;
  }
}
.recipe-preparations__list {
  --gap: 8px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
  flex-wrap: wrap;
}
.recipe-preparations__single {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: bold;
  margin-bottom: 16px;
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .recipe-preparations__single {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.recipe-preparations__single > div {
  background-color: var(--wp--preset--color--sky-blue);
  border-radius: 24px;
  padding: 46px 20px;
  box-sizing: border-box;
  height: 100%;
}
@media (max-width: 991px) {
  .recipe-preparations__single > div {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .recipe-preparations__single > div {
    flex-wrap: wrap;
    padding: 25px 20px;
    gap: 16px;
  }
}
.recipe-preparations__single__image {
  flex: 0 0 38%;
  max-width: 38%;
}
@media (max-width: 767px) {
  .recipe-preparations__single__image {
    flex: 0 0 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6px;
  }
}
.recipe-preparations__single__image img {
  border-radius: 24px;
  aspect-ratio: 200/147;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.recipe-preparations__single__text {
  flex: 1;
  gap: 12px;
}
.recipe-preparations__single__number {
  color: #fff;
  height: 30px;
  flex: 0 0 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.recipe-preparations__single__number:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: -3px;
  width: 30px;
  height: 30px;
  background-color: #212121;
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 991px) {
  .recipe-preparations__single__number:before {
    margin-top: -4px;
  }
}
@media (max-width: 767px) {
  .recipe-preparations__single__number:before {
    margin-top: -5px;
  }
}

.single-product {
  --introHeight: 840px;
}
@media (max-width: 1199px) {
  .single-product {
    --introHeight: 650px;
  }
}
@media (max-width: 991px) {
  .single-product {
    --introHeight: 718px;
  }
}
.single-product .hp-products {
  margin-top: 140px;
}
@media (max-width: 767px) {
  .single-product .hp-products {
    margin-top: 60px;
  }
}
.single-product .image-feature {
  background-color: #EFA8AF;
}

.product-intro {
  position: relative;
  height: var(--introHeight);
  overflow: hidden;
}
@media (min-width: 992px) {
  .product-intro .swiper-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .product-intro {
    height: auto;
    padding-top: 26px;
    padding-bottom: 60px;
  }
  .wrapper .product-intro.alignfull {
    padding-left: var(--wp--style--root--padding-left) !important;
    padding-right: var(--wp--style--root--padding-right) !important;
  }
  .product-intro .swiper-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 20px 20px 0 0;
    --swiper-pagination-color: #fff;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .product-intro .swiper-mobile img {
    aspect-ratio: 343/302;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    width: 100%;
  }
}
.product-intro__bg {
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: 0;
  width: 100%;
  height: calc(var(--introHeight) + var(--header-height) * 2 + var(--wp-admin--admin-bar--height));
  max-width: 100% !important;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .product-intro__bg {
    display: none;
  }
}
.product-intro__inner {
  gap: 144px;
}
@media (max-width: 1400px) {
  .product-intro__inner {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .product-intro__inner {
    flex-direction: column;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.product-intro__text {
  border-radius: 20px;
  padding: 40px;
  margin-top: 184px;
}
@media (max-width: 1199px) {
  .product-intro__text {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .product-intro__text {
    margin-top: 0;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 767px) {
  .product-intro__text {
    padding: 20px;
  }
}
.product-intro .product-stars {
  margin-top: 14px;
  margin-bottom: 20px;
  gap: 5px;
}
.product-intro .product-stars i {
  font-size: 16px;
}
.product-intro .product-stars a {
  padding-left: 15px;
}
.product-intro .wp-block-buttons {
  display: flex;
  gap: 12px;
}
.product-excerpt {
  margin-bottom: 20px;
}
.product-gallery {
  margin-top: 80px;
  flex-wrap: wrap;
  --gap: 8px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
}
@media (min-width: 992px) {
  .product-gallery > div:not(.swiper) {
    padding-left: var(--gap);
    padding-right: var(--gap);
    box-sizing: border-box;
  }
  .product-gallery > div:not(.swiper):first-child {
    flex: 0 0 100%;
    margin-bottom: 16px;
  }
  .product-gallery > div:not(.swiper):nth-child(2), .product-gallery > div:not(.swiper):nth-child(3) {
    flex: 0 0 50%;
    max-width: 50% !important;
  }
  .product-gallery > div:not(.swiper) img {
    border-radius: 20px;
  }
  .product-gallery > div:not(.swiper) img:first-child {
    display: block;
    aspect-ratio: 688/550;
  }
  .product-gallery > div:not(.swiper) img:nth-child(2), .product-gallery > div:not(.swiper) img:nth-child(3) {
    display: block;
    aspect-ratio: 336/269;
  }
}
@media (max-width: 991px) {
  .product-gallery {
    display: none !important;
  }
}
.product-features {
  margin-top: -20px;
  margin-bottom: -20px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .product-features {
    padding-top: 80px;
  }
  .page-template-sustainability .product-features {
    padding-bottom: 40px;
  }
}
.product-features h2 {
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.product-features__list.count-3 .product-feature {
  padding-left: 28px;
  padding-right: 28px;
}
.product-features__list.count-3 .product-feature img {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-features__list.count-3 .product-feature img {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .product-features__list.count-3 .product-feature {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .product-features__list.count-3 li {
    flex: 1;
  }
}
.product-features__list ul {
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1199px) {
  .product-features__list ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .product-features__list ul {
    gap: 0;
  }
}
.product-features__list li {
  flex: 1;
}
@media (max-width: 1199px) {
  .product-features__list li {
    flex: 0 0 200px;
  }
}
@media (max-width: 767px) {
  .product-features__list li {
    flex: 0 0 50%;
  }
}
.product-features__list img {
  aspect-ratio: 1/1;
  display: block;
  border-radius: 50%;
}
.product-feature {
  text-align: center;
}
@media (min-width: 768px) {
  .product-feature {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 767px) {
  .product-feature {
    padding-left: 9px;
    padding-right: 9px;
  }
}
.product-feature__image {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .product-feature__image {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 32px;
  }
}
.product-feature h3 {
  margin-bottom: 6px;
}

.reviews {
  overflow: hidden;
  position: relative;
  padding-top: 140px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .reviews {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.reviews-top {
  margin-bottom: 22px;
}
.reviews:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
.reviews h2 {
  letter-spacing: -0.02em;
}
.reviews .swiper {
  overflow: visible;
}
.reviews .swiper-buttons {
  display: flex;
  gap: 16px;
}
.reviews .swiper-button-next, .reviews .swiper-button-prev {
  color: #393939;
  position: static;
}
.reviews .swiper-button-next:after, .reviews .swiper-button-prev:after {
  display: none;
}
.reviews .swiper-button-next {
  transform: rotate(90deg);
}
.reviews .swiper-button-prev {
  transform: rotate(-90deg);
}
.reviews__single {
  border-radius: 30px;
  padding: 40px 50px 33px;
}
@media (max-width: 767px) {
  .reviews__single {
    padding: 32px 20px;
  }
}
.reviews__stars {
  color: #FFA41D;
  margin-bottom: 13px;
}
.reviews__stars i {
  font-size: 16px;
}
.reviews__title {
  text-decoration: underline;
}
.reviews__text {
  color: #333333;
  margin-bottom: 19px;
}
.reviews__initial {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--h-5);
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: relative;
  width: 48px;
  height: 48px;
  z-index: 1;
}
@media (max-width: 767px) {
  .reviews__initial {
    width: 38px;
    height: 38px;
  }
}
.reviews__initial:before {
  margin-top: -7px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E84A3B;
  border-radius: 50%;
  z-index: -1;
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .reviews__initial:before {
    width: 38px;
    height: 38px;
  }
}
.reviews__date {
  font-weight: bold;
}

.products {
  margin-bottom: 76px;
  padding-top: 140px;
}
@media (max-width: 991px) {
  .products {
    padding-top: 60px;
  }
}
.products h2 {
  font-size: var(--wp--preset--font-size--h-4);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .products h2 {
    text-align: center;
  }
}
.products-inner {
  --gap: 8px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .products-inner {
    flex-direction: column;
  }
}
.products-inner > a {
  text-decoration: none;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .products-inner > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .products-inner > a:nth-child(3) .products__single-image, .products-inner > a:nth-child(4) .products__single-image {
    margin-top: 50px;
  }
  .products-inner > a:nth-child(3) .products__single-image img, .products-inner > a:nth-child(4) .products__single-image img {
    transform: scale(1.25);
  }
}
.products__single {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 24px;
  --padding-x: 40px;
  --padding-y: 40px;
  padding: var(--padding-y) 0 calc(var(--padding-y)) var(--padding-x);
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
.products__single.product-light h3 {
  color: #fff;
}
.products__single.product-light .products__single-text {
  color: #fff;
}
@media (max-width: 1199px) {
  .products__single {
    --padding-x: 25px;
    --padding-y: 25px;
  }
}
@media (max-width: 991px) {
  .products__single {
    --padding-x: 20px;
    --padding-y: 32px;
  }
}
@media (max-width: 450px) {
  .products__single {
    box-sizing: border-box;
  }
}
.products__single h3 {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .products__single h3 {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .products__single h3 br {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1310px) {
  .products__single h3 {
    font-size: var(--wp--preset--font-size--h-4);
  }
}
.products__single-image {
  margin-right: var(--padding-x);
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 451px) {
  .products__single-image {
    height: 225px;
  }
}
.products__single-image img {
  position: relative;
}
@media (min-width: 992px) {
  .products__single-image img {
    transform: scale(1.37);
    transform-origin: left center;
  }
}
.products__single-image:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/hp-products-hover.png") center no-repeat;
  background-size: contain;
  width: 100%;
  height: 150%;
}
@media (min-width: 992px) {
  .products__single-image:before {
    opacity: 0;
    transition: all 0.3s linear;
  }
}
@media (max-width: 991px) {
  .products__single-image:before {
    height: 120%;
  }
}
@media (min-width: 992px) {
  .products__single:hover .products__single-image:before {
    opacity: 1;
  }
}
.products__single .products__single-text {
  max-width: 420px;
}
@media (max-width: 991px) {
  .products__single .products__single-text {
    max-width: 100%;
  }
}
.products .wp-block-button__link {
  white-space: nowrap;
  width: 130px;
  transition: all 0.4s linear;
}
@media (max-width: 767px) {
  .products .wp-block-button__link {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .products .wp-block-button {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .products .wp-block-button {
    width: 100%;
  }
}
.products .products_bottom {
  padding-right: 40px;
  align-items: flex-end;
  flex: 1;
}
@media (max-width: 767px) {
  .products .products_bottom {
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .products .products_bottom {
    flex-direction: column;
  }
}

.testimonialList {
  overflow: hidden;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .testimonialList {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.testimonialList-top {
  margin-bottom: 22px;
}
.testimonialList h2 {
  letter-spacing: -0.02em;
}
.testimonialList .swiper {
  overflow: visible;
}
.testimonialList .swiper-buttons {
  display: flex;
  gap: 16px;
}
.testimonialList .swiper-button-next, .testimonialList .swiper-button-prev {
  color: #393939;
  position: static;
}
.testimonialList .swiper-button-next:after, .testimonialList .swiper-button-prev:after {
  display: none;
}
.testimonialList .swiper-button-next {
  transform: rotate(90deg);
}
.testimonialList .swiper-button-prev {
  transform: rotate(-90deg);
}

.store-intro {
  padding-top: 140px;
  padding-bottom: 98px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .store-intro {
    padding-top: 60px;
  }
}
.store-intro > div {
  max-width: calc(1158px + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right));
  margin-left: auto;
  margin-right: auto;
}
.store-intro h1 {
  margin-bottom: 0;
}
.store-embed {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 160px;
  border-radius: 20px;
  margin-top: -20px;
  margin-bottom: -20px;
}
@media (max-width: 767px) {
  .store-embed {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.contact-form {
  overflow: hidden;
}
.contact-form-outer {
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 111px;
}
@media (max-width: 1199px) {
  .contact-form-outer {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .contact-form-outer {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-form-outer {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.contact-form-outer > div {
  flex: 1;
}
@media (max-width: 991px) {
  .contact-form-outer > div {
    width: 100%;
  }
}
.contact-form__text {
  border-radius: 24px;
  padding: 80px 32px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact-form__text {
    padding: 40px 20px;
  }
}
.contact-form__text-item {
  margin-top: 22px;
  gap: 12px;
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--h-5);
  font-weight: bold;
}
.contact-form__text-item i {
  position: relative;
  top: -0.1em;
}
.contact-form__text-item a {
  text-decoration: none;
}
@media (max-width: 767px) {
  .contact-form__text-item {
    margin-top: 10px;
  }
}
.contact-form__form .wpcf7-spinner {
  display: none;
}
.contact-form__form input:not(.wpcf7-submit), .contact-form__form textarea {
  outline: 0 !important;
  border-radius: 12px;
  padding: 16px 12px;
  border: 1px solid #000000;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.7142857143em;
  width: 100%;
  display: block;
  box-sizing: border-box;
  font-weight: bold;
}
.contact-form__form input:not(.wpcf7-submit)::-moz-placeholder, .contact-form__form textarea::-moz-placeholder {
  color: #C6C6C6;
  font-weight: bold;
}
.contact-form__form input:not(.wpcf7-submit)::placeholder, .contact-form__form textarea::placeholder {
  color: #C6C6C6;
  font-weight: bold;
}
.contact-form__form input:not(.wpcf7-submit).wpcf7-not-valid, .contact-form__form textarea.wpcf7-not-valid {
  border-color: var(--wp--preset--color--red);
}
.contact-form__form label {
  margin-bottom: 8px;
  display: block;
}
.contact-form__form label:not([for=first-name]) {
  margin-top: 20px;
}
.contact-form__form form p {
  margin-bottom: 0;
}
.contact-form__form form br {
  display: none;
}
.contact-form__form .select-container {
  position: relative;
}
.contact-form__form .select-container .wpcf7-form-control-wrap {
  position: static;
}
.contact-form__form .select-container .select-placeholder {
  cursor: pointer;
  border-radius: 12px;
  padding: 16px 12px;
  border: 1px solid #000000;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.7142857143em;
  width: 100%;
  display: block;
  box-sizing: border-box;
  font-weight: bold;
  color: #C6C6C6;
}
.contact-form__form .select-container .select-placeholder.selected {
  color: #000000;
}
.contact-form__form .select-container .select-placeholder i {
  position: absolute;
  color: #393939;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-size: 24px;
}
.contact-form__form .select-container select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.contact-form__form textarea {
  font-family: var(--wp--preset--font-family--primary);
}
.contact-form__form .wpcf7-submit {
  color: #fff;
  border: 0;
  font-weight: 500;
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.75;
  padding: 0.6em 1.3em 0.4em;
  background-color: transparent;
  cursor: pointer;
}
.contact-form__form .submit-container {
  margin-top: 20px;
  background-color: #174187;
  font-size: var(--wp--preset--font-size--medium);
  border-radius: 1.5em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease-in-out, padding 0.3s ease-in-out, background 0s ease-in-out;
  overflow: clip;
  overflow-clip-margin: 1px;
  display: inline-block;
}
.contact-form__form .submit-container:after {
  z-index: -1;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: var(--wp--preset--color--yellow);
  transform: translateY(102%);
  transition: all 0.3s ease-in-out;
}
.contact-form__form .submit-container:hover {
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.25);
  background-color: var(--wp--preset--color--yellow);
  transition: color 0.3s ease-in-out, padding 0.3s ease-in-out, background 0s ease-in-out 0.2s;
}
.contact-form__form .submit-container:hover:after {
  transform: translateY(0);
}
.contact-form__form .submit-container:hover .wpcf7-submit {
  color: #000;
}
.contact-form__form .wpcf7-response-output {
  border: 0 !important;
  padding: 0 !important;
  font-weight: bold;
  font-family: var(--wp--preset--font-family--heading);
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output {
  color: var(--wp--preset--color--red);
}
.contact-form .wpcf7 form.sent .wpcf7-response-output {
  color: #174187;
}

.error-404 {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 174px;
  border-radius: 0 0 20px 20px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .error-404 {
    padding-top: 80px;
    padding-bottom: 140px;
  }
}
.error-404__image {
  max-width: 786px;
  margin: 0 auto 20px;
}
.error-404 h2 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 34px;
}
.error-404 h1 {
  font-size: 68px;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .error-404 h1 {
    font-size: 40px;
  }
}
.error-404__text {
  margin-bottom: 24px;
}
.error-404 .wp-block-buttons {
  gap: 12px;
}
.error-404 + .mailchimp {
  padding-top: 20px;
}

.careers-intro-text {
  border-radius: 20px;
  margin-top: -20px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 160px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .careers-intro-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.careers-intro-text__main {
  letter-spacing: -0.02em;
}

.values {
  padding-top: 140px;
  padding-bottom: 140px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .values {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.values h3 {
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
@media (max-width: 1199px) {
  .values h3 {
    text-align: center;
  }
}
.values__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}
@media (max-width: 1199px) {
  .values__list ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.values__list ul li {
  flex: 1;
}
@media (max-width: 1199px) {
  .values__list ul li {
    flex: 0 0 25%;
  }
}
@media (max-width: 991px) {
  .values__list ul li {
    flex-basis: 40%;
  }
}
@media (max-width: 767px) {
  .values__list ul li {
    flex-basis: 100%;
  }
}

.value {
  text-align: center;
}
.value h4 {
  margin-bottom: 2px;
}
.value__image {
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 36px;
}
@media (max-width: 767px) {
  .value__image {
    padding: 30px;
  }
}
.value__image-outer {
  padding-left: 43px;
  padding-right: 43px;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .value__image-outer {
    max-width: 120px;
  }
}
.value__image img {
  width: 100%;
  display: block;
}

.positions {
  padding-top: 160px;
  padding-bottom: 160px;
  border-radius: 20px;
  margin-top: -20px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .positions {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.positions h3 {
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.positions__list ul {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  --gap: 8px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
}
.positions__list ul li {
  flex: 0 0 50%;
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .positions__list ul li {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.position {
  border: 3px solid #212121;
  border-radius: 30px;
  padding: 40px;
}
@media (max-width: 767px) {
  .position {
    padding: 32px 20px;
  }
}
.position h4 {
  margin-bottom: 2px;
}
.position h4 + p {
  margin-bottom: 12px;
}
.position__excerpt {
  margin-bottom: 12px;
}

.benefits {
  padding-top: 140px;
  padding-bottom: 140px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .benefits {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.benefits .spanish {
  display: none;
}
.benefits h3 {
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  padding-top: 16px;
  padding-bottom: 16px;
}
.benefits__inner {
  position: relative;
}
.benefits__toggle {
  position: absolute;
  z-index: 1;
  top: 0;
  right: var(--wp--style--root--padding-right);
  gap: 8px;
}
.benefits__toggle > span {
  cursor: pointer;
  padding: 12px 16px;
  display: block;
  position: relative;
}
.benefits__toggle > span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.benefits__toggle > span.active:after {
  opacity: 1;
}
.benefits__list ul {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  --gap: 8px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
}
@media (max-width: 1199px) {
  .benefits__list ul {
    justify-content: center;
  }
}
.benefits__list ul li {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: var(--gap);
  padding-right: var(--gap);
  box-sizing: border-box;
  margin-bottom: 16px;
  color: #212121;
  min-height: 160px;
}
@media (max-width: 1199px) {
  .benefits__list ul li {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 991px) {
  .benefits__list ul li {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .benefits__list ul li {
    min-height: 120px;
  }
}

.benefit {
  height: 100%;
  box-sizing: border-box;
  padding: 38px 20px;
  border-radius: 20px;
  font-family: var(--wp--preset--font-family--heading);
  font-weight: bold;
}
@media (max-width: 767px) {
  .benefit {
    padding: 27px 20px;
  }
}

/* == WordPress WYSIWYG Editor Styles == */
.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone, img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 13px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

html.lenis, html.lenis body {
  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-smooth iframe {
  pointer-events: none;
}

.otgs-development-site-front-end {
  display: none !important;
}

.front:not(.logged-in) {
  --wp-admin--admin-bar--height: 0px;
}

body.menu-open {
  overflow: hidden;
}

.text-page {
  overflow: hidden;
}

.text-page__content {
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: calc(1158px + var(--wp--style--root--padding-left) + var(--wp--style--root--padding-right)) !important;
}
@media (max-width: 767px) {
  .text-page__content {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.text-page__content h1 {
  margin-bottom: 70px;
  line-height: 1.1666666667;
}
.text-page__content h2 {
  font-size: var(--wp--preset--font-size--h-3);
  line-height: 1.1666666667;
}
.text-page__content h3 {
  font-size: var(--wp--preset--font-size--h-4);
  line-height: 1.1428571429;
}
.text-page__content h4 {
  font-size: var(--wp--preset--font-size--h-5);
  line-height: 1.2307692308;
}
.text-page__content h5 {
  font-size: var(--wp--preset--font-size--h-6);
  line-height: 1.4;
}
.text-page__content h6, .text-page__content p {
  font-size: var(--wp--preset--font-size--large);
}
@media (min-width: 768px) {
  .text-page__content h6, .text-page__content p {
    line-height: 1.5555555556;
  }
}
.text-page__content h2, .text-page__content h3, .text-page__content h4, .text-page__content h5, .text-page__content h6 {
  margin-top: 40px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .text-page__content h1 {
    line-height: 1.125;
  }
  .text-page__content h2 {
    line-height: 1.2857142857;
  }
  .text-page__content h3 {
    line-height: 1.3333333333;
  }
  .text-page__content h4 {
    line-height: 1.4;
  }
  .text-page__content h5 {
    line-height: 1.375;
  }
  .text-page__content h6, .text-page__content p {
    font-size: var(--wp--preset--font-size--medium) !important;
  }
}

.j-overlay {
  z-index: 9999 !important;
}