@charset "UTF-8";
@import '../css/utils/swiper-bundle.min.css';
/* ===================================
   RESET CSS MODERNO - SCSS
   =================================== */
/* 1. Box sizing universal */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ¿Por qué?
   Asegura que el padding y border se incluyan dentro del width/height total.
   Esencial para un layout predecible.
*/
/* 2. Elimina márgenes por defecto */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* ¿Por qué?
   Evita márgenes heredados que afectan el espaciado.
   Te da control total sobre los márgenes manuales.
*/
/* 3. Limpia paddings en listas */
ul[role=list],
ol[role=list] {
  padding: 0;
}

/* ¿Por qué?
   Permite trabajar con listas limpias cuando se usan como menús o estructuras de UI.
   Se aplica a listas que explícitamente usan `role="list"` para no romper accesibilidad.
*/
/* 4. Remueve estilos de lista */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ¿Por qué?
   Elimina bullets y números. Ideal para navs, uls estilizados.
   Se recomienda aplicar sólo si sabes que usarás listas personalizadas.
*/
/* 5. Elimina márgenes de elementos comunes */
body {
  min-height: 100vh;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: system-ui, sans-serif;
}

/* ¿Por qué?
   - `min-height: 100vh`: asegura que el `body` siempre tenga al menos el alto de la ventana.
   - `line-height`: mejora la legibilidad.
   - `font-smoothing` & `text-rendering`: mejora visualización de texto.
   - `font-family`: base neutra y rápida.
*/
/* 6. Normaliza imágenes y medios */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ¿Por qué?
   - `display: block`: evita espacios vacíos por inline-block default.
   - `max-width: 100%`: asegura que se adapten al contenedor.
*/
/* 7. Quita estilos heredados a formularios */
input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
}

/* ¿Por qué?
   Heredan tipografía y color.
   Evita estilos inconsistentes entre navegadores.
   Pueden ser reestilizados desde cero.
*/
/* 8. Elimina decoraciones de enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* ¿Por qué?
   Deja los links limpios y sin color/underline predeterminado.
   Puedes aplicar estilos cuando los necesites.
*/
/* 9. Mejora de accesibilidad: foco visible */
:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ¿Por qué?
   Asegura visibilidad del foco (navegación por teclado).
   Puedes personalizarlo con el color primario de tu app.
*/
/* 10. Tablas sin espaciado interno */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ¿Por qué?
   Elimina espacios entre celdas y fuerza que la tabla use todo el ancho disponible.
*/
strong,
b {
  font-weight: normal;
}

