@font-face {
  font-family: "brandonGrotesqueBold";
  src: url("/DigitUp/LaCaseraUK/assets/fonts/BrandonGrotesque-Bold.woff2") format("woff2"), url("/DigitUp/LaCaseraUK/assets/fonts/BrandonGrotesque-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandonGrotesqueMedium";
  src: url("/DigitUp/LaCaseraUK/assets/fonts/BrandonGrotesque-Medium.woff2") format("woff2"), url("/DigitUp/LaCaseraUK/assets/fonts/BrandonGrotesque-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "megascopeRegular";
  src: url("/DigitUp/LaCaseraUK/assets/fonts/Megascope-Regular.woff2") format("woff2"), url("/DigitUp/LaCaseraUK/assets/fonts/Megascope-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ============================================
   Button Mixin
   Supports: variants, sizes, optional icon
=============================================== */
/* SIZE MIXIN (NO COLORS, NO VARIANT) */
/* VARIANT MIXIN (COLORS ONLY) */
/* OPTIONAL: BASE MIXIN */
.header {
  position: relative;
  z-index: 10;
}

.mobileHeaderWrapper {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logoImg {
  margin: 0;
  max-width: 5.625rem;
}
.logoImg img {
  max-width: 100%;
  display: block;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4375rem;
}
.hamburger span {
  width: 1.75rem;
  height: 0.125rem;
  background: #fedd00;
  border-radius: 0.125rem;
  transition: all 0.35s ease;
}
.hamburger.isActive span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.isActive span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.isActive span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 599.9px) {
  .hamburger {
    display: none;
  }
}

.desktopHeader {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 0.875rem 2.5rem;
}

.desktopInner {
  padding: 0.875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 599.9px) {
  .desktopInner {
    padding: 0.875rem 0;
  }
}

.nav {
  display: none;
}
@media (min-width: 599.9px) {
  .nav {
    display: block;
  }
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.375rem;
}
.nav ul li a {
  text-decoration: none;
  color: #fedd00;
  text-transform: uppercase;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

.megaMenuWrapper {
  position: absolute;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 5;
}
.megaMenuWrapper .menuContainer {
  position: relative;
  background: #ffffff;
  display: flex;
  gap: 1rem;
}
.megaMenuWrapper .level1,
.megaMenuWrapper .level2 {
  flex: 1;
}
.megaMenuWrapper .level1 ul,
.megaMenuWrapper .level2 ul {
  list-style: none;
  padding: 0;
}
.megaMenuWrapper .level1 li,
.megaMenuWrapper .level2 li {
  cursor: pointer;
}
.megaMenuWrapper .level1 li.active, .megaMenuWrapper .level1 li:hover,
.megaMenuWrapper .level2 li.active,
.megaMenuWrapper .level2 li:hover {
  background: #F7F7FC;
}
.megaMenuWrapper .level1 li a,
.megaMenuWrapper .level2 li a {
  color: #09101d;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.megaMenuWrapper .MegaCtaWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2f27c5;
  color: #ffffff;
  padding: 1rem;
}

.desktopHeaderWrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
  background: #ffffff;
}
.desktopHeaderWrapper .logoImg {
  max-width: 6.875rem;
}

.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #7d0000;
  transform: translateY(-110%);
  transition: transform 0.45s ease;
}
.mobileMenu.open, .mobileMenu.isOpen {
  transform: translateY(0%);
}

.overlay {
  display: none;
}

.topBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.closeBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #fedd00;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}
.closeBtn svg {
  width: 2rem;
  height: 2rem;
}
.closeBtn:hover {
  opacity: 0.8;
}

.menuList {
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.375rem;
}

.link {
  text-decoration: none;
  color: #fedd00;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
}
.link:hover {
  opacity: 0.8;
}

.ageGateWrapper {
  min-height: 100vh;
  background: radial-gradient(circle at bottom, #ff7a00 14%, #b30000 55%, #7a0000 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.suntoryImage {
  width: 200px;
}

.ageGateInner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.centerBlock {
  text-align: center;
  color: #fedd00;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  font-family: "megascopeRegular", "Verdana", Arial, sans-serif;
  letter-spacing: 0.375rem;
  font-size: 2.375rem;
}

.notice {
  font-size: 1.3125rem;
  margin-top: 2.5rem;
  opacity: 0.9;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  letter-spacing: -0.525px;
  line-height: 2rem;
  margin-inline: 3.125rem;
}
@media (min-width: 839.9px) {
  .notice {
    margin-inline: 134.5px;
    margin-top: 3.75rem;
  }
}

.dateInputs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "megascopeRegular", "Verdana", Arial, sans-serif;
  margin-top: 1.875rem;
}
@media (min-width: 839.9px) {
  .dateInputs {
    margin-top: 3.75rem;
  }
}
.dateInputs input {
  text-align: center;
  outline: none;
  border: none;
  background: transparent;
  color: #fedd00;
  caret-color: #fedd00;
  padding: 0;
  appearance: none;
  font-weight: 400;
  line-height: 1;
  font-size: 3.75rem;
  width: 4.625rem;
}
.dateInputs input::placeholder {
  color: #fedd00;
  opacity: 1;
}
.dateInputs input:focus, .dateInputs input:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
@media (min-width: 839.9px) {
  .dateInputs input {
    width: 154px;
    letter-spacing: 6.5px;
    line-height: 130px;
    font-size: 130px;
  }
}
.dateInputs input:nth-child(3) {
  width: 122px;
}
@media (min-width: 839.9px) {
  .dateInputs input:nth-child(3) {
    width: 300px;
  }
}

.ctaButton {
  margin-top: 2.5rem;
  padding: 0.5rem 2.25rem;
  border-radius: 2.5rem;
  border: 0.0625rem solid #fedd00;
  background: transparent;
  color: #fedd00;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  cursor: pointer;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  transition: all 0.3s ease;
}
.ctaButton:hover:not(:disabled) {
  background: rgba(255, 196, 0, 0.1);
}
.ctaButton:focus-visible {
  outline: 0.1875rem solid #fedd00;
  outline-offset: 0.125rem;
}
.ctaButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 839.9px) {
  .ctaButton {
    font-size: 1.25rem;
    padding: 0.75rem 2.25rem;
    letter-spacing: -0.5px;
    line-height: 30px;
  }
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.error {
  color: #fff;
  margin-bottom: 0.625rem;
}

.legal {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-family: "brandonGrotesqueMedium", "Verdana", Arial, sans-serif;
  letter-spacing: -0.56px;
  line-height: 17.5px;
}
@media (min-width: 839.9px) {
  .legal {
    margin-top: 2.5rem;
  }
}

.footer {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-family: "brandonGrotesqueMedium", "Verdana", Arial, sans-serif;
  letter-spacing: -0.56px;
  line-height: 17.5px;
}

.underAgeMsg {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.footerSection {
  background: linear-gradient(180deg, #ee5234 0%, #81060a 100%);
}

.footerContainer {
  color: #fedd00;
  text-align: center;
}
.footerContainer a {
  color: #fedd00;
  text-decoration: none;
}
.footerContainer a:hover {
  text-decoration: underline;
}

.footerLogo {
  width: 143px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.col2 ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.centerBlock {
  max-width: 700px;
  margin: 0 auto;
}

.copyright {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.legal {
  color: #fedd00;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-align: center;
}
.legal * {
  color: #fedd00 !important;
  background: transparent !important;
  font-size: 0.875rem !important;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif !important;
}

.siteText {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.contact {
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  margin-top: 2rem;
}

section.heroWrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 7% 92%, #ffeb99 3%, #ff6a00 21%, #d40000 27%, #980000 73%), linear-gradient(#670001, #8b0000);
}

section.heroWrapper .heroInner {
  width: 100%;
  position: relative;
  z-index: 1;
}

section.heroWrapper .heroContent {
  padding-top: 136px;
}
@media (min-width: 839.9px) {
  section.heroWrapper .heroContent {
    padding-top: 0;
  }
}

section.heroWrapper .heroImage {
  width: 100%;
  height: auto;
  display: block;
}

section.heroWrapper .heroSurface {
  position: relative;
  z-index: 0;
  margin-top: -1.875rem;
  height: 5rem;
  background: linear-gradient(90deg, #ff5a2f 0%, #e53a1f 35%, #b31217 70%, #7a0006 100%);
}
@media (min-width: 839.9px) {
  section.heroWrapper .heroSurface {
    margin-top: -3.4375rem;
    height: 7.5rem;
  }
}

@media (max-width: 0) {
  section.heroWrapper {
    padding-top: 4.5rem;
  }
  section.heroWrapper .heroImage {
    max-width: 95%;
    max-height: 70vh;
    margin: 0 auto;
  }
}
.desktopOnly {
  display: none !important;
}
@media (min-width: 839.9px) {
  .desktopOnly {
    display: block !important;
  }
}

.mobileOnly {
  display: block !important;
}
@media (min-width: 839.9px) {
  .mobileOnly {
    display: none !important;
  }
}

.sr_only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

section.introWrapper {
  width: 100%;
  position: relative;
  background-color: #fedd00;
  display: flex;
  justify-content: center;
}

section.introWrapper .introInner {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr;
  gap: 1.375rem;
  text-align: center;
}
@media (min-width: 839.9px) {
  section.introWrapper .introInner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.375rem;
  }
}

section.introWrapper .introHeading {
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  color: #c4161c;
  letter-spacing: 0.375rem;
  font-family: "megascopeRegular", "Verdana", Arial, sans-serif;
  text-align: left;
}
@media (min-width: 839.9px) {
  section.introWrapper .introHeading {
    font-size: 180px;
  }
}

section.introWrapper .introHeadingOne {
  margin-left: 0;
}
@media (min-width: 839.9px) {
  section.introWrapper .introHeadingOne {
    margin-left: 2.25rem;
  }
}

section.introWrapper .introHeadingThree {
  margin-left: 2.25rem;
}

section.introWrapper .introContent p {
  color: #c4161c !important;
  font-family: "brandonGrotesqueMedium", "Verdana", Arial, sans-serif !important;
  text-align: left;
}
@media (min-width: 839.9px) {
  section.introWrapper .introContent p {
    font-size: 2.5rem !important;
    line-height: 1.25;
  }
}
section.introWrapper .introContent * {
  background: transparent !important;
}

.productWrapper {
  width: 100%;
  background: radial-gradient(circle at bottom, #ff8c00 0%, #c4161c 45%, #8b0000 100%);
}

.productInner {
  display: grid;
  gap: 3.125rem;
}
@media (min-width: 839.9px) {
  .productInner {
    gap: 6.25rem;
  }
}

.productsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  text-align: center;
}
@media (min-width: 839.9px) {
  .productsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.productCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 2.5rem;
}

.productImage {
  width: 100%;
  max-width: 240px;
  margin-bottom: 2.75rem;
}
@media (min-width: 839.9px) {
  .productImage {
    max-width: 280px;
    margin-bottom: 3.5rem;
  }
}

.productTitle {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.625rem;
  color: #fedd00;
  margin-bottom: 1.75rem;
  font-family: "megascopeRegular", "Verdana", Arial, sans-serif;
}
@media (min-width: 839.9px) {
  .productTitle {
    font-size: 6.25rem;
  }
}

.productSubtitle {
  font-size: 1rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: #fedd00;
  margin-bottom: 1.75rem;
}
@media (min-width: 839.9px) {
  .productSubtitle {
    font-size: 1.75rem;
  }
}

.productDescription {
  max-width: 420px;
  margin-bottom: 1.75rem;
}
@media (min-width: 839.9px) {
  .productDescription {
    font-size: 1.75rem;
  }
}
.productDescription * {
  background: transparent !important;
}
.productDescription p {
  font-size: 1rem !important;
  color: #fedd00 !important;
  font-family: "brandonGrotesqueMedium", "Verdana", Arial, sans-serif !important;
}
@media (min-width: 839.9px) {
  .productDescription p {
    font-size: 1.75rem !important;
    line-height: 2.25rem;
  }
}

.productMeta {
  font-size: 1.75rem;
  color: #fedd00;
  opacity: 0.9;
}

.retailersWrapper {
  text-align: center;
}

.retailersTitle {
  font-size: 1.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fedd00;
  margin-bottom: 1.75rem;
  font-weight: 700;
}

.retailersGrid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 3.125rem;
}
@media (min-width: 839.9px) {
  .retailersGrid {
    gap: 4rem;
  }
}

.retailerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.retailerLogo img {
  max-height: 3.25rem;
  width: auto;
}
@media (min-width: 839.9px) {
  .retailerLogo img {
    max-height: 5.75rem;
  }
}

.contactWrapper {
  width: 100%;
  background: radial-gradient(circle at bottom, #ff8c00 0%, #c4161c 45%, #8b0000 100%);
  text-align: center;
}

.contactInner {
  padding: 3.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
@media (min-width: 839.9px) {
  .contactInner {
    padding: 6.25rem 1.25rem;
    gap: 1.25rem;
  }
}

.title {
  color: #fedd00;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.2;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  margin-block: 5rem;
}
@media (min-width: 839.9px) {
  .title {
    font-size: 2rem;
  }
}

.intro {
  color: #fedd00;
  font-size: 2rem;
  line-height: 1.4;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
}
@media (min-width: 839.9px) {
  .intro {
    font-size: 2rem;
  }
}

.link {
  color: #fedd00;
  text-decoration: underline;
  font-weight: normal;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  display: inline-block;
}

.phone {
  color: #fedd00;
  font-weight: normal;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  font-size: 2rem;
  margin: 0;
}
@media (min-width: 839.9px) {
  .phone {
    font-size: 2rem;
  }
}

body {
  color: #09101d;
  overflow-x: hidden;
  margin: 0;
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: normal;
  font-style: normal;
}
@media (min-width: 1023.9px) {
  body {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    font-style: normal;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
a {
  cursor: pointer;
}

a {
  color: #3f37d7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  padding: 1rem;
  border: 1px solid #a5abb3;
  width: 100%;
  border-radius: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus {
  outline: 2px solid #2f27c5;
}

svg:focus,
svg:focus-visible {
  border: none;
  outline: none;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

::selection {
  background-color: #110e47;
  color: #e4e2f9;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ffffff;
  color: #09101d;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.3s ease;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ebeef2;
}

::-webkit-scrollbar-thumb {
  background-color: #9A9A9A;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1023.9px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.h1-bold {
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.1875rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .h1-bold {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
@media (min-width: 1023.9px) {
  .h1-bold {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 700;
    font-size: 3.25rem;
    line-height: 4.0625rem;
  }
}

h1,
.h1-semibold {
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  h1,
  .h1-semibold {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 2.1875rem;
  }
}
@media (min-width: 1023.9px) {
  h1,
  .h1-semibold {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 600;
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}

h2,
.h2-semibold {
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  h2,
  .h2-semibold {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 1023.9px) {
  h2,
  .h2-semibold {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.8125rem;
  }
}

h3,
.h3-regular {
  font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  h3,
  .h3-regular {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
@media (min-width: 1023.9px) {
  h3,
  .h3-regular {
    font-family: "brandonGrotesqueBold", "Verdana", Arial, sans-serif;
    font-weight: 400;
    font-size: 1.625rem;
    line-height: 2.1875rem;
  }
}

.c-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.sectionBackground {
  background: #ebeef2;
}

.sectionBreadcrumb {
  position: relative;
}
