@charset "UTF-8";
/* ============================================================
# MIXIN · line-clamp
------------------------------------------------------------
Corta el texto después de N líneas y muestra “…”
Uso:  @include line-clamp(4);   // 4 líneas
============================================================
*Buenas prácticas
✔️ Correcto
- Combinar con un contenedor de altura fija o min-height para mantener alineación
- Añadir un enlace “Leer más” cuando recortes

❌ Evitar
- Usar en bloques donde NECESITES todo el texto (puede ocultar información)
- Asumir que todos los navegadores viejos lo soportan (IE lo ignora)

*/
/*
=====================================================================
# BREAKPOINT SYSTEM (Foundation-style) · v1.0
----------------------------------------------------------------------
• Centralizes responsive breakpoints in a single map.
• Provides helper functions and a mixin to write media queries with
    a concise, human-readable syntax (`small up`, `medium down`, `large only`).

──────────────────────────
* 1) CONFIGURATION
----------------------------------------------------------------------
$breakpoints : (key → min-width)
*/
/*
──────────────────────────
* 2) PUBLIC API
----------------------------------------------------------------------
• get-breakpoint($key)            → returns the min-width value
• next-breakpoint($key)           → returns the next breakpoint’s value
• breakpoint($key, $range: up)    → mixin to wrap @media rules
        $key   : small | medium | large | xlarge | …
        $range : up  | down | only
        up   → min-width ≥  $key
        down → max-width <  next($key)
        only → between    $key   and next($key)-0.001 em

──────────────────────────
* 3) USAGE EXAMPLES
----------------------------------------------------------------------
@use 'abstracts/breakpoints' as bp;

*>= 64em  (desktop-first)
@include bp.breakpoint(large) {
    .nav { display: flex; }
}

*40em–63.999em  (tablet only)
@include bp.breakpoint(medium, only) {
    .hero { font-size: 2rem; }
}

*< 40em  (mobile and down)
@include bp.breakpoint(small, down) {
    .card { margin: 1rem; }
}

──────────────────────────
* 4) NOTES
----------------------------------------------------------------------
• Uses `math.unit()` / `map.*` / `list.*` — fully compatible with
    Dart Sass ≥ 1.64 (no deprecation warnings).
• `-0.001em` / `-1px` offset prevents overlap between adjacent ranges.
• Extendable: create semantic aliases (`@mixin mobile { … }`) or export
    CSS variables if you also need breakpoints in JavaScript.
=====================================================================
*/
html {
  scroll-behavior: auto !important;
}

body {
  color: var(--secondary-dark);
}
body h2 {
  font-family: "Playfair Display", serif !important;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
body.page-template-page-landing h2 {
  font-size: 2.5rem;
}
body.page-template-page-landing h3 {
  font-size: 2rem;
}
@media (min-width: 64em) {
  body.page-template-page-landing h2 {
    font-size: 3.5rem;
  }
  body.page-template-page-landing h3 {
    font-size: 2.25rem;
  }
}
body.page-template-page-landing h2 {
  margin-bottom: 4rem;
}
body.page-template-page-landing h4, body.page-template-page-landing h5, body.page-template-page-landing h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--secondary-dark);
}

.site-title {
  font-family: "Livvic", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
}

.btn-1 {
  background-color: var(--secondary-color) !important;
  width: 70%;
  max-width: 250px;
  font-size: 1rem !important;
  border-radius: 5px !important;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
}
.btn-1:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--secondary-darken) !important;
}