@font-face {
  font-family: "Amino";
  src: url("fonts/Amino.woff2") format("woff2"), url("fonts/Amino.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Amino";
  src: url("fonts/Amino-Bold.woff2") format("woff2"), url("fonts/Amino-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Amino";
  src: url("fonts/Amino-Medium.woff2") format("woff2"), url("fonts/Amino-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Amino";
  src: url("fonts/Amino-Black.woff2") format("woff2"), url("fonts/Amino-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
:root {
  /* 🎨 Neutros */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-100: #f7f7f7;
  --color-gray-400: #F3F3F3;
  --color-gray-500: #EAEAEA;
  --color-gray-600: #65696C;
  --color-gray-650: #5F6368;
  --color-gray-700: #D8D8D8;
  --color-gray-800: #161615;
  /* 🚩 Marca */
  --color-primary-light: #E2241C;
  --color-primary: #D0001B;
  --color-primary-dark: #b8021b;
  /* Rojo OXXO */
  --color-secondary: #F9B810;
  /* Amarillo */
  --color-accent: #03a9f4;
  /* ✅ Estados */
  --color-success: #28a745;
  --color-error: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  /* 📄 Texto y fondo */
  --background-color: var(--color-white);
  --text-color: var(--color-gray-800);
  --index-product-location: 50;
  --index-header: 20;
  --header-height: 15.5625rem;
  --header-mobile-height: 2.5rem;
  --menu-sticky: -11.1875rem;
  --menu-sticky-positive: 11.1875rem;
  --index-menu: 20;
  --index-submenu: 21;
  --index-categories: 22;
  --index-subcategories: 23;
}
@media (max-width: 1400px) {
  :root {
    --menu-sticky: -10.0625rem;
    --menu-sticky-positive: 10.0625rem;
  }
}
@media (max-width: 999px) {
  :root {
    --menu-sticky: -7.25rem;
    --menu-sticky-positive: 7.25rem;
  }
}
@media (max-width: 800px) {
  :root {
    --menu-sticky: -6.5625rem;
    --menu-sticky-positive: 6.5625rem;
    --header-height: 5.3125rem;
  }
}
@media (max-width: 500px) {
  :root {
    --header-height: 4.6875rem;
  }
}

body, html {
  font-family: "Amino";
  font-weight: normal;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-gray-800);
}

.limit {
  padding-inline: 1.25rem;
  width: 100%;
  max-width: 92.5rem;
  margin-inline: auto;
  position: relative;
}

.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.section + .section {
  padding-top: 0;
}
@media (max-width: 800px) {
  .section {
    padding-top: 2.1875rem;
    padding-bottom: 2.1875rem;
  }
}
@media (max-width: 500px) {
  .section {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

.hidden {
  display: none !important;
}

.ui__product-card {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 16.25rem;
  height: 22.5rem;
  padding: 1.0625rem;
  border: var(--color-gray-500) solid 0.0625rem;
  border-radius: 0.625rem;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.ui__product-card:hover {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}
.ui__product-card:hover .ui__product-card__picture__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ui__product-card__picture {
  margin-bottom: 0.625rem;
  position: relative;
  width: 100%;
  height: 10rem;
  border: 0.0625rem solid var(--color-gray-500);
  border-radius: 0.625rem;
  overflow: hidden;
}
.ui__product-card__picture__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.ui__product-card__picture__discount {
  position: absolute;
  top: 0.75rem;
  left: 0.875rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  height: 2rem;
  border-radius: 1rem;
  line-height: 1;
  padding-inline: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ui__product-card__category {
  font-size: 0.75rem;
  color: var(--color-black);
  margin-bottom: 0.1875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.ui__product-card__name {
  min-height: 2.375rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 0.3125rem;
  max-width: 15.625rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ui__product-card__price {
  margin-top: auto;
  min-height: 2.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ui__product-card__price__discounted, .ui__product-card__price__normal {
  font-size: 1rem;
  color: var(--color-gray-800);
  font-weight: 700;
  display: block;
  margin-top: auto;
}
.ui__product-card__price__discounted {
  color: var(--color-primary);
}
.ui__product-card__price__old {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-600);
  text-decoration: line-through;
  margin-top: 0.3125rem;
}
.ui__product-card__button {
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid var(--color-primary);
  background-color: var(--color-white);
  margin-top: 0.4375rem;
  font-size: 1rem;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.ui__product-card__button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media (max-width: 800px) {
  .ui__product-card {
    width: 10.0625rem;
    height: 17.5rem;
    padding: 0.625rem;
  }
  .ui__product-card__picture {
    height: 7.9375rem;
  }
  .ui__product-card__picture__discount {
    top: 0.4375rem;
    left: 0.5625rem;
    font-size: 0.75rem;
    height: 1.25rem;
    border-radius: 0.625rem;
    padding-inline: 0.9375rem;
  }
  .ui__product-card__category {
    font-size: 0.5rem;
  }
  .ui__product-card__name {
    font-size: 0.875rem;
  }
  .ui__product-card__price {
    margin-top: auto;
  }
  .ui__product-card__price__discounted, .ui__product-card__price__normal {
    font-size: 0.9375rem;
  }
  .ui__product-card__price__old {
    margin-top: 0;
  }
  .ui__product-card__button {
    height: 1.875rem;
    line-height: 1.875rem;
    font-size: 0.875rem;
    border-radius: 0.9375rem;
  }
}
@media (max-width: 500px) {
  .ui__product-card {
    width: 9.5625rem;
  }
}
.ui_product-list {
  display: none;
}
.ui_product-list .ui__product-card {
  width: calc(25% - 0.5625rem);
  height: auto;
}
@media (max-width: 1200px) {
  .ui_product-list .ui__product-card {
    width: calc(33.3333% - 0.5625rem);
  }
}
@media (max-width: 900px) {
  .ui_product-list .ui__product-card {
    width: calc(25% - 0.5625rem);
  }
}
@media (max-width: 600px) {
  .ui_product-list .ui__product-card {
    width: calc(33.3333% - 0.5625rem);
  }
}
@media (max-width: 500px) {
  .ui_product-list .ui__product-card {
    width: calc(50% - 0.5625rem);
  }
}

.header {
  background-color: var(--color-white);
  width: 100%;
}
.header__mobile-location {
  display: none;
}
.header__top {
  background-color: var(--color-secondary);
  height: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__top__inset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  height: 100%;
  line-height: 1;
  font-size: 0.875rem;
}
.header__top__icon {
  margin-top: -0.1875rem;
}
.header__top__title {
  font-weight: 500;
  margin-right: 0.25rem;
}
.header__top__link {
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
}
.header__top__link::after {
  content: "";
  display: block;
  background-color: var(--color-primary);
  height: 0.0625rem;
  margin-top: -0.0625rem;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.header__top__link:hover::after {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}
@media (max-width: 800px) {
  .header__top {
    height: 1.5625rem;
  }
  .header__top__inset {
    font-size: 0.75rem;
  }
  .header__top__icon {
    width: 0.75rem;
    height: 1.125rem;
  }
}
@media (min-width: 0px) and (max-width: 999px) {
  .header {
    position: sticky;
    top: var(--menu-sticky);
    z-index: var(--index-header);
  }
  .header__first {
    display: none;
  }
  .header__second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding-block: 0.4375rem 0.5625rem;
    margin-bottom: 0.25rem;
  }
  .header__second__logo {
    position: relative;
    z-index: 2;
  }
  .header__second__image {
    max-width: 7.25rem;
    height: auto;
  }
  .header__second::before {
    content: "";
    display: block;
    width: 100%;
    height: 2.6875rem;
    background-color: var(--color-primary);
    border-radius: 1.25rem 1.25rem 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .header__mobile {
    background-color: var(--color-secondary);
  }
  .header__mobile__button {
    height: 2.5rem;
    padding-inline: 1.25rem;
    color: var(--color-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
  }
  .header__mobile__button__icon {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 1rem;
    height: 0.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.1875rem;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
  }
  .header__mobile__button__icon::before, .header__mobile__button__icon::after,
  .header__mobile__button__icon span {
    content: "";
    display: block;
    width: 1rem;
    height: 0.1875rem;
    background-color: var(--color-primary);
    -webkit-transition: background-color ease 0.25s;
    transition: background-color ease 0.25s;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
  }
  .header__mobile__button__title {
    font-weight: 800;
    -webkit-transform: translateY(0.1875rem);
            transform: translateY(0.1875rem);
  }
  .header__mobile__button.-active- {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .header__mobile__button.-active- .header__mobile__button__icon {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .header__mobile__button.-active- .header__mobile__button__icon::before, .header__mobile__button.-active- .header__mobile__button__icon::after {
    background-color: var(--color-white);
    width: 0.625rem;
    height: 0.125rem;
  }
  .header__mobile__button.-active- .header__mobile__button__icon::before {
    -webkit-transform: translateY(0.34375rem) translateX(0px) rotate(45deg);
            transform: translateY(0.34375rem) translateX(0px) rotate(45deg);
  }
  .header__mobile__button.-active- .header__mobile__button__icon::after {
    -webkit-transform: translateY(-0.34375rem) translateX(0px) rotate(-45deg);
            transform: translateY(-0.34375rem) translateX(0px) rotate(-45deg);
  }
  .header__mobile__button.-active- .header__mobile__button__icon span {
    opacity: 0;
  }
  .header__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--index-menu);
    width: 100%;
    height: calc(100% - 2.5rem);
    background-color: var(--color-primary);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header__menu__inset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    padding-block: 1.25rem;
  }
  .header__menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.25rem;
    min-height: 1.875rem;
  }
  .header__menu__item__icon-category {
    display: none;
  }
  .header__menu__item__link {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 500;
  }
  .header__menu__item__more {
    width: 1.875rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: -0.625rem;
  }
  .header__menu__item__icon {
    display: none;
  }
  .header__menu__item__icon-mobile {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .header__menu__item__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6875rem;
    margin-left: -0.625rem;
    margin-bottom: 0.625rem;
  }
  .header__menu__item__back__icon {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
  }
  .header__menu__item__back__title {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .header__menu__item.-current- .header__menu__item__link {
    color: var(--color-secondary);
  }
  .header__menu__item__submenu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--index-submenu);
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
    padding: 1.25rem 1.875rem;
  }
  .header__menu__item__submenu__link {
    min-height: 1.875rem;
    line-height: 1.875rem;
    color: var(--color-gray-650);
    font-size: 1.125rem;
    font-weight: 500;
  }
  .header__menu__item__submenu__link.-current- {
    color: var(--color-primary);
  }
  .header__nav__banner {
    display: none;
  }
  .header__nav__categories {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--index-categories);
    width: 100%;
    height: calc(100% - 2.5rem);
    background-color: var(--color-white);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 1.875rem;
  }
  .header__nav__categories__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.25rem;
    min-height: 3.125rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    margin-inline: -0.625rem;
  }
  .header__nav__categories__item__link {
    color: var(--color-gray-800);
    font-size: 1.125rem;
    font-weight: 500;
  }
  .header__nav__categories__item__more {
    width: 1.875rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: -0.625rem;
  }
  .header__nav__categories__item__icon {
    display: none;
  }
  .header__nav__categories__item:hover, .header__nav__categories__item[aria-current].-active- {
    background-color: var(--color-primary);
  }
  .header__nav__categories__item:hover .header__nav__categories__item__link, .header__nav__categories__item[aria-current].-active- .header__nav__categories__item__link {
    color: var(--color-white);
  }
  .header__nav__categories__item:hover .header__nav__categories__item__icon-mobile, .header__nav__categories__item[aria-current].-active- .header__nav__categories__item__icon-mobile {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .header__nav__subcategories {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--index-subcategories);
    width: 100%;
    height: calc(100% - 2.5rem);
    background-color: var(--color-white);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 1.875rem;
  }
  .header__nav__subcategories__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.25rem;
    min-height: 3.125rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    margin-inline: -0.625rem;
  }
  .header__nav__subcategories__item__link {
    color: var(--color-gray-800);
    font-size: 1.125rem;
    font-weight: 500;
  }
  .header__nav__subcategories__item__more {
    width: 1.875rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: -0.625rem;
  }
  .header__nav__subcategories__item__icon {
    display: none;
  }
  .header__nav__subcategories__item:hover, .header__nav__subcategories__item.-active- {
    background-color: var(--color-primary);
  }
  .header__nav__subcategories__item:hover .header__nav__subcategories__item__link, .header__nav__subcategories__item.-active- .header__nav__subcategories__item__link {
    color: var(--color-white);
  }
  .header__nav__subcategories__item:hover .header__nav__subcategories__item__icon-mobile, .header__nav__subcategories__item.-active- .header__nav__subcategories__item__icon-mobile {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .header__menu, .header__menu__item__submenu, .header__nav__categories, .header__nav__subcategories {
    left: 100%;
    -webkit-transition: -webkit-transform ease-out 0.35s;
    transition: -webkit-transform ease-out 0.35s;
    transition: transform ease-out 0.35s;
    transition: transform ease-out 0.35s, -webkit-transform ease-out 0.35s;
  }
  .header__menu.-active-mobile-, .header__menu__item__submenu.-active-mobile-, .header__nav__categories.-active-mobile-, .header__nav__subcategories.-active-mobile- {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .header__mobile-location {
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    padding-block: 0.625rem;
    border-bottom: 0.0625rem solid #F3F3F3;
  }
  .header__mobile-location__text {
    line-height: 1;
    -webkit-transform: translateY(0.0625rem);
            transform: translateY(0.0625rem);
    margin-right: auto;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400;
  }
  .header__mobile-location__text strong {
    font-weight: 600;
  }
}
@media (min-width: 1000px) {
  .header {
    position: sticky;
    top: var(--menu-sticky);
    z-index: var(--index-header);
  }
  .header__mobile {
    display: none;
  }
  .header__first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 1.25rem;
    position: relative;
    z-index: 3;
  }
  .header__location {
    width: 11.5rem;
    height: 2.3125rem;
    padding-inline: 1.0625rem;
    border-radius: 0.625rem;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.6875rem;
    -webkit-transition: -webkit-transform ease 0.25s;
    transition: -webkit-transform ease 0.25s;
    transition: transform ease 0.25s;
    transition: transform ease 0.25s, -webkit-transform ease 0.25s;
  }
  .header__location__title {
    margin-right: auto;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    -webkit-transform: translateY(0.125rem);
            transform: translateY(0.125rem);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .header__location:hover {
    text-decoration: underline;
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
  }
  .header__countries {
    position: relative;
  }
  .header__countries::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.4375rem;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .header__countries__button {
    width: 6.875rem;
    height: 2.3125rem;
    padding-inline: 1.0625rem;
    border-radius: 0.625rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.4375rem;
    -webkit-transition: background-color ease 0.25s, -webkit-transform ease 0.25s;
    transition: background-color ease 0.25s, -webkit-transform ease 0.25s;
    transition: transform ease 0.25s, background-color ease 0.25s;
    transition: transform ease 0.25s, background-color ease 0.25s, -webkit-transform ease 0.25s;
  }
  .header__countries__button__title {
    margin-right: auto;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    -webkit-transform: translateY(0.125rem);
            transform: translateY(0.125rem);
  }
  .header__countries__button:hover {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    background-color: var(--color-primary-dark);
  }
  .header__countries__nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.3125rem);
    padding: 0.8125rem;
    background-color: var(--color-white);
    border-radius: 1.25rem;
    width: 11.875rem;
    -webkit-box-shadow: 0 0.5625rem 0.625rem 0 rgba(100, 100, 100, 0.25);
            box-shadow: 0 0.5625rem 0.625rem 0 rgba(100, 100, 100, 0.25);
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
  }
  .header__countries__nav__link {
    height: 3.0625rem;
    border-radius: 0.625rem;
    font-size: 1.25rem;
    padding: 0.8125rem;
    color: var(--color-gray-800);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    -webkit-transition: background-color ease 0.25s, color ease 0.25s;
    transition: background-color ease 0.25s, color ease 0.25s;
  }
  .header__countries__nav__link:hover, .header__countries__nav__link.-current- {
    background-color: var(--color-primary-light);
    color: var(--color-white);
  }
  .header__countries:hover .header__countries__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__second {
    height: 6.4375rem;
    position: relative;
    overflow: hidden;
    margin-top: -1.5rem;
    margin-bottom: 0.4375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__second::before {
    content: "";
    display: block;
    width: 100%;
    height: 2.6875rem;
    background-color: var(--color-primary);
    border-radius: 1.25rem 1.25rem 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .header__second::after {
    content: "";
    display: block;
    width: 60%;
    max-width: 56.25rem;
    height: 5.3125rem;
    background-color: var(--color-primary);
    border-radius: 1.25rem 1.25rem 0 0;
    -webkit-box-shadow: 0 1.1875rem 1.25rem 0.625rem rgba(132, 48, 46, 0.9);
            box-shadow: 0 1.1875rem 1.25rem 0.625rem rgba(132, 48, 46, 0.9);
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header__second__logo {
    position: relative;
    z-index: 3;
  }
  .header__menu {
    background-color: var(--color-secondary);
  }
  .header__menu__inset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8125rem;
    position: relative;
    padding-inline: 2.5rem;
    color: var(--color-primary);
    cursor: pointer;
    -webkit-transition: background-color ease 0.25s, color ease 0.25s;
    transition: background-color ease 0.25s, color ease 0.25s;
  }
  .header__menu__item.m--category .header__menu__item__more {
    display: none;
  }
  .header__menu__item__icon-mobile, .header__menu__item__back {
    display: none;
  }
  .header__menu__item__icon-category {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 1rem;
    height: 0.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.1875rem;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
  }
  .header__menu__item__icon-category::before, .header__menu__item__icon-category::after,
  .header__menu__item__icon-category span {
    content: "";
    display: block;
    width: 1rem;
    height: 0.1875rem;
    background-color: var(--color-primary);
    -webkit-transition: background-color ease 0.25s;
    transition: background-color ease 0.25s;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
  }
  .header__menu__item__link {
    font-size: 1.375rem;
    height: 4.375rem;
    line-height: 4.6875rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .header__menu__item:hover, .header__menu__item.-active- {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .header__menu__item:hover .header__menu__item__icon, .header__menu__item.-active- .header__menu__item__icon {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .header__menu__item:hover .header__menu__item__icon-category::before, .header__menu__item:hover .header__menu__item__icon-category::after,
  .header__menu__item:hover .header__menu__item__icon-category span, .header__menu__item.-active- .header__menu__item__icon-category::before, .header__menu__item.-active- .header__menu__item__icon-category::after,
  .header__menu__item.-active- .header__menu__item__icon-category span {
    background-color: var(--color-white);
  }
  .header__menu__item:hover .header__menu__item__submenu, .header__menu__item.-active- .header__menu__item__submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu__item.-current- {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .header__menu__item.-current- .header__menu__item__icon {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .header__menu__item.-current- .header__menu__item__icon-category::before, .header__menu__item.-current- .header__menu__item__icon-category::after,
  .header__menu__item.-current- .header__menu__item__icon-category span {
    background-color: var(--color-white);
  }
  .header__menu__item.-active- .header__menu__item__icon-category {
    border-radius: 50%;
    background-color: var(--color-white);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .header__menu__item.-active- .header__menu__item__icon-category::before, .header__menu__item.-active- .header__menu__item__icon-category::after {
    background-color: var(--color-primary);
    width: 0.625rem;
    height: 0.125rem;
  }
  .header__menu__item.-active- .header__menu__item__icon-category::before {
    -webkit-transform: translateY(0.34375rem) translateX(0px) rotate(45deg);
            transform: translateY(0.34375rem) translateX(0px) rotate(45deg);
  }
  .header__menu__item.-active- .header__menu__item__icon-category::after {
    -webkit-transform: translateY(-0.34375rem) translateX(0px) rotate(-45deg);
            transform: translateY(-0.34375rem) translateX(0px) rotate(-45deg);
  }
  .header__menu__item.-active- .header__menu__item__icon-category span {
    opacity: 0;
  }
  .header__menu__item__submenu {
    width: 100%;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0.5625rem 0.625rem 0 rgba(100, 100, 100, 0.25);
            box-shadow: 0 0.5625rem 0.625rem 0 rgba(100, 100, 100, 0.25);
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
    padding: 0.75rem;
    border-radius: 0 0 1.25rem 1.25rem;
  }
  .header__menu__item__submenu__link {
    display: block;
    height: 3.125rem;
    line-height: 3.375rem;
    font-size: 1.25rem;
    border-radius: 0.625rem;
    color: var(--color-black);
    padding-inline: 0.75rem;
    -webkit-transition: background-color ease 0.25s, color ease 0.25s;
    transition: background-color ease 0.25s, color ease 0.25s;
  }
  .header__menu__item__submenu__link:hover, .header__menu__item__submenu__link.-current- {
    color: var(--color-white);
    background-color: var(--color-primary-light);
  }
  .header__menu__item__submenu__link.-current- {
    font-weight: 700;
  }
  .header__nav {
    width: 100%;
    background-color: var(--color-white);
    display: none;
    gap: 0.9375rem;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .header__nav.-active- {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav__categories {
    background-color: var(--color-primary);
    max-width: 35.625rem;
    padding: 1.25rem;
    border-top-right-radius: 1.875rem;
    border-bottom-right-radius: 1.875rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0.4375rem;
  }
  .header__nav__categories__item {
    position: relative;
    border-radius: 0.625rem;
    -webkit-transition: background-color ease 0.25s;
    transition: background-color ease 0.25s;
  }
  .header__nav__categories__item:has(.header__nav__categories__item__link.-active-, .header__nav__categories__item__link:hover) {
    background-color: var(--color-white);
  }
  .header__nav__categories__item:has(.header__nav__categories__item__link.-active-, .header__nav__categories__item__link:hover) .header__nav__categories__item__link {
    color: var(--color-primary);
  }
  .header__nav__categories__item__link {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    width: 20.375rem;
    height: 3.125rem;
    padding-inline: 1.375rem;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: color ease 0.25s;
    transition: color ease 0.25s;
  }
  .header__nav__categories__item__more {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__nav__categories__item__icon-mobile {
    display: none;
  }
  .header__nav__subcategories {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
  .header__nav__subcategories.-active- {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav__subcategories__item__link {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    width: 100%;
    max-width: 16.25rem;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    height: 3.125rem;
    padding-inline: 1.375rem;
    border-radius: 0.625rem;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: background-color ease 0.25s, color ease 0.25s;
    transition: background-color ease 0.25s, color ease 0.25s;
  }
  .header__nav__subcategories__item__link:hover, .header__nav__subcategories__item__link.-active- {
    color: var(--color-white);
    background-color: var(--color-primary);
  }
  .header__nav__banner {
    margin-left: auto;
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
  .header__nav__banner__image {
    display: none;
  }
  .header__nav__banner__image.-active- {
    display: block;
  }
}
@media (min-width: 1000px) and (max-width: 1400px) {
  .header__first {
    padding-top: 0.9375rem;
  }
  .header__second {
    height: 5.625rem;
  }
  .header__second__image {
    max-width: 9.375rem;
    height: auto;
  }
  .header__second::before {
    height: 2.25rem;
  }
  .header__second::after {
    height: 4.6875rem;
  }
  .header__menu__item {
    padding-inline: 1.25rem;
  }
  .header__menu__item__link {
    font-size: 1.25rem;
    height: 3.75rem;
    line-height: 4.0625rem;
  }
}
@media (min-width: 0px) and (max-width: 500px) {
  .header__mobile-location {
    height: 2.125rem;
  }
  .header__mobile-location__text {
    font-size: 0.875rem;
  }
}

.footer {
  background-color: var(--color-gray-800);
  color: var(--color-white);
}
.footer__inset {
  padding-block: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
.footer__header {
  max-width: 23.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
.footer__subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
.footer__subscribe__text {
  font-size: 1.125rem;
  font-weight: 600;
}
.footer__subscribe__form {
  height: 3.125rem;
  border-radius: 1.5625rem;
  background-color: var(--color-white);
  padding: 0.3125rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.footer__subscribe__success {
  position: absolute;
  bottom: -1.875rem;
  left: 1.25rem;
  color: var(--color-success);
  display: none;
}
.footer__subscribe__success.-active- {
  display: block;
}
.footer__subscribe__input {
  width: 100%;
  line-height: 1;
  padding-left: 0.9375rem;
  color: var(--color-gray-800);
  outline: none;
}
.footer__subscribe__button {
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-inline: 1.25rem;
  border-radius: 1.25rem;
  cursor: pointer;
  line-height: 2.6875rem;
  -webkit-transition: background-color ease 0.25s;
  transition: background-color ease 0.25s;
}
.footer__subscribe__button:hover {
  background-color: var(--color-primary-dark);
}
.footer__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 57.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__nav__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 13.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.footer__nav__title__text {
  font-size: 1.5rem;
  font-weight: 600;
}
.footer__nav__title__icon {
  display: none;
}
.footer__nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__nav__link:hover {
  text-decoration: underline;
}
.footer__nav__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
}
.footer__nav__info__link {
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.footer__nav__info__link__icon {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.footer__nav__info__link:hover {
  text-decoration: underline;
}
.footer__nav__info__text {
  line-height: 1.4;
}
.footer__nav__info__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.footer__nav__info__socials__link {
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
}
.footer__nav__info__socials__link:hover {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.footer__bottom {
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
  border-top: 0.0625rem solid #323232;
  padding: 1rem 1.25rem;
}
.footer__up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -4.6875rem;
  right: 1.25rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  cursor: pointer;
  -webkit-transition: background-color ease 0.25s;
  transition: background-color ease 0.25s;
}
.footer__up:hover {
  background-color: var(--color-primary-dark);
}
@media (max-width: 1400px) {
  .footer__inset {
    padding-block: 2.5rem;
  }
}
@media (max-width: 1000px) {
  .footer__inset, .footer__header, .footer__subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__header {
    width: 100%;
    max-width: 36.25rem;
    margin-inline: auto;
    gap: 1.25rem;
  }
  .footer__logo {
    margin-inline: auto;
  }
  .footer__logo img {
    width: 6.25rem;
    height: 3.125rem;
  }
  .footer__subscribe {
    gap: 0.625rem;
  }
  .footer__subscribe__text {
    font-size: 1rem;
    text-align: center;
  }
  .footer__nav {
    max-width: initial;
  }
  .footer__nav__item {
    gap: 0.9375rem;
  }
  .footer__nav__title__text {
    font-size: 1.25rem;
  }
  .footer__nav__links {
    gap: 0.625rem;
  }
}
@media (max-width: 800px) {
  .footer__inset {
    padding-block: 1.875rem;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .footer__nav__item {
    max-width: initial;
    width: 100%;
    gap: 0.3125rem;
  }
  .footer__nav__content {
    display: none;
  }
  .footer__nav__content.-active- {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__nav__links {
    padding-bottom: 0.9375rem;
  }
  .footer__nav__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.25rem;
    min-height: 2.5rem;
    cursor: pointer;
  }
  .footer__nav__title__text {
    font-size: 1.125rem;
  }
  .footer__nav__title__icon {
    display: block;
  }
  .footer__nav__info__link__text {
    font-size: 1rem;
  }
  .footer__up {
    top: -3.125rem;
    width: 2.875rem;
    height: 2.875rem;
  }
  .footer__up img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media (max-width: 500px) {
  .footer__inset {
    padding-block: 1.25rem;
  }
  .footer__up {
    top: -2.75rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .footer__up img {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

.principal_slider {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.principal_slider__list {
  position: relative;
  padding-bottom: 1.5625rem;
}
.principal_slider__item {
  width: 100%;
}
.principal_slider__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  z-index: 10;
  width: 2.8125rem;
  height: 6.5625rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.39375rem rgba(130, 120, 120, 0.25);
          box-shadow: 0 0 0.39375rem rgba(130, 120, 120, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1000px) {
  .principal_slider__arrow {
    width: 2.5rem;
    height: 5rem;
  }
  .principal_slider__arrow.swiper-button-prev {
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .principal_slider__arrow.swiper-button-next {
    right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 500px) {
  .principal_slider__arrow {
    width: 2.5rem;
    height: 3.75rem;
  }
  .principal_slider__arrow.swiper-button-prev {
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .principal_slider__arrow.swiper-button-next {
    right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.principal_slider__arrow img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.principal_slider__arrow.m--right img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.principal_slider__arrow.m--right:hover img {
  -webkit-transform: scale(1.4) rotate(180deg);
          transform: scale(1.4) rotate(180deg);
}
.principal_slider__arrow:hover img {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.principal_slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
}
.principal_slider__pagination .swiper-pagination-bullet {
  background-color: var(--color-gray-400);
  opacity: 1;
  cursor: pointer;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-transition: background-color 0.25s ease, width 0.25s ease, height 0.25s ease;
  transition: background-color 0.25s ease, width 0.25s ease, height 0.25s ease;
}
.principal_slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 1rem;
  height: 1rem;
}

.category_image_menu {
  max-width: 87.5rem;
  overflow-x: auto;
}
.category_image_menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
.category_image_menu__link {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  max-width: 8.125rem;
}
.category_image_menu__link:hover .category_image_menu__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.category_image_menu__link:hover .category_image_menu__title {
  color: var(--color-primary);
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}
.category_image_menu__image {
  margin-inline: auto;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.category_image_menu__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (max-width: 1000px) {
  .category_image_menu__image {
    width: 5rem;
    height: auto;
  }
  .category_image_menu__title {
    font-size: 0.9375rem;
  }
}
@media (max-width: 830px) {
  .category_image_menu__link {
    gap: 0.625rem;
  }
  .category_image_menu__image {
    width: 4.375rem;
    height: auto;
  }
  .category_image_menu__title {
    font-size: 0.875rem;
  }
}
@media (max-width: 520px) {
  .category_image_menu {
    overflow: initial;
    max-width: 25rem;
  }
  .category_image_menu__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem 0.1875rem;
  }
  .category_image_menu__link {
    width: 4.75rem;
  }
  .category_image_menu__image {
    width: 3.75rem;
    height: auto;
  }
  .category_image_menu__title {
    font-size: 0.75rem;
  }
}
@media (max-width: 360px) {
  .category_image_menu__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.promotions_grid__title {
  font-size: 2.1875rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
}
.promotions_grid__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6875rem;
}
.promotions_grid__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.promotions_grid__column picture.fnShowLocation {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.promotions_grid__column picture.fnShowLocation:hover {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
@media (max-width: 800px) {
  .promotions_grid__title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 700px) {
  .promotions_grid__gallery {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.125rem;
  }
  .promotions_grid__column {
    gap: 0.9375rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.5625rem);
            flex: 0 0 calc(50% - 0.5625rem);
  }
}
@media (max-width: 500px) {
  .promotions_grid__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
}

.product_porlet__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
  gap: 0.9375rem;
}
.product_porlet__header__title {
  font-size: 2.1875rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-gray-800);
}
.product_porlet__header__button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 2.1875rem;
  border-radius: 1.125rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding-inline: 1.4375rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.product_porlet__header__button span {
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
.product_porlet__header__button:hover {
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
  background-color: var(--color-primary-dark);
}
.product_porlet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1875rem;
  padding-top: 0.3125rem;
  overflow-x: auto;
  scrollbar-color: transparent transparent;
  /* Firefox */
  scrollbar-width: thin;
  /* Firefox */
}
.product_porlet__list::-webkit-scrollbar {
  height: 8px;
  /* Altura solo para scroll horizontal */
}
.product_porlet__list::-webkit-scrollbar-track {
  background: transparent;
  /* Fondo de la pista del scroll */
}
.product_porlet__list::-webkit-scrollbar-thumb {
  background-color: transparent;
  /* Color del scroll */
  border-radius: 4px;
  border: 1px solid transparent;
}
@media (max-width: 1400px) {
  .product_porlet__list {
    gap: 1.25rem;
  }
}
@media (max-width: 800px) {
  .product_porlet__header {
    margin-bottom: 0.9375rem;
  }
  .product_porlet__header__title {
    font-size: 1.5rem;
  }
  .product_porlet__header__button {
    height: 1.625rem;
    font-size: 0.8125rem;
    padding-inline: 1.125rem;
  }
  .product_porlet__header__button span {
    -webkit-transform: translateY(0.0625rem);
            transform: translateY(0.0625rem);
  }
}
@media (max-width: 500px) {
  .product_porlet__header {
    margin-bottom: 0.625rem;
  }
  .product_porlet__header__title {
    font-size: 1.25rem;
  }
  .product_porlet__list {
    gap: 0.9375rem;
  }
}

.red_banner__card {
  height: 28.125rem;
  border-radius: 1.875rem;
  background-color: var(--color-primary);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.red_banner__card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 15rem;
  height: 16.0625rem;
  background: url("../images/components/red_banner/circles.png") no-repeat center center/cover;
}
.red_banner__picture {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  border-radius: 1.875rem;
  overflow: hidden;
}
.red_banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.red_banner__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4.375rem 15rem 4.375rem 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.red_banner__title {
  color: var(--color-secondary);
  font-size: 3.125rem;
  font-weight: 700;
  max-width: 25.625rem;
}
.red_banner__text {
  color: var(--color-white);
  font-size: 1.5625rem;
  font-weight: 400;
  margin-top: 0.625rem;
  max-width: 25.625rem;
}
.red_banner__button {
  height: 3.125rem;
  border-radius: 1.5625rem;
  margin-top: 1.875rem;
  padding-inline: 1.875rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.red_banner__button:hover {
  background-color: var(--color-white);
}
@media (max-width: 1200px) {
  .red_banner__card::before {
    width: 11.25rem;
    height: 12.0625rem;
  }
  .red_banner__content {
    padding: 3.125rem 11.25rem 3.125rem 3.125rem;
  }
}
@media (max-width: 900px) {
  .red_banner__card {
    border-radius: 1.25rem;
    height: 21.875rem;
  }
  .red_banner__card::before {
    width: 8rem;
    height: 8.5625rem;
  }
  .red_banner__picture {
    -webkit-box-flex: 1.3;
        -ms-flex: 1.3;
            flex: 1.3;
    border-radius: 1.25rem;
  }
  .red_banner__content {
    padding: 1.25rem 6.25rem 1.25rem 2.5rem;
  }
  .red_banner__title {
    font-size: 1.875rem;
    line-height: 1.1;
  }
  .red_banner__text {
    font-size: 1.125rem;
  }
  .red_banner__button {
    height: 2.5rem;
    font-size: 1rem;
    padding-inline: 1.5625rem;
    margin-top: 1.25rem;
  }
}
@media (max-width: 600px) {
  .red_banner__content {
    padding: 1.25rem 3.75rem 1.25rem 1.875rem;
  }
}
@media (max-width: 500px) {
  .red_banner__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 20.625rem;
    margin-inline: auto;
    height: auto;
  }
  .red_banner__card::before {
    width: 6.25rem;
    height: 5.9375rem;
    top: initial;
    bottom: 0;
    background: url("../images/components/red_banner/circles_mobile.png") no-repeat center center/cover;
  }
  .red_banner__image {
    height: 13.125rem;
  }
  .red_banner__content {
    padding: 1.5625rem;
  }
  .red_banner__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .red_banner__text {
    font-size: 1rem;
  }
}

.promotions_horizontal_grid {
  --gap: 1.5625rem;
  --gap2: 0.78125rem;
}
.promotions_horizontal_grid__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gap);
}
.promotions_horizontal_grid__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - var(--gap2));
          flex: 1 1 calc(50% - var(--gap2));
  max-width: calc(50% - var(--gap2));
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.promotions_horizontal_grid__item.m--full {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
}
.promotions_horizontal_grid__item:has(.fnShowLocation) {
  cursor: pointer;
}
.promotions_horizontal_grid__item:has(.fnShowLocation):hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
@media (max-width: 900px) {
  .promotions_horizontal_grid {
    --gap: 1rem;
    --gap2: 0.5rem;
  }
}
@media (max-width: 500px) {
  .promotions_horizontal_grid {
    --gap: 0.625rem;
    --gap2: 0.3125rem;
  }
}

.delivery_banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
  padding-inline: 4.0625rem;
  background-color: #f8f8f8;
  height: 15.625rem;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  border-radius: 1.875rem;
}
.delivery_banner__header {
  max-width: 20.625rem;
}
.delivery_banner__pretitle {
  font-size: 1.5625rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.625rem;
}
.delivery_banner__title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 0.92;
}
.delivery_banner__image {
  max-width: 15.625rem;
}
.delivery_banner__list {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
.delivery_banner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.delivery_banner__item:hover .delivery_banner__item__image {
  -webkit-transform: scale(1.075);
          transform: scale(1.075);
}
.delivery_banner__item__image {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
}
.delivery_banner__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4375rem;
}
.delivery_banner__item__title {
  font-size: 1.875rem;
  font-weight: 700;
}
.delivery_banner__item__button {
  line-height: 1;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  height: 2.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 1.25rem;
  padding-inline: 1.25rem;
  border: 0.0625rem solid var(--color-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -webkit-transition: background-color ease 0.25s, color ease 0.25s;
  transition: background-color ease 0.25s, color ease 0.25s;
}
.delivery_banner__item__button img {
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.delivery_banner__item__button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.delivery_banner__item__button:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%);
          filter: brightness(0) saturate(100%) invert(100%);
}
@media (max-width: 1300px) {
  .delivery_banner__content {
    padding-inline: 1.875rem;
    margin: 0;
  }
  .delivery_banner__header {
    max-width: 18.75rem;
  }
  .delivery_banner__pretitle {
    font-size: 1.375rem;
  }
  .delivery_banner__title {
    font-size: 2.625rem;
  }
  .delivery_banner__image {
    max-width: 12.5rem;
  }
  .delivery_banner__list {
    gap: 1.25rem;
  }
  .delivery_banner__item__image {
    max-width: 7.5rem;
  }
}
@media (max-width: 1024px) {
  .delivery_banner__content {
    height: 14.375rem;
    border-radius: 1.25rem;
    padding-inline: 3.75rem;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 3.125rem;
  }
  .delivery_banner__image {
    display: none;
  }
  .delivery_banner__header {
    max-width: 13.125rem;
  }
  .delivery_banner__pretitle {
    font-size: 1rem;
  }
  .delivery_banner__title {
    font-size: 1.875rem;
  }
  .delivery_banner__list {
    gap: 2.8125rem;
  }
  .delivery_banner__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .delivery_banner__item__image {
    max-width: 5.625rem;
  }
  .delivery_banner__item__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
  }
  .delivery_banner__item__title {
    font-size: 1.125rem;
  }
  .delivery_banner__item__button {
    height: 2.125rem;
    padding-inline: 1.125rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 700px) {
  .delivery_banner__content {
    padding-inline: 1.875rem;
    gap: 1.25rem;
  }
  .delivery_banner__list {
    gap: 1.25rem;
  }
}
@media (max-width: 500px) {
  .delivery_banner__content {
    padding-inline: 1.25rem;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5625rem;
    height: auto;
  }
  .delivery_banner__list {
    gap: 1.25rem;
  }
  .delivery_banner__header {
    max-width: initial;
    text-align: center;
  }
  .delivery_banner__pretitle {
    font-size: 0.875rem;
  }
  .delivery_banner__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 370px) {
  .delivery_banner__list {
    gap: 0.625rem;
  }
  .delivery_banner__item__button {
    padding-inline: 0.9375rem;
  }
}

.product_location {
  display: none;
  padding: 1.875rem;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--index-product-location);
  overflow: auto;
  /* Box - base */
  /* Box - Detalle de producto */
  /* Box - Detalle de producto */
  /* Box - Confirmar dirección */
  /* Box - Confirmar dirección */
  /* Box - Confirmar dirección */
}
.product_location.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_location__content {
  position: relative;
  background-color: var(--color-white);
  border-radius: 1.875rem;
  padding: 2.8125rem;
  margin: auto;
  width: 100%;
  max-width: 37.5rem;
  display: none;
}
.product_location__content.-active- {
  display: block;
}
.product_location__close-button {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
}
.product_location__close-button::before, .product_location__close-button::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background-color: var(--color-gray-800);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: background-color ease 0.25s;
  transition: background-color ease 0.25s;
}
.product_location__close-button::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.product_location__close-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.product_location__close-button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.product_location__close-button:hover::before, .product_location__close-button:hover::after {
  background-color: var(--color-primary);
}
.product_location__back-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.product_location__back-button__icon {
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
@media (max-width: 800px) {
  .product_location {
    padding: 1.5625rem;
  }
  .product_location__content {
    padding: 2.5rem;
    border-radius: 1.25rem;
  }
  .product_location__close-button {
    top: 1.25rem;
    right: 1.25rem;
  }
  .product_location__back-button {
    top: 1.25rem;
    left: 1.25rem;
    font-size: 1.25rem;
  }
}
@media (max-width: 500px) {
  .product_location {
    padding: 1.25rem;
  }
  .product_location__content {
    padding: 2.8125rem 1.25rem 1.25rem;
    border-radius: 0.9375rem;
  }
  .product_location__back-button {
    gap: 0.625rem;
    font-size: 1rem;
  }
}
.product_location__product {
  max-width: 56.25rem;
  display: none;
  gap: 2.5rem;
}
.product_location__product.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_location__product__image {
  border: 0.0625rem solid var(--color-gray-700);
  border-radius: 0.625rem;
  min-width: 11.25rem;
}
.product_location__product__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  padding-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
.product_location__product__pretitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}
.product_location__product__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}
.product_location__product__price__discounted, .product_location__product__price__normal {
  font-size: 1.5rem;
  color: var(--color-gray-800);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.product_location__product__price__discounted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}
.product_location__product__price__discounted__tag {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  height: 1.5rem;
  border-radius: 0.75rem;
  padding-inline: 0.9375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
}
.product_location__product__price__discounted__tag span {
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.product_location__product__price__discounted {
  color: var(--color-primary);
}
.product_location__product__price__old {
  display: block;
  font-size: 1.125rem;
  text-decoration: line-through;
  margin-top: 0.3125rem;
}
.product_location__product__available {
  display: none;
  margin-top: auto;
}
.product_location__product__available.-active- {
  display: block;
}
.product_location__product__available__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.375rem 0;
}
.product_location__product__available__location {
  background-color: var(--color-primary);
  border-radius: 0.9375rem;
  padding: 1rem;
  min-height: 4.125rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
}
.product_location__product__available__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-white);
  margin-right: auto;
}
.product_location__product__available__text__title {
  font-size: 1rem;
  font-weight: 700;
}
.product_location__product__available__text__distance {
  font-size: 0.875rem;
}
.product_location__product__available__button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: var(--color-white);
  height: 1.875rem;
  border-radius: 0.9375rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color ease 0.25s, -webkit-transform ease 0.25s;
  transition: background-color ease 0.25s, -webkit-transform ease 0.25s;
  transition: background-color ease 0.25s, transform ease 0.25s;
  transition: background-color ease 0.25s, transform ease 0.25s, -webkit-transform ease 0.25s;
}
.product_location__product__available__button:hover {
  background-color: var(--color-secondary);
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
@media (max-width: 800px) {
  .product_location__product {
    gap: 1.25rem;
    padding: 1.875rem;
  }
  .product_location__product__title {
    font-size: 1.5625rem;
  }
  .product_location__product__price__discounted, .product_location__product__price__normal {
    font-size: 1.375rem;
  }
  .product_location__product__price__old {
    font-size: 1.0625rem;
  }
}
@media (max-width: 700px) {
  .product_location__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 31.25rem;
  }
  .product_location__product__image {
    margin-inline: auto;
  }
  .product_location__product__content {
    padding-top: 0;
  }
}
@media (max-width: 500px) {
  .product_location__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 31.25rem;
  }
  .product_location__product__image {
    max-width: 17.8125rem;
    min-width: initial;
    width: 100%;
  }
  .product_location__product__title {
    font-size: 1.25rem;
  }
  .product_location__product__price__discounted, .product_location__product__price__normal {
    font-size: 1.25rem;
  }
  .product_location__product__price__discounted__tag {
    height: 1.25rem;
    font-size: 0.8125rem;
    padding-inline: 0.8125rem;
  }
  .product_location__product__price__old {
    font-size: 0.875rem;
  }
  .product_location__product__available__title {
    font-size: 0.9375rem;
    margin: 0.625rem 0 0.25rem 0;
  }
  .product_location__product__available__location {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0.75rem;
  }
  .product_location__product__available__break {
    display: block;
    width: 100%;
  }
  .product_location__product__available__button {
    margin-left: 1.5625rem;
  }
}
.product_location__product_address {
  max-width: 56.25rem;
  display: none;
  gap: 1.25rem;
}
.product_location__product_address.-active- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product_location__product_address__content {
  padding-top: 1.875rem;
  max-width: 18.75rem;
}
.product_location__product_address__content .product_location__product_address__change {
  display: none;
}
.product_location__product_address__timers, .product_location__product_address__open, .product_location__product_address__distance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.product_location__product_address__timers {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
}
.product_location__product_address__timers img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.product_location__product_address__open {
  gap: 0.3125rem;
  background-color: #DFF0D6;
  padding-inline: 0.75rem;
  height: 1.5625rem;
  border-radius: 0.8125rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #407E1D;
}
.product_location__product_address__open span {
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.product_location__product_address__distance {
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.product_location__product_address__distance span {
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.product_location__product_address__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.product_location__product_address__title__number {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  font-size: 1rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product_location__product_address__title__number span {
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.product_location__product_address__location {
  margin-bottom: 0.625rem;
  font-size: 1rem;
}
.product_location__product_address__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  color: var(--color-gray-600);
  margin-bottom: 1.25rem;
}
.product_location__product_address__list__item__title {
  font-weight: 700;
}
.product_location__product_address__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product_location__product_address__share__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  height: 2.5rem;
  border-radius: 1.25rem;
  padding-inline: 1.125rem;
  border: 0.0625rem solid var(--color-gray-800);
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
}
.product_location__product_address__share__button span {
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
.product_location__product_address__share__button:hover {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.product_location__product_address__map {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  padding-top: 1.25rem;
}
.product_location__product_address__canva {
  height: 17.8125rem;
  min-width: 18.75rem;
  position: relative;
  border-radius: 0.625rem;
  background-color: var(--color-gray-600);
}
.product_location__product_address__change {
  margin-inline: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.product_location__product_address__change:hover {
  text-decoration: none;
}
@media (max-width: 680px) {
  .product_location__product_address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0.9375rem;
  }
  .product_location__product_address__content {
    padding-top: 0;
  }
  .product_location__product_address__content .product_location__product_address__change {
    display: block;
    font-size: 0.8125rem;
    margin-top: 1.375rem;
  }
  .product_location__product_address__title {
    font-size: 1.25rem;
    gap: 0.4375rem;
  }
  .product_location__product_address__title__number {
    width: 1.375rem;
    height: 1.375rem;
    font-size: 0.75rem;
    -webkit-transform: translateY(-0.0625rem);
            transform: translateY(-0.0625rem);
  }
  .product_location__product_address__location, .product_location__product_address__list {
    font-size: 0.875rem;
  }
  .product_location__product_address__share__button {
    height: 2.1875rem;
    font-size: 0.875rem;
    gap: 0.25rem;
    padding-inline: 0.875rem;
  }
  .product_location__product_address__share__button__icon {
    max-height: 0.875rem;
    width: auto;
  }
  .product_location__product_address__map .product_location__product_address__change {
    display: none;
  }
  .product_location__product_address__canva {
    min-width: initial;
    height: 13.75rem;
  }
}
.product_location__confirm_address {
  max-width: 44.375rem;
}
.product_location__confirm_address__text {
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.6875rem;
}
.product_location__confirm_address__text__icon {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.product_location__confirm_address__map {
  height: 14.375rem;
  margin-bottom: 1.875rem;
  border-radius: 0.625rem;
}
.product_location__confirm_address__button {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  max-width: 13.75rem;
  height: 2.5rem;
  padding-inline: 1.5625rem;
  border-radius: 1.25rem;
  margin-inline: auto;
  cursor: pointer;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: backgrund-color ease 0.25s, -webkit-transform ease 0.25s;
  transition: backgrund-color ease 0.25s, -webkit-transform ease 0.25s;
  transition: backgrund-color ease 0.25s, transform ease 0.25s;
  transition: backgrund-color ease 0.25s, transform ease 0.25s, -webkit-transform ease 0.25s;
}
.product_location__confirm_address__button span {
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
.product_location__confirm_address__button:hover {
  background-color: var(--color-primary-dark);
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
.product_location__confirm_address__change {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
}
.product_location__confirm_address__change:hover {
  text-decoration: none;
}
@media (max-width: 500px) {
  .product_location__confirm_address__text {
    padding-top: 0.9375rem;
    font-size: 0.875rem;
    gap: 0.625rem;
    line-height: 1.4;
  }
  .product_location__confirm_address__text__icon {
    width: 0.75rem;
    height: 0.9375rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .product_location__confirm_address__map {
    height: 11.25rem;
    margin-bottom: 1.25rem;
  }
}
.product_location__set_address {
  max-width: 37.5rem;
}
.product_location__set_address__content {
  padding-top: 0.9375rem;
  max-width: 26.875rem;
  margin-inline: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
.product_location__set_address__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.product_location__set_address__text {
  font-size: 1rem;
}
.product_location__set_address__button {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  height: 2.5rem;
  padding-inline: 1.5625rem;
  border-radius: 1.25rem;
  margin-inline: auto;
  cursor: pointer;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: backgrund-color ease 0.25s, -webkit-transform ease 0.25s;
  transition: backgrund-color ease 0.25s, -webkit-transform ease 0.25s;
  transition: backgrund-color ease 0.25s, transform ease 0.25s;
  transition: backgrund-color ease 0.25s, transform ease 0.25s, -webkit-transform ease 0.25s;
}
.product_location__set_address__button span {
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
.product_location__set_address__button:hover {
  background-color: var(--color-primary-dark);
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
.product_location__set_address__or {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.product_location__set_address__or::before, .product_location__set_address__or::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  height: 0.0625rem;
  background-color: var(--color-black);
  -webkit-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
}
.product_location__set_address__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3125rem;
  width: 100%;
}
.product_location__set_address__label {
  font-size: 0.8125rem;
  font-weight: 500;
}
.product_location__set_address__input {
  outline: none;
  background-color: var(--color-white);
  border-radius: 0.3125rem;
  height: 2.5rem;
  width: 100%;
  border: 0.0625rem solid #5F6368;
  padding-inline: 0.9375rem;
  -webkit-transition: border-color ease 0.25s;
  transition: border-color ease 0.25s;
}
.product_location__set_address__input:hover {
  border-color: var(--color-primary);
}
@media (max-width: 500px) {
  .product_location__set_address__content {
    padding-top: 0.625rem;
    gap: 0.625rem;
  }
  .product_location__set_address__title {
    font-size: 1.25rem;
  }
  .product_location__set_address__text {
    font-size: 0.9375rem;
  }
}
.product_location__refresh {
  max-width: 37.5rem;
  padding: 3.125rem;
}
.product_location__refresh__content {
  max-width: 26.875rem;
  margin-inline: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
.product_location__refresh__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.product_location__refresh__text {
  font-size: 1rem;
}
.product_location__refresh__text strong {
  font-weight: 600;
}
.product_location__refresh__icon {
  margin-inline: auto;
}
.product_location__refresh__loading {
  overflow: hidden;
  border-radius: 0.1875rem;
  height: 0.375rem;
  width: 12.5rem;
  max-width: 100%;
  margin-inline: auto;
  background-color: var(--color-gray-500);
}
.product_location__refresh__loading__bar {
  border-radius: 0.1875rem;
  height: 100%;
  width: 0;
  background-color: var(--color-primary);
}
.product_location__refresh.-active- .product_location__refresh__loading__bar {
  -webkit-animation: loading linear 4s forwards;
          animation: loading linear 4s forwards;
}
@-webkit-keyframes loading {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes loading {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .product_location__refresh {
    padding: 3.125rem 2.5rem;
  }
  .product_location__refresh__content {
    gap: 0.625rem;
  }
  .product_location__refresh__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 400px) {
  .product_location__refresh {
    padding: 2.5rem 1.875rem;
  }
}

.products__title {
  font-size: 2.75rem;
  line-height: 3.125rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.products__title::before {
  content: "";
  display: block;
  height: 2.875rem;
  width: 0.375rem;
  background-color: var(--color-primary);
}
.products__categories {
  overflow: auto;
  margin-bottom: 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
  /* Chrome, Edge y Safari */
}
.products__categories::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.products__categories::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.products__categories::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.products__categories::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.products__categories.m--all {
  display: none;
}
.products__categories__list {
  height: auto;
  padding-bottom: 0.1875rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.875rem;
}
.products__categories__link {
  font-size: 1.125rem;
  height: 3.125rem;
  line-height: 3.125rem;
  border-radius: 1.5625rem;
  padding-inline: 1.5625rem;
  color: var(--color-primary);
  border: 0.125rem solid var(--color-primary);
  font-weight: 500;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.products__categories__link:hover, .products__categories__link.-active- {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.products__sidebar {
  max-width: 21rem;
}
.products__sidebar__nav {
  display: none;
}
.products__sidebar__banner.fnShowLocation {
  cursor: pointer;
}
.products__filters {
  margin-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #EAEAEA;
  padding-bottom: 1.25rem;
}
.products__filters__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.products__filters__list {
  padding: 0.9375rem;
  border-top: 0.0625rem solid #EAEAEA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8125rem;
}
.products__filters__list__title {
  font-size: 1.25rem;
  font-weight: 700;
}
.products__filters__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.products__filters__list__item__input {
  display: none;
}
.products__filters__list__item__input:checked + .products__filters__list__item__circle::after {
  opacity: 1;
}
.products__filters__list__item__circle {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 0.125rem solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products__filters__list__item__circle::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.products__filters__list__item__text {
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
  -webkit-transition: color ease 0.25s;
  transition: color ease 0.25s;
}
.products__filters__list__item:hover .products__filters__list__item__text {
  color: var(--color-primary);
}
.products__filters__cleaner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  background-color: var(--color-gray-400);
  height: 1.875rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0.9375rem;
  padding-inline: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  margin-inline: auto;
  margin-top: 0.625rem;
  -webkit-transition: color ease 0.25s, -webkit-transform ease 0.25s;
  transition: color ease 0.25s, -webkit-transform ease 0.25s;
  transition: color ease 0.25s, transform ease 0.25s;
  transition: color ease 0.25s, transform ease 0.25s, -webkit-transform ease 0.25s;
}
.products__filters__cleaner:hover {
  color: var(--color-gray-800);
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
}
.products__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.products__list__banner {
  display: none;
}
.products__list__header {
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}
.products__list__counter {
  color: #000;
}
.products__list__counter strong {
  font-weight: 700;
}
.products__list__order {
  height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid #5F6368;
  padding-inline: 1rem;
  position: relative;
  width: 100%;
  max-width: 15.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
}
.products__list__order__select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.products__list__order__text {
  color: #000;
  white-space: nowrap;
  /* No permite salto de línea */
  overflow: hidden;
  /* Oculta el texto que se sale */
  text-overflow: ellipsis;
  /* Muestra los "..." al cortar */
  width: 12.5rem;
  line-height: 2.5rem;
  height: 100%;
}
.products__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6875rem;
}
.products__grid .ui__product-card.-hidden- {
  display: none;
}
.products__grid > .ui__product-card:nth-child(-n+9) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.products__grid > .ui__product-card:nth-child(n+10) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.products__grid__banner {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.products__grid__banner.fnShowLocation {
  cursor: pointer;
}
.products__grid__banner img {
  width: 100%;
}
.products__grid:not(.-all-) .ui__product-card:nth-of-type(n+17) {
  display: none;
}
.products__more {
  margin: 2.5rem auto 0;
  color: var(--color-primary);
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.products__more__icon {
  -webkit-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
}
.products__more.-all- {
  display: none;
}
.products__more:hover {
  text-decoration: underline;
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.products__empty {
  background-color: var(--color-gray-100);
  border-radius: 1.25rem;
  padding: 1.25rem;
  width: 100%;
  height: 18.75rem;
  text-align: center;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.products__grid.-hidden-, .products__more.-hidden-, .products__empty.-hidden- {
  display: none;
}
@media (max-width: 1400px) {
  .products__title {
    font-size: 2.25rem;
    line-height: 2.625rem;
    margin-bottom: 1.25rem;
    gap: 0.9375rem;
  }
  .products__title::before {
    height: 2.25rem;
  }
  .products__categories {
    margin-bottom: 2.1875rem;
  }
  .products__categories__link {
    height: 2.8125rem;
    line-height: 2.8125rem;
    padding-inline: 1.375rem;
  }
  .products__sidebar {
    max-width: 15.625rem;
  }
}
@media (max-width: 1200px) {
  .products__grid > .ui__product-card:nth-child(-n+7) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .products__grid > .ui__product-card:nth-child(n+8) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .products__grid:not(.-all-) .ui__product-card:nth-of-type(n+16) {
    display: none;
  }
}
@media (max-width: 900px) {
  .products__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .products__categories {
    margin-bottom: 1.25rem;
  }
  .products__sidebar {
    max-width: initial;
    position: sticky;
    top: var(--header-mobile-height);
    z-index: 10;
    background-color: var(--color-white);
  }
  .products__sidebar__nav {
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    border-block: 0.0625rem solid var(--color-gray-400);
    background-color: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .products__sidebar__nav__break {
    display: block;
    width: 0.0625rem;
    background-color: var(--color-gray-400);
    margin-inline: 1.25rem;
  }
  .products__sidebar__nav__select {
    width: calc(50% - 1.28125rem);
    height: 2.5rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
  }
  .products__sidebar__nav__select__select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .products__sidebar__nav__select__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2.5rem;
    height: 100%;
  }
  .products__sidebar__nav__select__icon-select {
    margin-left: auto;
  }
  .products__sidebar__banner {
    display: none;
  }
  .products__filters {
    display: none;
    margin: 0;
    padding-block: 1.25rem;
    border: 0;
  }
  .products__filters.-active- {
    display: block;
  }
  .products__filters__title {
    display: none;
  }
  .products__filters__list {
    padding: 0;
    border-top: 0;
  }
  .products__filters__list__title {
    display: none;
  }
  .products__list__banner {
    display: block;
    margin-bottom: 1.25rem;
  }
  .products__list__banner img {
    width: 100%;
  }
  .products__list__order {
    display: none;
  }
  .products__grid > .ui__product-card:nth-child(-n+9) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .products__grid > .ui__product-card:nth-child(n+10) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .products__grid:not(.-all-) .ui__product-card:nth-of-type(n+13) {
    display: none;
  }
}
@media (max-width: 800px) {
  .products__title {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 0.9375rem;
  }
  .products__title::before {
    height: 2rem;
  }
  .products__categories {
    margin-bottom: 1.875rem;
  }
  .products__categories__list {
    gap: 0.625rem;
  }
  .products__categories__link {
    font-size: 1.0625rem;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }
  .products__list__header, .products__list__banner {
    margin-bottom: 0.9375rem;
  }
  .products__grid > .ui__product-card:nth-child(-n+9) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .products__grid > .ui__product-card:nth-child(n+10) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .products__grid:not(.-all-) .ui__product-card:nth-of-type(n+13) {
    display: none;
  }
  .products__empty {
    border-radius: 0.9375rem;
    height: 15rem;
    font-size: 1.0625rem;
  }
}
@media (max-width: 700px) {
  .products__categories {
    margin-bottom: 1.5625rem;
  }
}
@media (max-width: 600px) {
  .products__content {
    gap: 0.9375rem;
  }
  .products__categories {
    margin-bottom: 1.25rem;
  }
  .products__sidebar__nav__break {
    margin-inline: 0.625rem;
  }
  .products__sidebar__nav__select {
    height: 2.1875rem;
    gap: 0.4375rem;
    width: calc(50% - 0.65625rem);
  }
  .products__sidebar__nav__select__text {
    font-size: 0.875rem;
  }
  .products__sidebar__nav__select__icon {
    height: 0.875rem;
    -webkit-transform: translateY(-0.0625rem);
            transform: translateY(-0.0625rem);
  }
  .products__filters {
    padding-block: 0.9375rem;
  }
  .products__filters__list {
    gap: 0.625rem;
  }
  .products__list__header, .products__list__header {
    margin-bottom: 0.625rem;
  }
  .products__list__counter {
    font-size: 0.9375rem;
  }
  .products__grid > .ui__product-card:nth-child(-n+7) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .products__grid > .ui__product-card:nth-child(n+8) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .products__grid:not(.-all-) .ui__product-card:nth-of-type(n+13) {
    display: none;
  }
  .products__empty {
    border-radius: 0.625rem;
    height: 11.25rem;
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .products__title {
    font-size: 1.75rem;
    line-height: 1.75rem;
    gap: 0.625rem;
  }
  .products__title::before {
    height: 1.75rem;
  }
  .products__categories {
    margin-bottom: 0.9375rem;
  }
  .products__categories__link {
    font-size: 1rem;
    height: 2.125rem;
    line-height: 2.125rem;
    padding-inline: 1.25rem;
  }
}
@media (max-width: 420px) {
  .products__title {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
    margin-bottom: 0.625rem;
  }
  .products__title::before {
    height: 1.5625rem;
  }
  .products__categories {
    margin-bottom: 0.625rem;
  }
  .products__categories__list {
    gap: 0.375rem;
  }
  .products__categories__link {
    font-size: 0.9375rem;
    height: 1.875rem;
    line-height: 1.875rem;
    padding-inline: 1.0625rem;
  }
}

.stores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
.stores__banner {
  width: 100%;
  height: 18.75rem;
  border-radius: 1.5625rem;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stores__banner__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.stores__banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stores__banner__title {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 82.5rem;
  padding-inline: 2.5rem;
  color: var(--color-white);
  font-size: 2.8125rem;
}
.stores__banner__title__light {
  font-weight: 400;
  display: block;
}
.stores__banner__title__bold {
  font-weight: 700;
}
@media (max-width: 1400px) {
  .stores__banner {
    height: 17.5rem;
  }
  .stores__banner__title {
    font-size: 2.375rem;
    padding-inline: 2.1875rem;
  }
}
@media (max-width: 900px) {
  .stores__banner {
    height: 15.625rem;
    border-radius: 1.25rem;
  }
  .stores__banner__title {
    font-size: 1.875rem;
    padding-inline: 1.875rem;
  }
}
@media (max-width: 800px) {
  .stores__banner {
    height: 13.75rem;
  }
}
@media (max-width: 600px) {
  .stores__banner {
    height: 12.5rem;
    border-radius: 0.9375rem;
  }
  .stores__banner__title {
    font-size: 1.625rem;
    padding-inline: 1.25rem;
  }
}
@media (max-width: 500px) {
  .stores__banner {
    height: 10.625rem;
  }
  .stores__banner__title {
    font-size: 1.4375rem;
  }
}
@media (max-width: 400px) {
  .stores__banner {
    height: 10rem;
    border-radius: 0.625rem;
  }
  .stores__banner__title {
    font-size: 1.375rem;
  }
}
.stores__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
}
.stores__label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4375rem;
  max-width: 13.75rem;
}
.stores__label.m--search {
  max-width: 28.75rem;
}
.stores__label__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1;
}
.stores__select {
  height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid var(--color-gray-650);
  padding-inline: 1rem;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
}
.stores__select__select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.stores__select__input {
  width: 100%;
  height: 100%;
  line-height: 2.5rem;
  outline: none;
}
.stores__select__text {
  color: #000;
  white-space: nowrap;
  /* No permite salto de línea */
  overflow: hidden;
  /* Oculta el texto que se sale */
  text-overflow: ellipsis;
  /* Muestra los "..." al cortar */
  line-height: 2.5rem;
  height: 100%;
}
.stores__checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  margin-block: auto 0.375rem;
}
.stores__checked__box {
  width: 3.375rem;
  height: 1.875rem;
  border-radius: 0.9375rem;
  background-color: #979797;
  padding: 0.25rem 0.3125rem;
  cursor: pointer;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.stores__checked__box:has(input:checked) {
  background-color: #61B432;
}
.stores__checked__box:has(input:checked)::after {
  -webkit-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}
.stores__checked__box input {
  display: none;
}
.stores__checked__box::after {
  content: "";
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-white);
  margin-inline: auto;
  -webkit-transform: translateX(-0.75rem);
          transform: translateX(-0.75rem);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.stores__checked__text {
  font-weight: 500;
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
.stores__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 37.5rem;
}
.stores__left {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 31.25rem;
  padding: 1.875rem;
  background-color: var(--color-gray-600);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
  /* Chrome, Edge y Safari */
}
.stores__left::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.stores__left::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.stores__left::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.stores__left::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.stores__left.m--all {
  display: none;
}
.stores__title {
  color: var(--color-white);
  margin-bottom: 0.9375rem;
}
.stores__title__big {
  font-size: 1.5rem;
  display: block;
  font-weight: 600;
}
.stores__title__text {
  font-size: 1rem;
}
.stores__title__text span {
  font-weight: 700;
}
.stores__list {
  counter-reset: store-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.stores__list__item {
  background-color: var(--color-white);
  padding: 1.25rem;
  border-radius: 1.875rem;
  counter-increment: store-counter;
  display: none;
}
.stores__list__item.-active- {
  display: block;
}
.stores__list__item .product_location__product_address__change {
  display: none;
}
.stores__list__timers, .stores__list__open, .stores__list__distance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.stores__list__timers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
}
.stores__list__timers img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.stores__list__open {
  gap: 0.3125rem;
  padding-inline: 0.75rem;
  height: 1.5625rem;
  border-radius: 0.8125rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.stores__list__open span {
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.stores__list__open.m--green {
  background-color: #DFF0D6;
  color: #407E1D;
}
.stores__list__open.m--orange {
  background-color: rgba(255, 150, 69, 0.349);
  color: #DA6811;
}
.stores__list__open.m--red {
  background-color: rgba(208, 0, 27, 0.251);
  color: #D0001B;
}
.stores__list__distance {
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.stores__list__distance span {
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.stores__list__title {
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.stores__list__title__number {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  font-size: 1rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.stores__list__title__number::before {
  content: counter(store-counter);
  -webkit-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}
.stores__list__location {
  margin-bottom: 0.625rem;
  font-size: 1rem;
}
.stores__list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  color: var(--color-gray-600);
  margin-bottom: 1.25rem;
}
.stores__list__list__item__title {
  font-weight: 700;
}
.stores__list__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.stores__list__share__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  height: 2.5rem;
  border-radius: 1.25rem;
  padding-inline: 1.125rem;
  border: 0.0625rem solid var(--color-gray-800);
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
}
.stores__list__share__button.m--red {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.stores__list__share__button.m--share {
  display: none;
}
.stores__list__share__button span {
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
.stores__list__share__button:hover {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}
.stores__map {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .stores__grid {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stores__left {
    width: calc(100% + 2.5rem);
    background-color: var(--color-gray-400);
    padding: 1.5625rem;
    margin-left: -1.25rem;
  }
  .stores__left.m--all {
    display: block;
    background-color: var(--color-white);
  }
  .stores__title {
    color: var(--color-gray-800);
  }
  .stores__title__big {
    font-size: 1.5rem;
  }
  .stores__title__text {
    font-size: 1rem;
  }
  .stores__list {
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .stores__list__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 17.5rem;
    padding: 0.9375rem;
    border-radius: 0.9375rem;
  }
  .stores__list__distance {
    font-size: 0.75rem;
    gap: 0.1875rem;
  }
  .stores__list__distance span {
    -webkit-transform: translateY(0.0625rem) scale(0.9);
            transform: translateY(0.0625rem) scale(0.9);
  }
  .stores__list__title {
    font-size: 1.25rem;
    gap: 0.4375rem;
  }
  .stores__list__title__number {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    font-size: 0.875rem;
  }
  .stores__list__location, .stores__list__list {
    font-size: 0.875rem;
  }
  .stores__list__share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
  }
  .stores__list__share__button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stores__list__share__button.m--share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .stores__map {
    width: calc(100% + 2.5rem);
    aspect-ratio: 16/9;
    margin-left: -1.25rem;
    min-height: 15rem;
  }
}
@media (max-width: 700px) {
  .stores__label {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: initial;
    width: calc(50% - 0.3125rem);
  }
  .stores__form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem;
  }
}
.information_card__inset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.information_card__image {
  border-radius: 1.25rem;
  margin-bottom: 0.9375rem;
}
.information_card__title {
  font-size: 2.1875rem;
  font-weight: 700;
}
.information_card__content {
  font-size: 1.125rem;
  line-height: 1.4;
}
.information_card__content strong {
  font-weight: 700;
}
@media (max-width: 800px) {
  .information_card__inset {
    gap: 0.9375rem;
  }
  .information_card__image {
    border-radius: 0.9375rem;
    margin-bottom: 0.625rem;
  }
  .information_card__title {
    font-size: 1.5rem;
  }
  .information_card__content {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .information_card__inset {
    gap: 0.625rem;
  }
  .information_card__image {
    border-radius: 0.625rem;
  }
  .information_card__title {
    font-size: 1.25rem;
  }
  .information_card__content {
    font-size: 0.9375rem;
  }
}

.about-section {
  overflow-x: hidden;
}
.about-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
.about-section__row:last-child {
  margin-bottom: 0;
}
.about-section__row--reversed {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .about-section__row {
    gap: 1.875rem;
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1024px) {
  .about-section__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    margin-bottom: 5rem;
  }
  .about-section__row--reversed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.about-section__image-wrapper--left {
  padding-right: 1.25rem;
}
.about-section__image-wrapper--left img {
  border-radius: 0 1.125rem 1.125rem 0;
}
@media (min-width: 768px) {
  .about-section__image-wrapper--left {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .about-section__image-wrapper--left {
    padding-right: 0;
  }
}
.about-section__image-wrapper--right {
  padding-left: 1.25rem;
}
.about-section__image-wrapper--right img {
  border-radius: 1.125rem 0 0 1.125rem;
}
@media (min-width: 768px) {
  .about-section__image-wrapper--right {
    padding-left: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .about-section__image-wrapper--right {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .about-section__image-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: auto;
    position: relative;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    height: 500px !important;
  }
  .about-section__image-wrapper--left {
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
  }
  .about-section__image-wrapper--right {
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50%);
  }
}
.about-section__image {
  width: 100%;
}
@media (min-width: 1024px) {
  .about-section__image {
    height: 500px;
  }
}
@media (min-width: 768px) {
  .about-section__content {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .about-section__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.about-section__text-wrapper {
  text-align: left;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .about-section__text-wrapper {
    max-width: 37.5rem;
    margin: 0;
  }
  .about-section__row--reversed .about-section__text-wrapper {
    margin-left: auto;
  }
}
.about-section__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-800);
}
@media (min-width: 768px) {
  .about-section__title {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .about-section__title {
    font-size: 2.1875rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
}
.about-section__paragraph {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}
.about-section__paragraph:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about-section__paragraph {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
}

.mission-vision {
  background-color: var(--color-gray-400);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mission-vision__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .mission-vision__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .mission-vision__content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.mission-vision__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mission-vision__icon-wrapper {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  z-index: 10;
}
@media (min-width: 768px) {
  .mission-vision__icon-wrapper {
    width: 4.375rem;
    height: 4.375rem;
    margin-bottom: 1.5625rem;
  }
}
@media (min-width: 1024px) {
  .mission-vision__icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.875rem;
  }
}
.mission-vision__text-wrapper {
  max-width: 320px;
  max-height: 240px;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  margin-top: -30px;
  padding: 4.375rem 1.5625rem;
  text-align: center;
  font-family: "Amino", sans-serif;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .mission-vision__text-wrapper {
    width: 21.25rem;
    height: 13.75rem;
    margin-top: -60px;
    padding: 3.75rem 3.125rem;
  }
}
@media (min-width: 1024px) {
  .mission-vision__text-wrapper {
    width: 28.125rem;
    height: 15.625rem;
    margin-top: -70px;
    padding: 3.75rem 1.5625rem;
  }
}
.mission-vision__icon {
  width: 1.875rem;
  height: 1.875rem;
  fill: var(--color-white);
}
@media (min-width: 768px) {
  .mission-vision__icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
@media (min-width: 1024px) {
  .mission-vision__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.mission-vision__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .mission-vision__title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .mission-vision__title {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }
}
.mission-vision__description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .mission-vision__description {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
@media (min-width: 1024px) {
  .mission-vision__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.values-slider__header {
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .values-slider__header {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1024px) {
  .values-slider__header {
    margin-bottom: 3.75rem;
  }
}
.values-slider__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .values-slider__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .values-slider__title {
    font-size: 2.1875rem;
    margin-bottom: 1.5rem;
  }
}
.values-slider__subtitle {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-black);
  max-width: 37.5rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .values-slider__subtitle {
    font-size: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .values-slider__subtitle {
    max-width: 56.25rem;
  }
}
.values-slider__wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .values-slider__wrapper {
    padding: 0 3.75rem;
  }
}
.values-slider__swiper {
  position: relative;
  overflow: hidden;
  max-width: 18.75rem;
}
@media (min-width: 768px) {
  .values-slider__swiper {
    max-width: 100%;
  }
}
@media (min-width: 800px) {
  .values-slider__swiper {
    max-width: 38.75rem;
  }
}
@media (min-width: 1024px) {
  .values-slider__swiper {
    max-width: 51.25rem;
  }
}
@media (min-width: 1440px) {
  .values-slider__swiper {
    max-width: 68.75rem;
  }
}
.values-slider__swiper .swiper-wrapper {
  max-width: 100%;
}
.values-slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media (min-width: 1024px) {
  .values-slider__nav {
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    width: 100%;
    max-width: 59.0625rem;
  }
  .values-slider__nav--prev, .values-slider__nav--next {
    position: absolute;
  }
}
@media (min-width: 1440px) {
  .values-slider__nav {
    max-width: 78.125rem;
  }
}
.values-slider__nav--arrow {
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0.625rem;
  margin-top: 1.25rem;
  cursor: pointer;
}
.values-slider__nav--arrow path {
  fill: #fff;
}
@media (min-width: 768px) {
  .values-slider__nav--arrow {
    margin-top: 2.5rem;
  }
}
.values-slider__nav--arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.values-slider__nav--prev {
  left: 0;
}
.values-slider__nav--next {
  right: 0;
}
.values-slider__nav-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.value-slide {
  width: 100%;
  max-width: 7.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 320px) {
  .value-slide {
    max-width: 8.75rem;
  }
}
@media (min-width: 768px) {
  .value-slide {
    width: 100%;
    max-width: 12.5rem;
  }
}
@media (min-width: 1440px) {
  .value-slide {
    max-width: 13.125rem;
  }
}
.value-slide__icon-wrapper {
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  z-index: 2;
  margin-bottom: -2.5rem;
}
.value-slide__icon-wrapper img {
  width: 3.75rem;
  height: 3.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .value-slide__icon-wrapper {
    width: 5.625rem;
    height: 5.625rem;
    margin-bottom: -2.8125rem;
  }
  .value-slide__icon-wrapper img {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 1024px) {
  .value-slide__icon-wrapper {
    margin-bottom: -3.125rem;
  }
}
.value-slide__content {
  background-color: var(--color-primary);
  border-radius: 1.25rem;
  padding: 1.25rem 1.25rem 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 7.5rem;
  height: 6.75rem;
}
@media (min-width: 320px) {
  .value-slide__content {
    width: 8.75rem;
    height: 6.75rem;
  }
}
@media (min-width: 768px) {
  .value-slide__content {
    width: 11.875rem;
    height: 9.25rem;
  }
}
@media (min-width: 1440px) {
  .value-slide__content {
    width: 13.125rem;
    height: 8.75rem;
  }
}
.value-slide__name {
  font-family: "Amino", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .value-slide__name {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .value-slide__name {
    font-size: 1.25rem;
  }
}

.swiper-button-lock {
  display: block !important;
}

.faq {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .faq {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .faq {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .faq {
    padding-right: 4.375rem;
    padding-left: 4.375rem;
  }
}
.faq__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .faq__title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .faq__title {
    font-size: 2.1875rem;
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1024px) {
  .faq__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 18.75rem 3.75rem 1fr;
    grid-template-columns: 18.75rem 1fr;
    gap: 3.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.faq__sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .faq__sidebar {
    display: block;
    position: sticky;
    top: 1.25rem;
  }
}
.faq__category-button {
  display: block;
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #B5B5B5;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq__category-button:hover {
  background-color: var(--color-gray-100);
  color: var(--color-primary);
}
.faq__category-button--active {
  color: var(--color-black);
  position: relative;
}
.faq__category-button--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.25rem;
  height: 2.1875rem;
  background-color: var(--color-primary);
  border-radius: 0.25rem;
}
.faq__group {
  margin-bottom: 1.25rem;
}
.faq__group:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .faq__group {
    display: none;
    margin-bottom: 0;
  }
  .faq__group--active {
    display: block;
  }
}
.faq__group-title {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .faq__group-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq__group-title {
    display: none;
  }
}

.faq-accordion {
  border-bottom: 0.0625rem solid var(--color-gray-100);
}
.faq-accordion:last-child {
  border-bottom: none;
}
.faq-accordion__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
  background: var(--color-gray-400);
  border: none;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  margin-bottom: 0.625rem;
  cursor: pointer;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-accordion__trigger:hover .faq-accordion__question {
  color: var(--color-primary);
}
.faq-accordion__trigger[aria-expanded=true] .faq-accordion__icon::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.faq-accordion__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  line-height: 1.4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .faq-accordion__question {
    font-size: 1.125rem;
  }
}
.faq-accordion__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .faq-accordion__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.faq-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
  width: 1rem;
  height: 0.15625rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-accordion__icon::after {
    width: 1.25rem;
  }
}
.faq-accordion__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
  width: 0.15625rem;
  height: 1rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-accordion__icon::before {
    height: 1.25rem;
  }
}
.faq-accordion__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease-out;
  transition: grid-template-rows 0.3s ease-out;
  transition: grid-template-rows 0.3s ease-out, -ms-grid-rows 0.3s ease-out;
}
.faq-accordion__trigger[aria-expanded=true] + .faq-accordion__content {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.faq-accordion__answer {
  overflow: hidden;
}
.faq-accordion__answer p {
  font-family: "Amino", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
  padding: 0.3125rem 1.25rem 1.25rem;
}
@media (min-width: 768px) {
  .faq-accordion__answer p {
    font-size: 0.9375rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq-accordion__answer p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.faq-accordion__answer p + p {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .legal {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 17.5rem 3.75rem 1fr;
    grid-template-columns: 17.5rem 1fr;
    gap: 3.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (min-width: 1200px) {
  .legal {
    -ms-grid-columns: 20rem 5rem 1fr;
    grid-template-columns: 20rem 1fr;
    gap: 5rem;
  }
}
.legal__sidebar {
  margin-bottom: 1.875rem;
}
@media (min-width: 1024px) {
  .legal__sidebar {
    display: block;
    position: sticky;
    top: 1.25rem;
    margin-bottom: 0;
  }
}
.legal__nav-button {
  display: block;
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #B5B5B5;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .legal__nav-button {
    font-size: 1.25rem;
  }
}
.legal__nav-button:hover {
  background-color: var(--color-gray-100);
  color: var(--color-primary);
}
.legal__nav-button--active {
  color: var(--color-black);
  position: relative;
}
.legal__nav-button--active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.25rem;
  height: 2.1875rem;
  background-color: var(--color-primary);
  border-radius: 0.25rem;
}
.legal__tab-content {
  display: none;
}
.legal__tab-content--active {
  display: block;
}

.legal-article__title {
  font-family: "Amino", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .legal-article__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1440px) {
  .legal-article__title {
    font-size: 2.8125rem;
  }
}
.legal-article__intro {
  margin-bottom: 1.25rem;
}
.legal-article__intro p {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-black);
}
.legal-article__intro p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .legal-article__intro p {
    line-height: 1.8;
  }
}
.legal-article__sections {
  margin-bottom: 1.25rem;
}
.legal-article__subtitle {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
}
.legal-article__text {
  font-family: "Amino", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}
@media (min-width: 768px) {
  .legal-article__text {
    line-height: 1.8;
  }
}

.legal-accordion {
  border-bottom: 0.0625rem solid var(--color-gray-100);
}
.legal-accordion:last-child {
  border-bottom: none;
}
.legal-accordion__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
  background: var(--color-gray-400);
  border: none;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  margin-bottom: 0.625rem;
  cursor: pointer;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.legal-accordion__trigger:hover .legal-accordion__question {
  color: var(--color-primary);
}
.legal-accordion__trigger[aria-expanded=true] .legal-accordion__icon::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.legal-accordion__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  line-height: 1.4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .legal-accordion__question {
    font-size: 1.125rem;
  }
}
.legal-accordion__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .legal-accordion__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.legal-accordion__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.15625rem;
  background-color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .legal-accordion__icon:after {
    width: 1.25rem;
  }
}
.legal-accordion__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.15625rem;
  height: 1rem;
  background-color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .legal-accordion__icon::before {
    height: 1.25rem;
  }
}
.legal-accordion__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease-out;
  transition: grid-template-rows 0.3s ease-out;
  transition: grid-template-rows 0.3s ease-out, -ms-grid-rows 0.3s ease-out;
}
.legal-accordion__trigger[aria-expanded=true] + .legal-accordion__content {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.legal-accordion__answer {
  overflow: hidden;
}
.legal-accordion__answer p {
  font-family: "Amino", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
  padding: 0.3125rem 1.25rem 1.25rem;
}
@media (min-width: 768px) {
  .legal-accordion__answer p {
    font-size: 0.9375rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .legal-accordion__answer p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.legal-accordion__answer p + p {
  margin-top: 1rem;
}
.legal-accordion__answer ul, .legal-accordion__answer ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.legal-accordion__answer ul li, .legal-accordion__answer ol li {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .legal-accordion__answer ul li, .legal-accordion__answer ol li {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .legal-accordion__answer ul li, .legal-accordion__answer ol li {
    font-size: 1rem;
  }
}

.banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0.625rem;
}
@media (min-width: 350px) {
  .banner {
    padding: 1.25rem;
  }
}
.banner picture {
  width: 100%;
  height: 11.25rem;
}
@media (min-width: 768px) {
  .banner picture {
    height: 15.625rem;
  }
}
@media (min-width: 768px) {
  .banner picture {
    height: 18.75rem;
  }
}
.banner picture img {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-right: 0.625rem;
  padding-left: 2.5rem;
  font-family: "Amino", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
}
@media (min-width: 350px) {
  .banner .banner__title {
    padding-rigt: 1.25rem;
    padding-left: 3.75rem;
  }
}
@media (min-width: 768px) {
  .banner .banner__title {
    font-size: 1.75rem;
    padding-left: 5rem;
  }
}
@media (min-width: 768px) {
  .banner .banner__title {
    padding-left: 6.25rem;
    font-size: 2.8125rem;
  }
}
.banner .banner__title span {
  font-weight: 800;
}

.careers-section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .careers-section {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .careers-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.careers-section__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .careers-section__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .careers-section__title {
    font-size: 1.75rem;
  }
}
.careers-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}
@media (min-width: 768px) {
  .careers-section__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .careers-section__content {
    gap: 1.25rem;
  }
}
.careers-section__content .career-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 20.625rem;
  height: 26.0625rem;
  border-radius: 1.875rem;
  background-color: var(--color-gray-400);
}
@media (min-width: 1024px) {
  .careers-section__content .career-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 30rem;
    height: 26.375rem;
  }
}
@media (min-width: 1280px) {
  .careers-section__content .career-card {
    max-width: 36.25rem;
  }
}
@media (min-width: 1440px) {
  .careers-section__content .career-card {
    max-width: 42.5rem;
  }
}
.careers-section__content .career-card__image-wrapper {
  width: 100%;
  max-width: 20.625rem;
  height: 11.25rem;
}
@media (min-width: 1024px) {
  .careers-section__content .career-card__image-wrapper {
    max-width: 21.25rem;
    height: 26.375rem;
  }
}
.careers-section__content .career-card__image-wrapper picture {
  height: inherit;
}
.careers-section__content .career-card__image-wrapper picture img {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.careers-section__content .career-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 1.25rem 1.875rem 0.9375rem;
  height: 100%;
}
.careers-section__content .career-card__title {
  font-family: "Amino", sans-serif;
  font-size: 1.125rem;
  color: var(--color-black);
  margin-bottom: 0.625rem;
}
@media (min-width: 350px) {
  .careers-section__content .career-card__title {
    font-size: 1.5625rem;
  }
}
.careers-section__content .career-card__description {
  font-family: "Amino", sans-serif;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--color-black);
}
@media (min-width: 350px) {
  .careers-section__content .career-card__description {
    font-size: 1.125rem;
  }
}
.careers-section__content .career-card__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9.375rem;
  height: 3.125rem;
  border-radius: 318.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-family: "Amino", sans-serif;
}

.social-section__title {
  font-family: "Amino", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: var(--color-black);
  margin-bottom: 1.875rem;
}
.social-section__title span {
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .social-section__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .social-section__title {
    font-size: 1.5rem;
  }
}
.social-section__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .social-section__icons {
    gap: 1.875rem;
  }
}
.social-section__icons a {
  width: 3.125rem;
  height: 3.125rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.social-section__icons a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 480px) {
  .social-section__icons a {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media (min-width: 768px) {
  .social-section__icons a {
    width: 4.375rem;
    height: 4.375rem;
  }
  .social-section__icons a:hover {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@media (min-width: 1024px) {
  .social-section__icons a {
    width: 4.75rem;
    height: 4.75rem;
  }
}

.services-benefits {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .services-benefits {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .services-benefits {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.services-benefits__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .services-benefits__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services-benefits__title {
    font-size: 1.75rem;
  }
}
.services-benefits__slider {
  position: relative;
}
.services-benefits__swiper {
  overflow: hidden;
}
.services-benefits__swiper .swiper-wrapper {
  padding: 3.75rem 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.services-benefits__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 0 !important;
}
.services-benefits__pagination:empty {
  display: none;
}
.services-benefits__pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-gray-400);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.services-benefits__pagination .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background-color: var(--color-primary);
}
@media (min-width: 768px) {
  .services-benefits__pagination {
    margin-top: 2.5rem;
  }
}

.benefit-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-gray-400);
  border-radius: 1.875rem;
  padding: 4.375rem 1.875rem 1.875rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 20.625rem;
  height: 20.625rem;
  margin: auto;
}
@media (min-width: 375px) {
  .benefit-card {
    height: 17.5rem;
  }
}
@media (min-width: 1024px) {
  .benefit-card {
    max-width: 28.6875rem;
    height: 18.75rem;
  }
}
@media (min-width: 1200px) {
  .benefit-card {
    max-width: 28.6875rem;
    height: 20.3125rem;
  }
}
.benefit-card__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  width: 6.25rem;
  height: 6.25rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto;
}
@media (min-width: 450px) {
  .benefit-card__icon-wrapper {
    top: -18%;
  }
}
@media (min-width: 1024px) {
  .benefit-card__icon-wrapper {
    top: -15%;
  }
}
@media (min-width: 1200px) {
  .benefit-card__icon-wrapper {
    top: -18%;
  }
}
.benefit-card__icon-wrapper img {
  height: 2.5rem;
}
.benefit-card__title {
  font-family: "Amino", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .benefit-card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .benefit-card__title {
    font-size: 1.5rem;
  }
}
.benefit-card__description {
  font-family: "Amino", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1024px) {
  .benefit-card__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .benefit-card__description {
    font-size: 1.25rem;
  }
}
.benefit-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9.375rem;
  height: 3.125rem;
  border-radius: 318.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-family: "Amino", sans-serif;
  margin: auto;
}

.available-services__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .available-services__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .available-services__title {
    font-size: 1.75rem;
  }
}
.available-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .available-services__list {
    gap: 1.25rem;
    max-width: 50rem;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .available-services__list {
    gap: 1.5rem;
    max-width: 75rem;
  }
}

.service-accordion {
  background-color: var(--color-gray-400);
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-accordion__trigger[aria-expanded=true] {
  background-color: rgba(0, 0, 0, 0.03);
}
.service-accordion__trigger[aria-expanded=true] .service-accordion__toggle::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
@media (min-width: 768px) {
  .service-accordion__trigger {
    padding: 1.5rem 1.875rem;
  }
}
@media (min-width: 1024px) {
  .service-accordion__trigger {
    padding: 1.75rem 2.5rem;
  }
}
.service-accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .service-accordion__header {
    gap: 1.25rem;
  }
}
.service-accordion__icon {
  width: 1.875rem;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .service-accordion__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .service-accordion__icon {
    width: 2rem;
    height: 2rem;
  }
}
.service-accordion__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-gray-800);
  line-height: 1.4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .service-accordion__name {
    font-size: 1.125rem;
  }
}
.service-accordion__toggle {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .service-accordion__toggle {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.service-accordion__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.15625rem;
  background-color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .service-accordion__toggle::after {
    width: 1.25rem;
  }
}
.service-accordion__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.15625rem;
  height: 1rem;
  background-color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .service-accordion__toggle::before {
    height: 1.25rem;
  }
}
.service-accordion__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease-out;
  transition: grid-template-rows 0.3s ease-out;
  transition: grid-template-rows 0.3s ease-out, -ms-grid-rows 0.3s ease-out;
}
.service-accordion__trigger[aria-expanded=true] + .service-accordion__content {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.service-accordion__body {
  overflow: hidden;
  padding: 0 1.25rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-400);
  border-radius: 0 0 0.625rem 0.625rem;
}
.service-accordion__body p {
  font-family: "Amino", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-black);
  margin: 0;
  padding: 1.25rem 0;
}
@media (min-width: 768px) {
  .service-accordion__body p {
    font-size: 0.9375rem;
    padding: 1.5rem 0.875rem;
  }
}
@media (min-width: 1024px) {
  .service-accordion__body p {
    font-size: 1rem;
    padding: 1.5rem 1.125rem;
  }
}
.service-accordion__body p + p {
  margin-top: 1rem;
}

.service-accordion--featured {
  background-color: rgba(var(--color-primary), 0.05);
  border: 0.125rem solid var(--color-primary);
}
.service-accordion--featured .service-accordion__trigger[aria-expanded=true] {
  background-color: rgba(var(--color-primary), 0.08);
}

.service-accordion--disabled {
  opacity: 0.6;
  pointer-events: none;
}
.service-accordion--disabled .service-accordion__trigger {
  cursor: not-allowed;
}

.contact-support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 17.5rem;
}
@media (min-width: 768px) {
  .contact-support {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .contact-support {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
@media (min-width: 1350px) {
  .contact-support {
    gap: 1.875rem;
  }
}
.contact-support__image-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media (min-width: 768px) {
  .contact-support__image-column {
    width: 100vw;
    padding-right: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .contact-support__image-column {
    height: 100%;
    max-height: 50rem;
  }
}
.contact-support__image-column picture {
  width: 100%;
}
.contact-support__image {
  display: block;
  min-width: 100%;
  width: 100%;
  min-height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 1.125rem 1.125rem 0;
  padding-right: 0.625rem;
}
@media (max-width: 280px) {
  .contact-support__image {
    min-width: 17.5rem;
  }
}
@media (min-width: 768px) {
  .contact-support__image {
    min-height: 25rem;
  }
}
@media (min-width: 1200px) {
  .contact-support__image {
    min-height: 31.25rem;
  }
}

.contact-card {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1.5rem 1.25rem;
  border-radius: 0 1.125rem 1.125rem;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
  margin-top: -2.5rem;
  max-width: 31.25rem;
}
@media (min-width: 320px) {
  .contact-card {
    margin-right: 1.875rem;
  }
}
@media (min-width: 768px) {
  .contact-card {
    max-width: 39.875rem;
    width: 100%;
    margin-top: -5rem;
    padding: 2rem 1.875rem;
  }
}
@media (min-width: 1024px) {
  .contact-card {
    max-width: 25rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 1150px) {
  .contact-card {
    max-width: 31.25rem;
  }
}
@media (min-width: 1350px) {
  .contact-card {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -5.625rem;
    margin-right: -2.5rem;
  }
}
.contact-card__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .contact-card__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-card__title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
}
.contact-card__schedule {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .contact-card__schedule {
    margin-bottom: 1.5rem;
  }
}
.contact-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .contact-card__info {
    gap: 1rem;
  }
}
.contact-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  text-decoration: none;
  font-family: "Amino", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 480px) {
  .contact-card__link {
    font-size: 1rem;
  }
}
.contact-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .contact-card__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem 1.25rem;
  }
}
@media (min-width: 1024px) {
  .contact-form {
    padding: 0.625rem 2.5rem 3.75rem 3.75rem;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact-form__title {
  font-family: "Amino", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .contact-form__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .contact-form__title {
    font-size: 2.1875rem;
  }
}
.contact-form__subtitle {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}
.contact-form__selects {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form__selects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}
.contact-form__field {
  position: relative;
  margin-bottom: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form__field {
    margin-bottom: 1.5rem;
  }
}
.contact-form__label {
  display: block;
  font-family: "Amino", sans-serif;
  font-size: 0.75rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .contact-form__label {
    font-size: 1rem;
  }
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #5F6368;
  border-radius: 1.25rem;
  background-color: var(--color-white);
  font-family: "Amino", sans-serif;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-form__input.error-input, .contact-form__select.error-input, .contact-form__textarea.error-input {
  border-color: var(--color-error);
  color: var(--color-error);
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.contact-form__input::-webkit-input-placeholder, .contact-form__select::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: #A7A7A7;
}
.contact-form__input::-moz-placeholder, .contact-form__select::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #A7A7A7;
}
.contact-form__input:-ms-input-placeholder, .contact-form__select:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #A7A7A7;
}
.contact-form__input::-ms-input-placeholder, .contact-form__select::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: #A7A7A7;
}
.contact-form__input::placeholder, .contact-form__select::placeholder, .contact-form__textarea::placeholder {
  color: #A7A7A7;
}
@media (min-width: 768px) {
  .contact-form__input, .contact-form__select, .contact-form__textarea {
    font-size: 1rem;
    padding: 0.875rem 1.125rem;
  }
}
.contact-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M7 10l5 5 5-5H7z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
  cursor: pointer;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 6.25rem;
}
.contact-form__error {
  display: none;
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .contact-form__error {
    font-size: 0.8125rem;
  }
}
.contact-form__error--error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  font-family: "Amino", sans-serif;
}
.contact-form__error--error img {
  width: 0.6875rem;
  height: 0.6875rem;
}
.contact-form__terms-text {
  font-family: "Amino", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-gray-600);
  margin: 0;
}
@media (min-width: 768px) {
  .contact-form__terms-text {
    font-size: 0.875rem;
  }
}
.contact-form__link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}
.contact-form__link:hover {
  text-decoration: none;
}
.contact-form__submit {
  width: 12.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 6.25rem;
  margin-top: 0.9375rem;
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  color: var(--color-white);
}
.contact-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  text-align: center;
}
.contact-success__image {
  max-width: 18.75rem;
  width: 100%;
  margin: 0 auto 1.875rem;
}
@media (min-width: 768px) {
  .contact-success__image {
    max-width: 36.25rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-success__image {
    max-width: 34.875rem;
    margin-bottom: 2.5rem;
  }
}
.contact-success__title {
  font-family: "Amino", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .contact-success__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-success__title {
    font-size: 2.1875rem;
  }
}
.contact-success__text {
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 1.875rem;
}
.contact-success__text strong {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .contact-success__text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
.contact-success__button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 6.25rem;
  font-family: "Amino", sans-serif;
  font-size: 1rem;
  color: var(--color-white);
}