.button {
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.button:hover, .button:focus-visible {
  background-color: var(--secondary-darken);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.single-post .entry-content h2:last-of-type {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.single-post .entry-content h2:last-of-type::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--secondary-color);
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.single-post .entry-content h2:last-of-type,
.single-post .entry-content h2:last-of-type ~ p {
  text-align: center;
}
.single-post .entry-content h2:last-of-type ~ p {
  max-width: 50rem;
  margin: 0 auto 1rem;
  font-size: 1.125rem;
  line-height: 1.9;
}
.single-post .entry-content h2:last-of-type ~ p a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.single-post .entry-content h2:last-of-type ~ p a:hover {
  background-color: var(--secondary-darken);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.upwork-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.upwork-overlay__content {
  max-width: 480px;
  width: 100%;
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.upwork-overlay__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 0 0 img;
  padding-height: auto;
  padding-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.upwork-overlay__text p {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
.upwork-overlay__action {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.upwork-overlay__action .btn {
  min-width: 200px;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}
.upwork-overlay__action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 40em) {
  .upwork-overlay {
    padding: 1.5rem;
  }
  .upwork-overlay__content {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .upwork-overlay__text p {
    font-size: 1rem;
  }
  .upwork-overlay__action .btn {
    min-width: 180px;
  }
}
body.page-template-page-landing {
  background-color: var(--secondary-neutral) !important;
}
body.page-template-page-landing section {
  padding: 5rem 5%;
}
body.page-template-page-landing #services .cell,
body.page-template-page-landing #portfolio .cell,
body.page-template-page-landing #testimonials .cell,
body.page-template-page-landing #why-choose-us .cell {
  margin-bottom: 1.5rem !important;
}
body.page-template-page-landing .night-style {
  background-color: var(--secondary-dark);
  color: var(--secondary-neutral);
}
body.page-template-page-landing .night-style h2 {
  color: var(--secondary-neutral);
}
body.page-template-page-landing .night-style a {
  color: var(--secondary-neutral);
  text-decoration: underline;
}
body.page-template-page-landing .night-style .button,
body.page-template-page-landing .night-style button,
body.page-template-page-landing .night-style a.button {
  background-color: var(--secondary-color);
  color: var(--white);
}
body.page-template-page-landing .night-style .button:hover,
body.page-template-page-landing .night-style .button:focus-visible,
body.page-template-page-landing .night-style button:hover,
body.page-template-page-landing .night-style button:focus-visible,
body.page-template-page-landing .night-style a.button:hover,
body.page-template-page-landing .night-style a.button:focus-visible {
  background-color: var(--secondary-lighten, #E6B89F);
  color: var(--secondary-dark);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
body.page-template-page-landing .about-me,
body.page-template-page-landing .services,
body.page-template-page-landing .portfolio,
body.page-template-page-landing .testimonials,
body.page-template-page-landing .why-choose-us,
body.page-template-page-landing .our-process,
body.page-template-page-landing .faq,
body.page-template-page-landing #contact {
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
body.page-template-page-landing .about-me.in-view,
body.page-template-page-landing .services.in-view,
body.page-template-page-landing .portfolio.in-view,
body.page-template-page-landing .testimonials.in-view,
body.page-template-page-landing .why-choose-us.in-view,
body.page-template-page-landing .our-process.in-view,
body.page-template-page-landing .faq.in-view,
body.page-template-page-landing #contact.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bambu-style {
  background-color: var(--secondary-green);
}

.day-style {
  background-color: var(--secondary-neutral);
  text-align: center;
}
.day-style h3 {
  margin-bottom: 3rem;
  color: var(--secondary-dark);
}

.cta-section {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

html.no-js .hero-section::before {
  opacity: 1;
  filter: none;
}

.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
  background-color: var(--secondary-neutral, #F5F2EB);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-url);
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.35s ease-out, filter 0.35s ease-out;
  will-change: opacity, filter;
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
  z-index: 1;
  pointer-events: none;
}
.hero-section.is-bg-loaded::before {
  opacity: 1;
  filter: none;
}
@media (min-width: 40em) {
  .hero-section {
    min-height: 70vh;
  }
}
@media (min-width: 64em) {
  .hero-section {
    min-height: 80vh;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: var(--secondary-neutral, #F5F2EB);
  padding: 2rem;
  max-width: 800px;
  border-radius: 50px;
  backdrop-filter: blur(3px);
}
.hero-section .hero-content h1 {
  font-family: "Playfair Display", serif !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content .h2-hero {
  margin-bottom: 3rem;
  color: inherit;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  font-size: 1.7rem;
}
@media (max-width: 63.999em) {
  .hero-section .hero-content .h2-hero {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    transition: none;
    filter: none;
    opacity: 1;
  }
}
.img-wrapper {
  z-index: 1;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 20px var(--shadow-100, rgba(255, 255, 255, 0.2));
  transition: box-shadow 0.3s ease;
}

.profile-photo .img-wrapper:hover {
  box-shadow: 0 12px 20px var(--shadow-300, rgba(0, 0, 0, 0.25));
}
.profile-photo .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 10%; /* Ajusta la parte visible */
  display: block;
}

.about-me p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.skills-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.skills-list li {
  background-color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--secondary-neutral);
  user-select: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.skills-list li:hover {
  transform: translateY(-2px);
}

.portfolio-item {
  background-color: var(--soft-white);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  /* 1) Contenedor principal en columna */
  display: flex;
  flex-direction: column;
  /* 3) Título clampeado y centrado */
  /* 4) Descripción clampeada, SIN margin-bottom */
  /* 5) Botón al fondo */
}
.portfolio-item .content {
  /* 2) Flex interno + gap uniforme */
  flex: 1 1 auto;
  padding: var(--space-6, 1.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* ← reemplaza al margin-bottom del <p> */
}
.portfolio-item h3 {
  min-height: 3.75em;
  line-height: 1.25;
  color: var(--secondary-dark);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@supports (line-clamp: 3) {
  .portfolio-item h3 {
    line-clamp: 3;
    block-ellipsis: "…";
  }
}
.portfolio-item p {
  line-height: 1.5;
  min-height: 7.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; /* ← quitamos el margin-bottom */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
@supports (line-clamp: 5) {
  .portfolio-item p {
    line-clamp: 5;
    block-ellipsis: "…";
  }
}
.portfolio-item .content .button,
.portfolio-item .content button,
.portfolio-item .content a[href] {
  margin: 1rem auto;
  align-self: center;
}

.services {
  margin-bottom: 2.5rem;
}
.services .service-icon {
  --icon-size: 3rem;
  line-height: 1;
  font-size: 3rem;
  color: var(--secondary-dark);
  margin-bottom: 1.5rem;
  stroke: var(--secondary-dark);
  stroke-width: 1.5;
}
.services .service-icon svg {
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-block;
}

.service-card {
  background-color: var(--white);
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  height: 100%; /* Ensure blocks are same height */
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--secondary-dark);
}

.testimonial-card {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-card .client-info strong {
  display: block;
  color: var(--secondary-dark);
}
.testimonial-card .client-info span {
  font-size: 0.9rem;
  /* color: #777; */
}

.card-item {
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  background-color: var(--white);
}
.card-item h3 {
  color: var(--secondary-color);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.process-step {
  padding: 1.5rem;
  border: 1px solid var(--secondary-green);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.process-step h3 {
  margin-bottom: 0.5rem;
}

.faq-item {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--secondary-green);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contact-landing form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--secondary-neutral);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: var(--alert-color) !important;
  font-size: 0.8rem;
}
.wpcf7 .wpcf7-response-output {
  color: var(--secondary-dark) !important;
  border: 2px solid var(--accent-blue) !important;
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--warning-color) !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--success-color) !important;
}

.alternative-contact {
  text-align: center;
  margin-top: 2rem;
}
.alternative-contact p {
  margin-bottom: 1rem;
  color: var(--secondary-neutral);
}

.social-icons a {
  color: var(--secondary-neutral);
  font-size: 2rem;
  margin: 0 0.8rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.social-icons a:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.feature-item {
  box-shadow: 0 4px 8px var(--shadow-200, rgba(0, 0, 0, 0.1));
  transition: box-shadow var(--motion-fast, 0.3s) ease;
}
.feature-item:hover {
  box-shadow: 0 8px 16px var(--shadow-400, rgba(0, 0, 0, 0.4));
}

.important-item {
  box-shadow: 0 4px 8px var(--shadow-200, rgba(0, 0, 0, 0.1));
  transition: transform var(--motion-fast, 0.3s) ease, box-shadow var(--motion-fast, 0.3s) ease;
}
.important-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow-300, rgba(0, 0, 0, 0.2));
}

.checklist {
  margin-left: var(--space-6, 2rem);
}
.checklist li::marker {
  content: "✔  ";
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon, .icon * {
  color: currentColor;
  stroke: currentColor;
}

:is(a, button, .button):focus-visible {
  outline: 2px solid var(--accent-blue, #2271b1);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -1000px;
  left: 0;
  background: var(--secondary-dark, #364652);
  color: var(--secondary-neutral, #F5F2EB);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

.m-0 {
  margin: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mx-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.m-6 {
  margin: 2rem !important;
}

.mx-6 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-6 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mt-6 {
  margin-top: 2rem !important;
}

.mr-6 {
  margin-right: 2rem !important;
}

.mb-6 {
  margin-bottom: 2rem !important;
}

.ml-6 {
  margin-left: 2rem !important;
}

.p-6 {
  padding: 2rem !important;
}

.px-6 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-6 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pt-6 {
  padding-top: 2rem !important;
}

.pr-6 {
  padding-right: 2rem !important;
}

.pb-6 {
  padding-bottom: 2rem !important;
}

.pl-6 {
  padding-left: 2rem !important;
}

.m-7 {
  margin: 2.5rem !important;
}

.mx-7 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-7 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mt-7 {
  margin-top: 2.5rem !important;
}

.mr-7 {
  margin-right: 2.5rem !important;
}

.mb-7 {
  margin-bottom: 2.5rem !important;
}

.ml-7 {
  margin-left: 2.5rem !important;
}

.p-7 {
  padding: 2.5rem !important;
}

.px-7 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-7 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.pt-7 {
  padding-top: 2.5rem !important;
}

.pr-7 {
  padding-right: 2.5rem !important;
}

.pb-7 {
  padding-bottom: 2.5rem !important;
}

.pl-7 {
  padding-left: 2.5rem !important;
}

.m-8 {
  margin: 3rem !important;
}

.mx-8 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-8 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-8 {
  margin-top: 3rem !important;
}

.mr-8 {
  margin-right: 3rem !important;
}

.mb-8 {
  margin-bottom: 3rem !important;
}

.ml-8 {
  margin-left: 3rem !important;
}

.p-8 {
  padding: 3rem !important;
}

.px-8 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-8 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-8 {
  padding-top: 3rem !important;
}

.pr-8 {
  padding-right: 3rem !important;
}

.pb-8 {
  padding-bottom: 3rem !important;
}

.pl-8 {
  padding-left: 3rem !important;
}

.m-9 {
  margin: 4rem !important;
}

.mx-9 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-9 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mt-9 {
  margin-top: 4rem !important;
}

.mr-9 {
  margin-right: 4rem !important;
}

.mb-9 {
  margin-bottom: 4rem !important;
}

.ml-9 {
  margin-left: 4rem !important;
}

.p-9 {
  padding: 4rem !important;
}

.px-9 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-9 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pt-9 {
  padding-top: 4rem !important;
}

.pr-9 {
  padding-right: 4rem !important;
}

.pb-9 {
  padding-bottom: 4rem !important;
}

.pl-9 {
  padding-left: 4rem !important;
}

.m-10 {
  margin: 5rem !important;
}

.mx-10 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mt-10 {
  margin-top: 5rem !important;
}

.mr-10 {
  margin-right: 5rem !important;
}

.mb-10 {
  margin-bottom: 5rem !important;
}

.ml-10 {
  margin-left: 5rem !important;
}

.p-10 {
  padding: 5rem !important;
}

.px-10 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt-10 {
  padding-top: 5rem !important;
}

.pr-10 {
  padding-right: 5rem !important;
}

.pb-10 {
  padding-bottom: 5rem !important;
}

.pl-10 {
  padding-left: 5rem !important;
}

.m-12 {
  margin: 6rem !important;
}

.mx-12 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-12 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mt-12 {
  margin-top: 6rem !important;
}

.mr-12 {
  margin-right: 6rem !important;
}

.mb-12 {
  margin-bottom: 6rem !important;
}

.ml-12 {
  margin-left: 6rem !important;
}

.p-12 {
  padding: 6rem !important;
}

.px-12 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-12 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.pt-12 {
  padding-top: 6rem !important;
}

.pr-12 {
  padding-right: 6rem !important;
}

.pb-12 {
  padding-bottom: 6rem !important;
}

.pl-12 {
  padding-left: 6rem !important;
}

.m-16 {
  margin: 8rem !important;
}

.mx-16 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-16 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.mt-16 {
  margin-top: 8rem !important;
}

.mr-16 {
  margin-right: 8rem !important;
}

.mb-16 {
  margin-bottom: 8rem !important;
}

.ml-16 {
  margin-left: 8rem !important;
}

.p-16 {
  padding: 8rem !important;
}

.px-16 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-16 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.pt-16 {
  padding-top: 8rem !important;
}

.pr-16 {
  padding-right: 8rem !important;
}

.pb-16 {
  padding-bottom: 8rem !important;
}

.pl-16 {
  padding-left: 8rem !important;
}

.m-20 {
  margin: 10rem !important;
}

.mx-20 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-20 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.mt-20 {
  margin-top: 10rem !important;
}

.mr-20 {
  margin-right: 10rem !important;
}

.mb-20 {
  margin-bottom: 10rem !important;
}

.ml-20 {
  margin-left: 10rem !important;
}

.p-20 {
  padding: 10rem !important;
}

.px-20 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-20 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.pt-20 {
  padding-top: 10rem !important;
}

.pr-20 {
  padding-right: 10rem !important;
}

.pb-20 {
  padding-bottom: 10rem !important;
}

.pl-20 {
  padding-left: 10rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.p-auto {
  padding: auto !important;
}

.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

@media screen and (min-width: 640px) {
  .medium-m-0 {
    margin: 0 !important;
  }
  .medium-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .medium-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .medium-mt-0 {
    margin-top: 0 !important;
  }
  .medium-mr-0 {
    margin-right: 0 !important;
  }
  .medium-mb-0 {
    margin-bottom: 0 !important;
  }
  .medium-ml-0 {
    margin-left: 0 !important;
  }
  .medium-p-0 {
    padding: 0 !important;
  }
  .medium-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .medium-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .medium-pt-0 {
    padding-top: 0 !important;
  }
  .medium-pr-0 {
    padding-right: 0 !important;
  }
  .medium-pb-0 {
    padding-bottom: 0 !important;
  }
  .medium-pl-0 {
    padding-left: 0 !important;
  }
  .medium-m-1 {
    margin: 0.25rem !important;
  }
  .medium-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .medium-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .medium-mt-1 {
    margin-top: 0.25rem !important;
  }
  .medium-mr-1 {
    margin-right: 0.25rem !important;
  }
  .medium-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .medium-ml-1 {
    margin-left: 0.25rem !important;
  }
  .medium-p-1 {
    padding: 0.25rem !important;
  }
  .medium-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .medium-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .medium-pt-1 {
    padding-top: 0.25rem !important;
  }
  .medium-pr-1 {
    padding-right: 0.25rem !important;
  }
  .medium-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .medium-pl-1 {
    padding-left: 0.25rem !important;
  }
  .medium-m-2 {
    margin: 0.5rem !important;
  }
  .medium-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .medium-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .medium-mt-2 {
    margin-top: 0.5rem !important;
  }
  .medium-mr-2 {
    margin-right: 0.5rem !important;
  }
  .medium-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .medium-ml-2 {
    margin-left: 0.5rem !important;
  }
  .medium-p-2 {
    padding: 0.5rem !important;
  }
  .medium-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .medium-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .medium-pt-2 {
    padding-top: 0.5rem !important;
  }
  .medium-pr-2 {
    padding-right: 0.5rem !important;
  }
  .medium-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .medium-pl-2 {
    padding-left: 0.5rem !important;
  }
  .medium-m-3 {
    margin: 0.75rem !important;
  }
  .medium-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .medium-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .medium-mt-3 {
    margin-top: 0.75rem !important;
  }
  .medium-mr-3 {
    margin-right: 0.75rem !important;
  }
  .medium-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .medium-ml-3 {
    margin-left: 0.75rem !important;
  }
  .medium-p-3 {
    padding: 0.75rem !important;
  }
  .medium-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .medium-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .medium-pt-3 {
    padding-top: 0.75rem !important;
  }
  .medium-pr-3 {
    padding-right: 0.75rem !important;
  }
  .medium-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .medium-pl-3 {
    padding-left: 0.75rem !important;
  }
  .medium-m-4 {
    margin: 1rem !important;
  }
  .medium-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .medium-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .medium-mt-4 {
    margin-top: 1rem !important;
  }
  .medium-mr-4 {
    margin-right: 1rem !important;
  }
  .medium-mb-4 {
    margin-bottom: 1rem !important;
  }
  .medium-ml-4 {
    margin-left: 1rem !important;
  }
  .medium-p-4 {
    padding: 1rem !important;
  }
  .medium-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .medium-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .medium-pt-4 {
    padding-top: 1rem !important;
  }
  .medium-pr-4 {
    padding-right: 1rem !important;
  }
  .medium-pb-4 {
    padding-bottom: 1rem !important;
  }
  .medium-pl-4 {
    padding-left: 1rem !important;
  }
  .medium-m-5 {
    margin: 1.5rem !important;
  }
  .medium-mx-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .medium-my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .medium-mt-5 {
    margin-top: 1.5rem !important;
  }
  .medium-mr-5 {
    margin-right: 1.5rem !important;
  }
  .medium-mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .medium-ml-5 {
    margin-left: 1.5rem !important;
  }
  .medium-p-5 {
    padding: 1.5rem !important;
  }
  .medium-px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .medium-py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .medium-pt-5 {
    padding-top: 1.5rem !important;
  }
  .medium-pr-5 {
    padding-right: 1.5rem !important;
  }
  .medium-pb-5 {
    padding-bottom: 1.5rem !important;
  }
  .medium-pl-5 {
    padding-left: 1.5rem !important;
  }
  .medium-m-6 {
    margin: 2rem !important;
  }
  .medium-mx-6 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .medium-my-6 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .medium-mt-6 {
    margin-top: 2rem !important;
  }
  .medium-mr-6 {
    margin-right: 2rem !important;
  }
  .medium-mb-6 {
    margin-bottom: 2rem !important;
  }
  .medium-ml-6 {
    margin-left: 2rem !important;
  }
  .medium-p-6 {
    padding: 2rem !important;
  }
  .medium-px-6 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .medium-py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .medium-pt-6 {
    padding-top: 2rem !important;
  }
  .medium-pr-6 {
    padding-right: 2rem !important;
  }
  .medium-pb-6 {
    padding-bottom: 2rem !important;
  }
  .medium-pl-6 {
    padding-left: 2rem !important;
  }
  .medium-m-7 {
    margin: 2.5rem !important;
  }
  .medium-mx-7 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .medium-my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .medium-mt-7 {
    margin-top: 2.5rem !important;
  }
  .medium-mr-7 {
    margin-right: 2.5rem !important;
  }
  .medium-mb-7 {
    margin-bottom: 2.5rem !important;
  }
  .medium-ml-7 {
    margin-left: 2.5rem !important;
  }
  .medium-p-7 {
    padding: 2.5rem !important;
  }
  .medium-px-7 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .medium-py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .medium-pt-7 {
    padding-top: 2.5rem !important;
  }
  .medium-pr-7 {
    padding-right: 2.5rem !important;
  }
  .medium-pb-7 {
    padding-bottom: 2.5rem !important;
  }
  .medium-pl-7 {
    padding-left: 2.5rem !important;
  }
  .medium-m-8 {
    margin: 3rem !important;
  }
  .medium-mx-8 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .medium-my-8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .medium-mt-8 {
    margin-top: 3rem !important;
  }
  .medium-mr-8 {
    margin-right: 3rem !important;
  }
  .medium-mb-8 {
    margin-bottom: 3rem !important;
  }
  .medium-ml-8 {
    margin-left: 3rem !important;
  }
  .medium-p-8 {
    padding: 3rem !important;
  }
  .medium-px-8 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .medium-py-8 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .medium-pt-8 {
    padding-top: 3rem !important;
  }
  .medium-pr-8 {
    padding-right: 3rem !important;
  }
  .medium-pb-8 {
    padding-bottom: 3rem !important;
  }
  .medium-pl-8 {
    padding-left: 3rem !important;
  }
  .medium-m-9 {
    margin: 4rem !important;
  }
  .medium-mx-9 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .medium-my-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .medium-mt-9 {
    margin-top: 4rem !important;
  }
  .medium-mr-9 {
    margin-right: 4rem !important;
  }
  .medium-mb-9 {
    margin-bottom: 4rem !important;
  }
  .medium-ml-9 {
    margin-left: 4rem !important;
  }
  .medium-p-9 {
    padding: 4rem !important;
  }
  .medium-px-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .medium-py-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .medium-pt-9 {
    padding-top: 4rem !important;
  }
  .medium-pr-9 {
    padding-right: 4rem !important;
  }
  .medium-pb-9 {
    padding-bottom: 4rem !important;
  }
  .medium-pl-9 {
    padding-left: 4rem !important;
  }
  .medium-m-10 {
    margin: 5rem !important;
  }
  .medium-mx-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .medium-my-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .medium-mt-10 {
    margin-top: 5rem !important;
  }
  .medium-mr-10 {
    margin-right: 5rem !important;
  }
  .medium-mb-10 {
    margin-bottom: 5rem !important;
  }
  .medium-ml-10 {
    margin-left: 5rem !important;
  }
  .medium-p-10 {
    padding: 5rem !important;
  }
  .medium-px-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .medium-py-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .medium-pt-10 {
    padding-top: 5rem !important;
  }
  .medium-pr-10 {
    padding-right: 5rem !important;
  }
  .medium-pb-10 {
    padding-bottom: 5rem !important;
  }
  .medium-pl-10 {
    padding-left: 5rem !important;
  }
  .medium-m-12 {
    margin: 6rem !important;
  }
  .medium-mx-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .medium-my-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .medium-mt-12 {
    margin-top: 6rem !important;
  }
  .medium-mr-12 {
    margin-right: 6rem !important;
  }
  .medium-mb-12 {
    margin-bottom: 6rem !important;
  }
  .medium-ml-12 {
    margin-left: 6rem !important;
  }
  .medium-p-12 {
    padding: 6rem !important;
  }
  .medium-px-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .medium-py-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .medium-pt-12 {
    padding-top: 6rem !important;
  }
  .medium-pr-12 {
    padding-right: 6rem !important;
  }
  .medium-pb-12 {
    padding-bottom: 6rem !important;
  }
  .medium-pl-12 {
    padding-left: 6rem !important;
  }
  .medium-m-16 {
    margin: 8rem !important;
  }
  .medium-mx-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .medium-my-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .medium-mt-16 {
    margin-top: 8rem !important;
  }
  .medium-mr-16 {
    margin-right: 8rem !important;
  }
  .medium-mb-16 {
    margin-bottom: 8rem !important;
  }
  .medium-ml-16 {
    margin-left: 8rem !important;
  }
  .medium-p-16 {
    padding: 8rem !important;
  }
  .medium-px-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .medium-py-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .medium-pt-16 {
    padding-top: 8rem !important;
  }
  .medium-pr-16 {
    padding-right: 8rem !important;
  }
  .medium-pb-16 {
    padding-bottom: 8rem !important;
  }
  .medium-pl-16 {
    padding-left: 8rem !important;
  }
  .medium-m-20 {
    margin: 10rem !important;
  }
  .medium-mx-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .medium-my-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .medium-mt-20 {
    margin-top: 10rem !important;
  }
  .medium-mr-20 {
    margin-right: 10rem !important;
  }
  .medium-mb-20 {
    margin-bottom: 10rem !important;
  }
  .medium-ml-20 {
    margin-left: 10rem !important;
  }
  .medium-p-20 {
    padding: 10rem !important;
  }
  .medium-px-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .medium-py-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .medium-pt-20 {
    padding-top: 10rem !important;
  }
  .medium-pr-20 {
    padding-right: 10rem !important;
  }
  .medium-pb-20 {
    padding-bottom: 10rem !important;
  }
  .medium-pl-20 {
    padding-left: 10rem !important;
  }
  .medium-m-auto {
    margin: auto !important;
  }
  .medium-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .medium-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .medium-mt-auto {
    margin-top: auto !important;
  }
  .medium-mr-auto {
    margin-right: auto !important;
  }
  .medium-mb-auto {
    margin-bottom: auto !important;
  }
  .medium-ml-auto {
    margin-left: auto !important;
  }
  .medium-p-auto {
    padding: auto !important;
  }
  .medium-px-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .medium-py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .medium-pt-auto {
    padding-top: auto !important;
  }
  .medium-pr-auto {
    padding-right: auto !important;
  }
  .medium-pb-auto {
    padding-bottom: auto !important;
  }
  .medium-pl-auto {
    padding-left: auto !important;
  }
}
@media screen and (min-width: 1024px) {
  .large-m-0 {
    margin: 0 !important;
  }
  .large-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .large-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .large-mt-0 {
    margin-top: 0 !important;
  }
  .large-mr-0 {
    margin-right: 0 !important;
  }
  .large-mb-0 {
    margin-bottom: 0 !important;
  }
  .large-ml-0 {
    margin-left: 0 !important;
  }
  .large-p-0 {
    padding: 0 !important;
  }
  .large-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .large-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .large-pt-0 {
    padding-top: 0 !important;
  }
  .large-pr-0 {
    padding-right: 0 !important;
  }
  .large-pb-0 {
    padding-bottom: 0 !important;
  }
  .large-pl-0 {
    padding-left: 0 !important;
  }
  .large-m-1 {
    margin: 0.25rem !important;
  }
  .large-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .large-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .large-mt-1 {
    margin-top: 0.25rem !important;
  }
  .large-mr-1 {
    margin-right: 0.25rem !important;
  }
  .large-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .large-ml-1 {
    margin-left: 0.25rem !important;
  }
  .large-p-1 {
    padding: 0.25rem !important;
  }
  .large-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .large-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .large-pt-1 {
    padding-top: 0.25rem !important;
  }
  .large-pr-1 {
    padding-right: 0.25rem !important;
  }
  .large-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .large-pl-1 {
    padding-left: 0.25rem !important;
  }
  .large-m-2 {
    margin: 0.5rem !important;
  }
  .large-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .large-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .large-mt-2 {
    margin-top: 0.5rem !important;
  }
  .large-mr-2 {
    margin-right: 0.5rem !important;
  }
  .large-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .large-ml-2 {
    margin-left: 0.5rem !important;
  }
  .large-p-2 {
    padding: 0.5rem !important;
  }
  .large-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .large-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .large-pt-2 {
    padding-top: 0.5rem !important;
  }
  .large-pr-2 {
    padding-right: 0.5rem !important;
  }
  .large-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .large-pl-2 {
    padding-left: 0.5rem !important;
  }
  .large-m-3 {
    margin: 0.75rem !important;
  }
  .large-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .large-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .large-mt-3 {
    margin-top: 0.75rem !important;
  }
  .large-mr-3 {
    margin-right: 0.75rem !important;
  }
  .large-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .large-ml-3 {
    margin-left: 0.75rem !important;
  }
  .large-p-3 {
    padding: 0.75rem !important;
  }
  .large-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .large-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .large-pt-3 {
    padding-top: 0.75rem !important;
  }
  .large-pr-3 {
    padding-right: 0.75rem !important;
  }
  .large-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .large-pl-3 {
    padding-left: 0.75rem !important;
  }
  .large-m-4 {
    margin: 1rem !important;
  }
  .large-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .large-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .large-mt-4 {
    margin-top: 1rem !important;
  }
  .large-mr-4 {
    margin-right: 1rem !important;
  }
  .large-mb-4 {
    margin-bottom: 1rem !important;
  }
  .large-ml-4 {
    margin-left: 1rem !important;
  }
  .large-p-4 {
    padding: 1rem !important;
  }
  .large-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .large-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .large-pt-4 {
    padding-top: 1rem !important;
  }
  .large-pr-4 {
    padding-right: 1rem !important;
  }
  .large-pb-4 {
    padding-bottom: 1rem !important;
  }
  .large-pl-4 {
    padding-left: 1rem !important;
  }
  .large-m-5 {
    margin: 1.5rem !important;
  }
  .large-mx-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .large-my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .large-mt-5 {
    margin-top: 1.5rem !important;
  }
  .large-mr-5 {
    margin-right: 1.5rem !important;
  }
  .large-mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .large-ml-5 {
    margin-left: 1.5rem !important;
  }
  .large-p-5 {
    padding: 1.5rem !important;
  }
  .large-px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .large-py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .large-pt-5 {
    padding-top: 1.5rem !important;
  }
  .large-pr-5 {
    padding-right: 1.5rem !important;
  }
  .large-pb-5 {
    padding-bottom: 1.5rem !important;
  }
  .large-pl-5 {
    padding-left: 1.5rem !important;
  }
  .large-m-6 {
    margin: 2rem !important;
  }
  .large-mx-6 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .large-my-6 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .large-mt-6 {
    margin-top: 2rem !important;
  }
  .large-mr-6 {
    margin-right: 2rem !important;
  }
  .large-mb-6 {
    margin-bottom: 2rem !important;
  }
  .large-ml-6 {
    margin-left: 2rem !important;
  }
  .large-p-6 {
    padding: 2rem !important;
  }
  .large-px-6 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .large-py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .large-pt-6 {
    padding-top: 2rem !important;
  }
  .large-pr-6 {
    padding-right: 2rem !important;
  }
  .large-pb-6 {
    padding-bottom: 2rem !important;
  }
  .large-pl-6 {
    padding-left: 2rem !important;
  }
  .large-m-7 {
    margin: 2.5rem !important;
  }
  .large-mx-7 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .large-my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .large-mt-7 {
    margin-top: 2.5rem !important;
  }
  .large-mr-7 {
    margin-right: 2.5rem !important;
  }
  .large-mb-7 {
    margin-bottom: 2.5rem !important;
  }
  .large-ml-7 {
    margin-left: 2.5rem !important;
  }
  .large-p-7 {
    padding: 2.5rem !important;
  }
  .large-px-7 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .large-py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .large-pt-7 {
    padding-top: 2.5rem !important;
  }
  .large-pr-7 {
    padding-right: 2.5rem !important;
  }
  .large-pb-7 {
    padding-bottom: 2.5rem !important;
  }
  .large-pl-7 {
    padding-left: 2.5rem !important;
  }
  .large-m-8 {
    margin: 3rem !important;
  }
  .large-mx-8 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .large-my-8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .large-mt-8 {
    margin-top: 3rem !important;
  }
  .large-mr-8 {
    margin-right: 3rem !important;
  }
  .large-mb-8 {
    margin-bottom: 3rem !important;
  }
  .large-ml-8 {
    margin-left: 3rem !important;
  }
  .large-p-8 {
    padding: 3rem !important;
  }
  .large-px-8 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .large-py-8 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .large-pt-8 {
    padding-top: 3rem !important;
  }
  .large-pr-8 {
    padding-right: 3rem !important;
  }
  .large-pb-8 {
    padding-bottom: 3rem !important;
  }
  .large-pl-8 {
    padding-left: 3rem !important;
  }
  .large-m-9 {
    margin: 4rem !important;
  }
  .large-mx-9 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .large-my-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .large-mt-9 {
    margin-top: 4rem !important;
  }
  .large-mr-9 {
    margin-right: 4rem !important;
  }
  .large-mb-9 {
    margin-bottom: 4rem !important;
  }
  .large-ml-9 {
    margin-left: 4rem !important;
  }
  .large-p-9 {
    padding: 4rem !important;
  }
  .large-px-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .large-py-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .large-pt-9 {
    padding-top: 4rem !important;
  }
  .large-pr-9 {
    padding-right: 4rem !important;
  }
  .large-pb-9 {
    padding-bottom: 4rem !important;
  }
  .large-pl-9 {
    padding-left: 4rem !important;
  }
  .large-m-10 {
    margin: 5rem !important;
  }
  .large-mx-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .large-my-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .large-mt-10 {
    margin-top: 5rem !important;
  }
  .large-mr-10 {
    margin-right: 5rem !important;
  }
  .large-mb-10 {
    margin-bottom: 5rem !important;
  }
  .large-ml-10 {
    margin-left: 5rem !important;
  }
  .large-p-10 {
    padding: 5rem !important;
  }
  .large-px-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .large-py-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .large-pt-10 {
    padding-top: 5rem !important;
  }
  .large-pr-10 {
    padding-right: 5rem !important;
  }
  .large-pb-10 {
    padding-bottom: 5rem !important;
  }
  .large-pl-10 {
    padding-left: 5rem !important;
  }
  .large-m-12 {
    margin: 6rem !important;
  }
  .large-mx-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .large-my-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .large-mt-12 {
    margin-top: 6rem !important;
  }
  .large-mr-12 {
    margin-right: 6rem !important;
  }
  .large-mb-12 {
    margin-bottom: 6rem !important;
  }
  .large-ml-12 {
    margin-left: 6rem !important;
  }
  .large-p-12 {
    padding: 6rem !important;
  }
  .large-px-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .large-py-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .large-pt-12 {
    padding-top: 6rem !important;
  }
  .large-pr-12 {
    padding-right: 6rem !important;
  }
  .large-pb-12 {
    padding-bottom: 6rem !important;
  }
  .large-pl-12 {
    padding-left: 6rem !important;
  }
  .large-m-16 {
    margin: 8rem !important;
  }
  .large-mx-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .large-my-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .large-mt-16 {
    margin-top: 8rem !important;
  }
  .large-mr-16 {
    margin-right: 8rem !important;
  }
  .large-mb-16 {
    margin-bottom: 8rem !important;
  }
  .large-ml-16 {
    margin-left: 8rem !important;
  }
  .large-p-16 {
    padding: 8rem !important;
  }
  .large-px-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .large-py-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .large-pt-16 {
    padding-top: 8rem !important;
  }
  .large-pr-16 {
    padding-right: 8rem !important;
  }
  .large-pb-16 {
    padding-bottom: 8rem !important;
  }
  .large-pl-16 {
    padding-left: 8rem !important;
  }
  .large-m-20 {
    margin: 10rem !important;
  }
  .large-mx-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .large-my-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .large-mt-20 {
    margin-top: 10rem !important;
  }
  .large-mr-20 {
    margin-right: 10rem !important;
  }
  .large-mb-20 {
    margin-bottom: 10rem !important;
  }
  .large-ml-20 {
    margin-left: 10rem !important;
  }
  .large-p-20 {
    padding: 10rem !important;
  }
  .large-px-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .large-py-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .large-pt-20 {
    padding-top: 10rem !important;
  }
  .large-pr-20 {
    padding-right: 10rem !important;
  }
  .large-pb-20 {
    padding-bottom: 10rem !important;
  }
  .large-pl-20 {
    padding-left: 10rem !important;
  }
  .large-m-auto {
    margin: auto !important;
  }
  .large-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .large-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .large-mt-auto {
    margin-top: auto !important;
  }
  .large-mr-auto {
    margin-right: auto !important;
  }
  .large-mb-auto {
    margin-bottom: auto !important;
  }
  .large-ml-auto {
    margin-left: auto !important;
  }
  .large-p-auto {
    padding: auto !important;
  }
  .large-px-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .large-py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .large-pt-auto {
    padding-top: auto !important;
  }
  .large-pr-auto {
    padding-right: auto !important;
  }
  .large-pb-auto {
    padding-bottom: auto !important;
  }
  .large-pl-auto {
    padding-left: auto !important;
  }
}
@media screen and (min-width: 1200px) {
  .xlarge-m-0 {
    margin: 0 !important;
  }
  .xlarge-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xlarge-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xlarge-mt-0 {
    margin-top: 0 !important;
  }
  .xlarge-mr-0 {
    margin-right: 0 !important;
  }
  .xlarge-mb-0 {
    margin-bottom: 0 !important;
  }
  .xlarge-ml-0 {
    margin-left: 0 !important;
  }
  .xlarge-p-0 {
    padding: 0 !important;
  }
  .xlarge-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xlarge-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xlarge-pt-0 {
    padding-top: 0 !important;
  }
  .xlarge-pr-0 {
    padding-right: 0 !important;
  }
  .xlarge-pb-0 {
    padding-bottom: 0 !important;
  }
  .xlarge-pl-0 {
    padding-left: 0 !important;
  }
  .xlarge-m-1 {
    margin: 0.25rem !important;
  }
  .xlarge-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xlarge-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xlarge-mt-1 {
    margin-top: 0.25rem !important;
  }
  .xlarge-mr-1 {
    margin-right: 0.25rem !important;
  }
  .xlarge-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xlarge-ml-1 {
    margin-left: 0.25rem !important;
  }
  .xlarge-p-1 {
    padding: 0.25rem !important;
  }
  .xlarge-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xlarge-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xlarge-pt-1 {
    padding-top: 0.25rem !important;
  }
  .xlarge-pr-1 {
    padding-right: 0.25rem !important;
  }
  .xlarge-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xlarge-pl-1 {
    padding-left: 0.25rem !important;
  }
  .xlarge-m-2 {
    margin: 0.5rem !important;
  }
  .xlarge-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xlarge-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xlarge-mt-2 {
    margin-top: 0.5rem !important;
  }
  .xlarge-mr-2 {
    margin-right: 0.5rem !important;
  }
  .xlarge-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xlarge-ml-2 {
    margin-left: 0.5rem !important;
  }
  .xlarge-p-2 {
    padding: 0.5rem !important;
  }
  .xlarge-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xlarge-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xlarge-pt-2 {
    padding-top: 0.5rem !important;
  }
  .xlarge-pr-2 {
    padding-right: 0.5rem !important;
  }
  .xlarge-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xlarge-pl-2 {
    padding-left: 0.5rem !important;
  }
  .xlarge-m-3 {
    margin: 0.75rem !important;
  }
  .xlarge-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xlarge-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xlarge-mt-3 {
    margin-top: 0.75rem !important;
  }
  .xlarge-mr-3 {
    margin-right: 0.75rem !important;
  }
  .xlarge-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xlarge-ml-3 {
    margin-left: 0.75rem !important;
  }
  .xlarge-p-3 {
    padding: 0.75rem !important;
  }
  .xlarge-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xlarge-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xlarge-pt-3 {
    padding-top: 0.75rem !important;
  }
  .xlarge-pr-3 {
    padding-right: 0.75rem !important;
  }
  .xlarge-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xlarge-pl-3 {
    padding-left: 0.75rem !important;
  }
  .xlarge-m-4 {
    margin: 1rem !important;
  }
  .xlarge-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xlarge-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xlarge-mt-4 {
    margin-top: 1rem !important;
  }
  .xlarge-mr-4 {
    margin-right: 1rem !important;
  }
  .xlarge-mb-4 {
    margin-bottom: 1rem !important;
  }
  .xlarge-ml-4 {
    margin-left: 1rem !important;
  }
  .xlarge-p-4 {
    padding: 1rem !important;
  }
  .xlarge-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xlarge-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xlarge-pt-4 {
    padding-top: 1rem !important;
  }
  .xlarge-pr-4 {
    padding-right: 1rem !important;
  }
  .xlarge-pb-4 {
    padding-bottom: 1rem !important;
  }
  .xlarge-pl-4 {
    padding-left: 1rem !important;
  }
  .xlarge-m-5 {
    margin: 1.5rem !important;
  }
  .xlarge-mx-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xlarge-my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xlarge-mt-5 {
    margin-top: 1.5rem !important;
  }
  .xlarge-mr-5 {
    margin-right: 1.5rem !important;
  }
  .xlarge-mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .xlarge-ml-5 {
    margin-left: 1.5rem !important;
  }
  .xlarge-p-5 {
    padding: 1.5rem !important;
  }
  .xlarge-px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xlarge-py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xlarge-pt-5 {
    padding-top: 1.5rem !important;
  }
  .xlarge-pr-5 {
    padding-right: 1.5rem !important;
  }
  .xlarge-pb-5 {
    padding-bottom: 1.5rem !important;
  }
  .xlarge-pl-5 {
    padding-left: 1.5rem !important;
  }
  .xlarge-m-6 {
    margin: 2rem !important;
  }
  .xlarge-mx-6 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xlarge-my-6 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xlarge-mt-6 {
    margin-top: 2rem !important;
  }
  .xlarge-mr-6 {
    margin-right: 2rem !important;
  }
  .xlarge-mb-6 {
    margin-bottom: 2rem !important;
  }
  .xlarge-ml-6 {
    margin-left: 2rem !important;
  }
  .xlarge-p-6 {
    padding: 2rem !important;
  }
  .xlarge-px-6 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xlarge-py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xlarge-pt-6 {
    padding-top: 2rem !important;
  }
  .xlarge-pr-6 {
    padding-right: 2rem !important;
  }
  .xlarge-pb-6 {
    padding-bottom: 2rem !important;
  }
  .xlarge-pl-6 {
    padding-left: 2rem !important;
  }
  .xlarge-m-7 {
    margin: 2.5rem !important;
  }
  .xlarge-mx-7 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xlarge-my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xlarge-mt-7 {
    margin-top: 2.5rem !important;
  }
  .xlarge-mr-7 {
    margin-right: 2.5rem !important;
  }
  .xlarge-mb-7 {
    margin-bottom: 2.5rem !important;
  }
  .xlarge-ml-7 {
    margin-left: 2.5rem !important;
  }
  .xlarge-p-7 {
    padding: 2.5rem !important;
  }
  .xlarge-px-7 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xlarge-py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xlarge-pt-7 {
    padding-top: 2.5rem !important;
  }
  .xlarge-pr-7 {
    padding-right: 2.5rem !important;
  }
  .xlarge-pb-7 {
    padding-bottom: 2.5rem !important;
  }
  .xlarge-pl-7 {
    padding-left: 2.5rem !important;
  }
  .xlarge-m-8 {
    margin: 3rem !important;
  }
  .xlarge-mx-8 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xlarge-my-8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xlarge-mt-8 {
    margin-top: 3rem !important;
  }
  .xlarge-mr-8 {
    margin-right: 3rem !important;
  }
  .xlarge-mb-8 {
    margin-bottom: 3rem !important;
  }
  .xlarge-ml-8 {
    margin-left: 3rem !important;
  }
  .xlarge-p-8 {
    padding: 3rem !important;
  }
  .xlarge-px-8 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xlarge-py-8 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xlarge-pt-8 {
    padding-top: 3rem !important;
  }
  .xlarge-pr-8 {
    padding-right: 3rem !important;
  }
  .xlarge-pb-8 {
    padding-bottom: 3rem !important;
  }
  .xlarge-pl-8 {
    padding-left: 3rem !important;
  }
  .xlarge-m-9 {
    margin: 4rem !important;
  }
  .xlarge-mx-9 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xlarge-my-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xlarge-mt-9 {
    margin-top: 4rem !important;
  }
  .xlarge-mr-9 {
    margin-right: 4rem !important;
  }
  .xlarge-mb-9 {
    margin-bottom: 4rem !important;
  }
  .xlarge-ml-9 {
    margin-left: 4rem !important;
  }
  .xlarge-p-9 {
    padding: 4rem !important;
  }
  .xlarge-px-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xlarge-py-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xlarge-pt-9 {
    padding-top: 4rem !important;
  }
  .xlarge-pr-9 {
    padding-right: 4rem !important;
  }
  .xlarge-pb-9 {
    padding-bottom: 4rem !important;
  }
  .xlarge-pl-9 {
    padding-left: 4rem !important;
  }
  .xlarge-m-10 {
    margin: 5rem !important;
  }
  .xlarge-mx-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xlarge-my-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xlarge-mt-10 {
    margin-top: 5rem !important;
  }
  .xlarge-mr-10 {
    margin-right: 5rem !important;
  }
  .xlarge-mb-10 {
    margin-bottom: 5rem !important;
  }
  .xlarge-ml-10 {
    margin-left: 5rem !important;
  }
  .xlarge-p-10 {
    padding: 5rem !important;
  }
  .xlarge-px-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xlarge-py-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xlarge-pt-10 {
    padding-top: 5rem !important;
  }
  .xlarge-pr-10 {
    padding-right: 5rem !important;
  }
  .xlarge-pb-10 {
    padding-bottom: 5rem !important;
  }
  .xlarge-pl-10 {
    padding-left: 5rem !important;
  }
  .xlarge-m-12 {
    margin: 6rem !important;
  }
  .xlarge-mx-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xlarge-my-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xlarge-mt-12 {
    margin-top: 6rem !important;
  }
  .xlarge-mr-12 {
    margin-right: 6rem !important;
  }
  .xlarge-mb-12 {
    margin-bottom: 6rem !important;
  }
  .xlarge-ml-12 {
    margin-left: 6rem !important;
  }
  .xlarge-p-12 {
    padding: 6rem !important;
  }
  .xlarge-px-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xlarge-py-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xlarge-pt-12 {
    padding-top: 6rem !important;
  }
  .xlarge-pr-12 {
    padding-right: 6rem !important;
  }
  .xlarge-pb-12 {
    padding-bottom: 6rem !important;
  }
  .xlarge-pl-12 {
    padding-left: 6rem !important;
  }
  .xlarge-m-16 {
    margin: 8rem !important;
  }
  .xlarge-mx-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xlarge-my-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xlarge-mt-16 {
    margin-top: 8rem !important;
  }
  .xlarge-mr-16 {
    margin-right: 8rem !important;
  }
  .xlarge-mb-16 {
    margin-bottom: 8rem !important;
  }
  .xlarge-ml-16 {
    margin-left: 8rem !important;
  }
  .xlarge-p-16 {
    padding: 8rem !important;
  }
  .xlarge-px-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xlarge-py-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xlarge-pt-16 {
    padding-top: 8rem !important;
  }
  .xlarge-pr-16 {
    padding-right: 8rem !important;
  }
  .xlarge-pb-16 {
    padding-bottom: 8rem !important;
  }
  .xlarge-pl-16 {
    padding-left: 8rem !important;
  }
  .xlarge-m-20 {
    margin: 10rem !important;
  }
  .xlarge-mx-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xlarge-my-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xlarge-mt-20 {
    margin-top: 10rem !important;
  }
  .xlarge-mr-20 {
    margin-right: 10rem !important;
  }
  .xlarge-mb-20 {
    margin-bottom: 10rem !important;
  }
  .xlarge-ml-20 {
    margin-left: 10rem !important;
  }
  .xlarge-p-20 {
    padding: 10rem !important;
  }
  .xlarge-px-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xlarge-py-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .xlarge-pt-20 {
    padding-top: 10rem !important;
  }
  .xlarge-pr-20 {
    padding-right: 10rem !important;
  }
  .xlarge-pb-20 {
    padding-bottom: 10rem !important;
  }
  .xlarge-pl-20 {
    padding-left: 10rem !important;
  }
  .xlarge-m-auto {
    margin: auto !important;
  }
  .xlarge-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xlarge-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .xlarge-mt-auto {
    margin-top: auto !important;
  }
  .xlarge-mr-auto {
    margin-right: auto !important;
  }
  .xlarge-mb-auto {
    margin-bottom: auto !important;
  }
  .xlarge-ml-auto {
    margin-left: auto !important;
  }
  .xlarge-p-auto {
    padding: auto !important;
  }
  .xlarge-px-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .xlarge-py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .xlarge-pt-auto {
    padding-top: auto !important;
  }
  .xlarge-pr-auto {
    padding-right: auto !important;
  }
  .xlarge-pb-auto {
    padding-bottom: auto !important;
  }
  .xlarge-pl-auto {
    padding-left: auto !important;
  }
}
@media screen and (min-width: 1440px) {
  .xxlarge-m-0 {
    margin: 0 !important;
  }
  .xxlarge-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xxlarge-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xxlarge-mt-0 {
    margin-top: 0 !important;
  }
  .xxlarge-mr-0 {
    margin-right: 0 !important;
  }
  .xxlarge-mb-0 {
    margin-bottom: 0 !important;
  }
  .xxlarge-ml-0 {
    margin-left: 0 !important;
  }
  .xxlarge-p-0 {
    padding: 0 !important;
  }
  .xxlarge-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xxlarge-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xxlarge-pt-0 {
    padding-top: 0 !important;
  }
  .xxlarge-pr-0 {
    padding-right: 0 !important;
  }
  .xxlarge-pb-0 {
    padding-bottom: 0 !important;
  }
  .xxlarge-pl-0 {
    padding-left: 0 !important;
  }
  .xxlarge-m-1 {
    margin: 0.25rem !important;
  }
  .xxlarge-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xxlarge-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xxlarge-mt-1 {
    margin-top: 0.25rem !important;
  }
  .xxlarge-mr-1 {
    margin-right: 0.25rem !important;
  }
  .xxlarge-mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xxlarge-ml-1 {
    margin-left: 0.25rem !important;
  }
  .xxlarge-p-1 {
    padding: 0.25rem !important;
  }
  .xxlarge-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xxlarge-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xxlarge-pt-1 {
    padding-top: 0.25rem !important;
  }
  .xxlarge-pr-1 {
    padding-right: 0.25rem !important;
  }
  .xxlarge-pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xxlarge-pl-1 {
    padding-left: 0.25rem !important;
  }
  .xxlarge-m-2 {
    margin: 0.5rem !important;
  }
  .xxlarge-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xxlarge-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xxlarge-mt-2 {
    margin-top: 0.5rem !important;
  }
  .xxlarge-mr-2 {
    margin-right: 0.5rem !important;
  }
  .xxlarge-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xxlarge-ml-2 {
    margin-left: 0.5rem !important;
  }
  .xxlarge-p-2 {
    padding: 0.5rem !important;
  }
  .xxlarge-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xxlarge-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xxlarge-pt-2 {
    padding-top: 0.5rem !important;
  }
  .xxlarge-pr-2 {
    padding-right: 0.5rem !important;
  }
  .xxlarge-pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xxlarge-pl-2 {
    padding-left: 0.5rem !important;
  }
  .xxlarge-m-3 {
    margin: 0.75rem !important;
  }
  .xxlarge-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xxlarge-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xxlarge-mt-3 {
    margin-top: 0.75rem !important;
  }
  .xxlarge-mr-3 {
    margin-right: 0.75rem !important;
  }
  .xxlarge-mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xxlarge-ml-3 {
    margin-left: 0.75rem !important;
  }
  .xxlarge-p-3 {
    padding: 0.75rem !important;
  }
  .xxlarge-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xxlarge-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xxlarge-pt-3 {
    padding-top: 0.75rem !important;
  }
  .xxlarge-pr-3 {
    padding-right: 0.75rem !important;
  }
  .xxlarge-pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xxlarge-pl-3 {
    padding-left: 0.75rem !important;
  }
  .xxlarge-m-4 {
    margin: 1rem !important;
  }
  .xxlarge-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xxlarge-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xxlarge-mt-4 {
    margin-top: 1rem !important;
  }
  .xxlarge-mr-4 {
    margin-right: 1rem !important;
  }
  .xxlarge-mb-4 {
    margin-bottom: 1rem !important;
  }
  .xxlarge-ml-4 {
    margin-left: 1rem !important;
  }
  .xxlarge-p-4 {
    padding: 1rem !important;
  }
  .xxlarge-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xxlarge-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xxlarge-pt-4 {
    padding-top: 1rem !important;
  }
  .xxlarge-pr-4 {
    padding-right: 1rem !important;
  }
  .xxlarge-pb-4 {
    padding-bottom: 1rem !important;
  }
  .xxlarge-pl-4 {
    padding-left: 1rem !important;
  }
  .xxlarge-m-5 {
    margin: 1.5rem !important;
  }
  .xxlarge-mx-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xxlarge-my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xxlarge-mt-5 {
    margin-top: 1.5rem !important;
  }
  .xxlarge-mr-5 {
    margin-right: 1.5rem !important;
  }
  .xxlarge-mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .xxlarge-ml-5 {
    margin-left: 1.5rem !important;
  }
  .xxlarge-p-5 {
    padding: 1.5rem !important;
  }
  .xxlarge-px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xxlarge-py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xxlarge-pt-5 {
    padding-top: 1.5rem !important;
  }
  .xxlarge-pr-5 {
    padding-right: 1.5rem !important;
  }
  .xxlarge-pb-5 {
    padding-bottom: 1.5rem !important;
  }
  .xxlarge-pl-5 {
    padding-left: 1.5rem !important;
  }
  .xxlarge-m-6 {
    margin: 2rem !important;
  }
  .xxlarge-mx-6 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xxlarge-my-6 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xxlarge-mt-6 {
    margin-top: 2rem !important;
  }
  .xxlarge-mr-6 {
    margin-right: 2rem !important;
  }
  .xxlarge-mb-6 {
    margin-bottom: 2rem !important;
  }
  .xxlarge-ml-6 {
    margin-left: 2rem !important;
  }
  .xxlarge-p-6 {
    padding: 2rem !important;
  }
  .xxlarge-px-6 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xxlarge-py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xxlarge-pt-6 {
    padding-top: 2rem !important;
  }
  .xxlarge-pr-6 {
    padding-right: 2rem !important;
  }
  .xxlarge-pb-6 {
    padding-bottom: 2rem !important;
  }
  .xxlarge-pl-6 {
    padding-left: 2rem !important;
  }
  .xxlarge-m-7 {
    margin: 2.5rem !important;
  }
  .xxlarge-mx-7 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xxlarge-my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xxlarge-mt-7 {
    margin-top: 2.5rem !important;
  }
  .xxlarge-mr-7 {
    margin-right: 2.5rem !important;
  }
  .xxlarge-mb-7 {
    margin-bottom: 2.5rem !important;
  }
  .xxlarge-ml-7 {
    margin-left: 2.5rem !important;
  }
  .xxlarge-p-7 {
    padding: 2.5rem !important;
  }
  .xxlarge-px-7 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xxlarge-py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .xxlarge-pt-7 {
    padding-top: 2.5rem !important;
  }
  .xxlarge-pr-7 {
    padding-right: 2.5rem !important;
  }
  .xxlarge-pb-7 {
    padding-bottom: 2.5rem !important;
  }
  .xxlarge-pl-7 {
    padding-left: 2.5rem !important;
  }
  .xxlarge-m-8 {
    margin: 3rem !important;
  }
  .xxlarge-mx-8 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xxlarge-my-8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xxlarge-mt-8 {
    margin-top: 3rem !important;
  }
  .xxlarge-mr-8 {
    margin-right: 3rem !important;
  }
  .xxlarge-mb-8 {
    margin-bottom: 3rem !important;
  }
  .xxlarge-ml-8 {
    margin-left: 3rem !important;
  }
  .xxlarge-p-8 {
    padding: 3rem !important;
  }
  .xxlarge-px-8 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xxlarge-py-8 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xxlarge-pt-8 {
    padding-top: 3rem !important;
  }
  .xxlarge-pr-8 {
    padding-right: 3rem !important;
  }
  .xxlarge-pb-8 {
    padding-bottom: 3rem !important;
  }
  .xxlarge-pl-8 {
    padding-left: 3rem !important;
  }
  .xxlarge-m-9 {
    margin: 4rem !important;
  }
  .xxlarge-mx-9 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xxlarge-my-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xxlarge-mt-9 {
    margin-top: 4rem !important;
  }
  .xxlarge-mr-9 {
    margin-right: 4rem !important;
  }
  .xxlarge-mb-9 {
    margin-bottom: 4rem !important;
  }
  .xxlarge-ml-9 {
    margin-left: 4rem !important;
  }
  .xxlarge-p-9 {
    padding: 4rem !important;
  }
  .xxlarge-px-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xxlarge-py-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xxlarge-pt-9 {
    padding-top: 4rem !important;
  }
  .xxlarge-pr-9 {
    padding-right: 4rem !important;
  }
  .xxlarge-pb-9 {
    padding-bottom: 4rem !important;
  }
  .xxlarge-pl-9 {
    padding-left: 4rem !important;
  }
  .xxlarge-m-10 {
    margin: 5rem !important;
  }
  .xxlarge-mx-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xxlarge-my-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xxlarge-mt-10 {
    margin-top: 5rem !important;
  }
  .xxlarge-mr-10 {
    margin-right: 5rem !important;
  }
  .xxlarge-mb-10 {
    margin-bottom: 5rem !important;
  }
  .xxlarge-ml-10 {
    margin-left: 5rem !important;
  }
  .xxlarge-p-10 {
    padding: 5rem !important;
  }
  .xxlarge-px-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xxlarge-py-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xxlarge-pt-10 {
    padding-top: 5rem !important;
  }
  .xxlarge-pr-10 {
    padding-right: 5rem !important;
  }
  .xxlarge-pb-10 {
    padding-bottom: 5rem !important;
  }
  .xxlarge-pl-10 {
    padding-left: 5rem !important;
  }
  .xxlarge-m-12 {
    margin: 6rem !important;
  }
  .xxlarge-mx-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xxlarge-my-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xxlarge-mt-12 {
    margin-top: 6rem !important;
  }
  .xxlarge-mr-12 {
    margin-right: 6rem !important;
  }
  .xxlarge-mb-12 {
    margin-bottom: 6rem !important;
  }
  .xxlarge-ml-12 {
    margin-left: 6rem !important;
  }
  .xxlarge-p-12 {
    padding: 6rem !important;
  }
  .xxlarge-px-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xxlarge-py-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xxlarge-pt-12 {
    padding-top: 6rem !important;
  }
  .xxlarge-pr-12 {
    padding-right: 6rem !important;
  }
  .xxlarge-pb-12 {
    padding-bottom: 6rem !important;
  }
  .xxlarge-pl-12 {
    padding-left: 6rem !important;
  }
  .xxlarge-m-16 {
    margin: 8rem !important;
  }
  .xxlarge-mx-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xxlarge-my-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xxlarge-mt-16 {
    margin-top: 8rem !important;
  }
  .xxlarge-mr-16 {
    margin-right: 8rem !important;
  }
  .xxlarge-mb-16 {
    margin-bottom: 8rem !important;
  }
  .xxlarge-ml-16 {
    margin-left: 8rem !important;
  }
  .xxlarge-p-16 {
    padding: 8rem !important;
  }
  .xxlarge-px-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xxlarge-py-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xxlarge-pt-16 {
    padding-top: 8rem !important;
  }
  .xxlarge-pr-16 {
    padding-right: 8rem !important;
  }
  .xxlarge-pb-16 {
    padding-bottom: 8rem !important;
  }
  .xxlarge-pl-16 {
    padding-left: 8rem !important;
  }
  .xxlarge-m-20 {
    margin: 10rem !important;
  }
  .xxlarge-mx-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xxlarge-my-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xxlarge-mt-20 {
    margin-top: 10rem !important;
  }
  .xxlarge-mr-20 {
    margin-right: 10rem !important;
  }
  .xxlarge-mb-20 {
    margin-bottom: 10rem !important;
  }
  .xxlarge-ml-20 {
    margin-left: 10rem !important;
  }
  .xxlarge-p-20 {
    padding: 10rem !important;
  }
  .xxlarge-px-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xxlarge-py-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .xxlarge-pt-20 {
    padding-top: 10rem !important;
  }
  .xxlarge-pr-20 {
    padding-right: 10rem !important;
  }
  .xxlarge-pb-20 {
    padding-bottom: 10rem !important;
  }
  .xxlarge-pl-20 {
    padding-left: 10rem !important;
  }
  .xxlarge-m-auto {
    margin: auto !important;
  }
  .xxlarge-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xxlarge-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .xxlarge-mt-auto {
    margin-top: auto !important;
  }
  .xxlarge-mr-auto {
    margin-right: auto !important;
  }
  .xxlarge-mb-auto {
    margin-bottom: auto !important;
  }
  .xxlarge-ml-auto {
    margin-left: auto !important;
  }
  .xxlarge-p-auto {
    padding: auto !important;
  }
  .xxlarge-px-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .xxlarge-py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .xxlarge-pt-auto {
    padding-top: auto !important;
  }
  .xxlarge-pr-auto {
    padding-right: auto !important;
  }
  .xxlarge-pb-auto {
    padding-bottom: auto !important;
  }
  .xxlarge-pl-auto {
    padding-left: auto !important;
  }
}
.-m-1 {
  margin: -0.25rem !important;
}

.-mx-1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.-my-1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.-mt-1 {
  margin-top: -0.25rem !important;
}

.-mr-1 {
  margin-right: -0.25rem !important;
}

.-mb-1 {
  margin-bottom: -0.25rem !important;
}

.-ml-1 {
  margin-left: -0.25rem !important;
}

.-m-2 {
  margin: -0.5rem !important;
}

.-mx-2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.-my-2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.-mt-2 {
  margin-top: -0.5rem !important;
}

.-mr-2 {
  margin-right: -0.5rem !important;
}

.-mb-2 {
  margin-bottom: -0.5rem !important;
}

.-ml-2 {
  margin-left: -0.5rem !important;
}

.-m-3 {
  margin: -0.75rem !important;
}

.-mx-3 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.-my-3 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.-mt-3 {
  margin-top: -0.75rem !important;
}

.-mr-3 {
  margin-right: -0.75rem !important;
}

.-mb-3 {
  margin-bottom: -0.75rem !important;
}

.-ml-3 {
  margin-left: -0.75rem !important;
}

.-m-4 {
  margin: -1rem !important;
}

.-mx-4 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.-my-4 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.-mt-4 {
  margin-top: -1rem !important;
}

.-mr-4 {
  margin-right: -1rem !important;
}

.-mb-4 {
  margin-bottom: -1rem !important;
}

.-ml-4 {
  margin-left: -1rem !important;
}

.-m-5 {
  margin: -1.5rem !important;
}

.-mx-5 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.-my-5 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.-mt-5 {
  margin-top: -1.5rem !important;
}

.-mr-5 {
  margin-right: -1.5rem !important;
}

.-mb-5 {
  margin-bottom: -1.5rem !important;
}

.-ml-5 {
  margin-left: -1.5rem !important;
}

.-m-6 {
  margin: -2rem !important;
}

.-mx-6 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.-my-6 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.-mt-6 {
  margin-top: -2rem !important;
}

.-mr-6 {
  margin-right: -2rem !important;
}

.-mb-6 {
  margin-bottom: -2rem !important;
}

.-ml-6 {
  margin-left: -2rem !important;
}

.-m-7 {
  margin: -2.5rem !important;
}

.-mx-7 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.-my-7 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.-mt-7 {
  margin-top: -2.5rem !important;
}

.-mr-7 {
  margin-right: -2.5rem !important;
}

.-mb-7 {
  margin-bottom: -2.5rem !important;
}

.-ml-7 {
  margin-left: -2.5rem !important;
}

.-m-8 {
  margin: -3rem !important;
}

.-mx-8 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.-my-8 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.-mt-8 {
  margin-top: -3rem !important;
}

.-mr-8 {
  margin-right: -3rem !important;
}

.-mb-8 {
  margin-bottom: -3rem !important;
}

.-ml-8 {
  margin-left: -3rem !important;
}

.-m-9 {
  margin: -4rem !important;
}

.-mx-9 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.-my-9 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.-mt-9 {
  margin-top: -4rem !important;
}

.-mr-9 {
  margin-right: -4rem !important;
}

.-mb-9 {
  margin-bottom: -4rem !important;
}

.-ml-9 {
  margin-left: -4rem !important;
}

.-m-10 {
  margin: -5rem !important;
}

.-mx-10 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.-my-10 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.-mt-10 {
  margin-top: -5rem !important;
}

.-mr-10 {
  margin-right: -5rem !important;
}

.-mb-10 {
  margin-bottom: -5rem !important;
}

.-ml-10 {
  margin-left: -5rem !important;
}

.-m-12 {
  margin: -6rem !important;
}

.-mx-12 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.-my-12 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.-mt-12 {
  margin-top: -6rem !important;
}

.-mr-12 {
  margin-right: -6rem !important;
}

.-mb-12 {
  margin-bottom: -6rem !important;
}

.-ml-12 {
  margin-left: -6rem !important;
}

.-m-16 {
  margin: -8rem !important;
}

.-mx-16 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.-my-16 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.-mt-16 {
  margin-top: -8rem !important;
}

.-mr-16 {
  margin-right: -8rem !important;
}

.-mb-16 {
  margin-bottom: -8rem !important;
}

.-ml-16 {
  margin-left: -8rem !important;
}

.-m-20 {
  margin: -10rem !important;
}

.-mx-20 {
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}

.-my-20 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.-mt-20 {
  margin-top: -10rem !important;
}

.-mr-20 {
  margin-right: -10rem !important;
}

.-mb-20 {
  margin-bottom: -10rem !important;
}

.-ml-20 {
  margin-left: -10rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-spacing-small {
  margin-bottom: 0.5rem;
}
.wp-spacing-medium {
  margin-bottom: 1rem;
}
.wp-spacing-large {
  margin-bottom: 2rem;
}

/*
EJEMPLOS DE CLASES GENERADAS:

Margin:
- m-4 (margin: 1rem)
- mx-6 (margin-left: 2rem; margin-right: 2rem)
- my-2 (margin-top: 0.5rem; margin-bottom: 0.5rem)
- mt-8 (margin-top: 3rem)

Padding:
- p-4 (padding: 1rem)
- px-6 (padding-left: 2rem; padding-right: 2rem)
- py-2 (padding-top: 0.5rem; padding-bottom: 0.5rem)
- pt-8 (padding-top: 3rem)

Responsivas:
- medium-mt-6 (margin-top: 2rem en medium y superior)
- large-py-8 (padding vertical: 3rem en large y superior)

Margin negativo:
- -mx-4 (margin-left: -1rem; margin-right: -1rem)

Especiales:
- mx-auto (centrar horizontalmente)
- wp-spacing-medium (margin-bottom para WordPress)
*/
.home-template h1 {
  font-family: "Playfair Display", serif;
}
.home-template h2 {
  color: var(--secondary-dark);
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
}
.home-template .featured-posts h3 {
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.3rem);
}
.home-template .hero-section {
  min-height: 45vh;
  background-position: center 30%;
}
.home-template .hero-section .hero-content {
  max-width: 900px;
}
.home-template .hero-section h1 {
  margin-bottom: var(--space-4, 1rem);
}
.home-template .hero-section p {
  margin-bottom: var(--space-5, 1.5rem);
}
.home-template .featured-posts .card {
  display: grid;
  grid-template-columns: 1fr;
}
.home-template .featured-posts .featured-article {
  border: 0;
  box-shadow: none;
}
.home-template .featured-posts .featured-article .featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/*# sourceMappingURL=landing.css.map */
