/*
   =========
      Colors
   =========
*/
:root {
  --ja-primary: #E7004C;
  --ja-primary--light: #E14579;
  --ja-secondary: #FF8300;
  --ja-base: #FFFFFF;
  --ja-neutral: #5b6670;
}

/*
   ==========
      Spacing
   ==========
*/
/*
   =============
      Typography
   =============
*/
/* For browsers that support clamp  */
@supports (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
    --text-5xs: clamp(0.26rem, -0.07vi + 0.28rem, 0.22rem);
    --text-4xs: clamp(0.33rem, -0.05vi + 0.34rem, 0.3rem);
    --text-3xs: clamp(0.41rem, -0.02vi + 0.41rem, 0.4rem);
    --text-2xs: clamp(0.51rem, 0.03vi + 0.51rem, 0.53rem);
    --text-xs: clamp(0.64rem, 0.11vi + 0.62rem, 0.7rem);
    --text-sm: clamp(0.8rem, 0.23vi + 0.75rem, 0.94rem);
    --text-base: clamp(1rem, 0.42vi + 0.92rem, 1.25rem);
    --text-md: clamp(1.25rem, 0.69vi + 1.11rem, 1.67rem);
    --text-2md: clamp(1.25rem, 0.69vi + 1.11rem, 2rem);
    --text-lg: clamp(1.56rem, 1.1vi + 1.34rem, 2.5rem);
    --text-xl: clamp(1.95rem, 1.68vi + 1.62rem, 2.96rem);
    --text-2xl: clamp(2.44rem, 2.51vi + 1.94rem, 3.95rem);
    --text-3xl: clamp(3.05rem, 3.68vi + 2.32rem, 5.26rem);
    --text-4xl: clamp(3.81rem, 5.33vi + 2.75rem, 7.01rem);
    --text-5xl: clamp(4.77rem, 7.63vi + 3.24rem, 9.35rem);
  }
}
/* For browsers that don't support clamp */
@supports not (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
    --text-5xs: 0.26rem;
    --text-4xs: 0.33rem;
    --text-3xs: 0.41rem;
    --text-2xs: 0.51rem;
    --text-xs: 0.64rem;
    --text-sm: 0.8rem;
    --text-base: 1rem;
    --text-md: 1.25rem;
    --text-lg: 1.56rem;
    --text-xl: 1.95rem;
    --text-2xl: 2.44rem;
    --text-3xl: 3.05rem;
    --text-4xl: 3.81rem;
    --text-5xl: 4.77rem;
  }
  @media screen and (min-width: 1280px) {
    :root {
      --text-5xs: 0.22rem;
      --text-4xs: 0.3rem;
      --text-3xs: 0.4rem;
      --text-2xs: 0.53rem;
      --text-xs: 0.7rem;
      --text-sm: 0.94rem;
      --text-base: 1.25rem;
      --text-md: 1.67rem;
      --text-lg: 2.22rem;
      --text-xl: 2.96rem;
      --text-2xl: 3.95rem;
      --text-3xl: 5.26rem;
      --text-4xl: 7.01rem;
      --text-5xl: 9.35rem;
    }
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
  font-family: "Garet", sans-serif;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
  overflow-x: hidden;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

/*
   =============
      Typography
   =============
*/
*.d1,
*.d2,
*.d3,
*.d4,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 120%;
  margin-top: 0;
}

*.d1 {
  font-size: var(--text-2xl);
  font-weight: 700;
}

*.d2 {
  font-size: var(--text-xl);
  font-weight: 700;
}

*.d3 {
  font-size: var(--text-lg);
  font-weight: 600;
}

*.d4 {
  font-size: var(--text-2md);
  font-weight: 700;
}

h1,
*.h1 {
  font-size: var(--text-xl);
  font-weight: 700;
}

h2,
*.h2 {
  font-size: var(--text-lg);
  font-weight: 700;
}

h3,
*.h3 {
  font-size: var(--text-2md);
  font-weight: 500;
}

h4,
*.h4 {
  font-size: var(--text-md);
  font-weight: 500;
}

h5,
*.h5 {
  font-size: var(--text-md);
  font-weight: 600;
}

h6,
*.h6 {
  font-size: var(--text-md);
  font-weight: 600;
}

p,
li,
div,
a {
  font-size: var(--text-base);
  line-height: 160%;
  margin-top: 0;
}

*.text-100 {
  font-weight: 100 !important;
}

*.text-200 {
  font-weight: 200 !important;
}

*.text-300 {
  font-weight: 300 !important;
}

*.text-400 {
  font-weight: 400 !important;
}

*.text-500 {
  font-weight: 500 !important;
}

*.text-600 {
  font-weight: 600 !important;
}

*.text-700 {
  font-weight: 700 !important;
}

*.text-800 {
  font-weight: 800 !important;
}

*.text-900 {
  font-weight: 900 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*.text-center {
  text-align: center !important;
}

*.text-left {
  text-align: left !important;
}

*.text-right {
  text-align: right !important;
}

*.text-justify {
  text-align: justify !important;
}

*.text-primary {
  color: var(--ja-primary) !important;
}

*.text-secondary {
  color: var(--ja-secondary) !important;
}

*.text-white {
  color: var(--ja-base) !important;
}

*.hidden {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  width: 0;
  height: 0;
  opacity: 0;
}

*.block {
  display: block !important;
}

.pill-title {
  display: block;
  border-radius: 1rem;
  color: var(--ja-base);
  padding: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.pill-title.content {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.pill-title.center {
  margin-left: auto !important;
  margin-right: auto !important;
}
.pill-title.primary {
  background: var(--ja-primary) !important;
}
.pill-title.secondary {
  background: var(--ja-secondary) !important;
}

header nav, .section-container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
header nav.full, .full.section-container {
  max-width: 100%;
  width: 100%;
}

main {
  overflow-y: hidden;
}
main section {
  scroll-margin-top: 100px;
}
main section.ja-section:first-child {
  padding: clamp(12rem, calc(12 + calc(450 / 16) * calc((9.375 - 12) / (calc(1920 / 16) - calc(450 / 16))) * -1) * 1rem + calc((9.375 - 12) / (calc(1920 / 16) - calc(450 / 16))) * 100 * 1vw, 9.375rem) 0 clamp(4rem, calc(4 + calc(320 / 16) * calc((7.1875 - 4) / (calc(1920 / 16) - calc(320 / 16))) * -1) * 1rem + calc((7.1875 - 4) / (calc(1920 / 16) - calc(320 / 16))) * 100 * 1vw, 7.1875rem) 0;
}
main section.ja-section {
  background: var(--section-background);
  padding: clamp(4rem, calc(4 + calc(320 / 16) * calc((5 - 4) / (calc(1920 / 16) - calc(320 / 16))) * -1) * 1rem + calc((5 - 4) / (calc(1920 / 16) - calc(320 / 16))) * 100 * 1vw, 5rem) 0;
}

.ja-cta {
  padding: 0.75rem;
  text-align: center;
  border-radius: 1rem;
  font-weight: 600;
  color: var(--ja-base);
  width: -moz-fit-content !important;
  width: fit-content !important;
}
@media (max-width: 480px) {
  .ja-cta {
    width: 100% !important;
    box-sizing: border-box;
  }
}
.ja-cta.left {
  margin-right: auto !important;
}
.ja-cta.right {
  margin-left: auto !important;
}
.ja-cta.primary {
  background: var(--ja-primary);
}
.ja-cta.secondary {
  background: var(--ja-secondary);
}

.tooltip-element {
  position: relative;
}
.tooltip-element .tooltip {
  position: absolute;
  max-width: 400px;
  z-index: 99;
  background-color: var(--ja-base);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--ja-neutral) !important;
}

*.decorated {
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--ja-secondary);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  --size: 20px;
  --border-width: 10px;
}
*.decorated::after, *.decorated::before {
  content: "";
  display: block;
  position: absolute;
  width: var(--size);
  height: var(--size);
}
*.decorated::before {
  top: 0;
  left: 0;
  transform: translate(calc(var(--border-width) / 2 * -1), calc(var(--border-width) / 2 * -1));
  border-top: var(--border-width) solid var(--ja-secondary);
  border-left: var(--border-width) solid var(--ja-secondary);
}
*.decorated::after {
  bottom: 0;
  right: 0;
  transform: translate(calc(var(--border-width) / 2), calc(var(--border-width) / 2));
  border-bottom: var(--border-width) solid var(--ja-secondary);
  border-right: var(--border-width) solid var(--ja-secondary);
}

[x-cloak] {
  display: none !important;
}

header {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  background-color: var(--ja-secondary);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1000;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
header nav .logo img {
  width: 100%;
  max-width: 150px;
}
header nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .menu a:not(:last-child) {
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--ja-base);
}
header nav .menu a {
  color: var(--ja-base);
  font-size: 0.85rem;
}
header nav .menu img {
  width: 100%;
  max-width: 80px;
  height: auto;
}
header nav .menu.menu--mobile {
  display: none;
  font-size: 1.5rem;
  color: var(--ja-base);
  cursor: pointer;
}
header nav .icon-hamburguer-menu {
  display: none;
}
header nav .icon-hamburguer-menu svg {
  width: 30px;
  height: auto;
}
header nav .icon-hamburguer-menu svg path {
  fill: var(--ja-base);
}
@media (max-width: 1280px) {
  header nav .icon-hamburguer-menu {
    display: block;
  }
  header nav .menu:not(.menu--mobile) {
    display: none;
  }
  header nav .menu.menu--mobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50vw;
    inset: 0 0 0 auto;
    height: 100dvh;
    background-color: var(--ja-base);
    padding: 3rem 0 2rem 0;
    border-left: 10px solid var(--ja-secondary);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media (max-width: 1280px) and (max-width: 540px) {
  header nav .menu.menu--mobile {
    width: 70vw;
  }
}
@media (max-width: 1280px) {
  header nav .menu.menu--mobile.menu--open {
    transform: translateX(0);
    opacity: 1;
  }
  header nav .menu.menu--mobile a {
    border: none;
    margin: 0;
    color: var(--ja-neutral);
    font-size: var(--text-base);
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
    transition: all 150ms ease;
  }
  header nav .menu.menu--mobile a:has(img) {
    background: var(--ja-secondary);
  }
  header nav .menu.menu--mobile a:has(img):hover {
    background: rgb(229.5, 117.9, 0);
  }
  header nav .menu.menu--mobile a:hover {
    background-color: #f5f5f5;
  }
  header nav .menu.menu--mobile a:not(:last-child) {
    padding-bottom: 1rem;
    border-bottom: 1px solid #dfdfdf;
  }
  header nav .menu.menu--mobile a:not(:first-child) {
    padding-top: 1rem;
  }
  header nav .menu.menu--mobile .icon-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  header nav .menu.menu--mobile .logo {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-75%) scale(1.5);
    opacity: 0.25;
  }
}

.section-container.logos img {
  width: 100%;
  height: auto;
  margin-bottom: 2.5rem;
}

footer,
.footer {
  padding: clamp(1.5rem, calc(1.5 + calc(320 / 16) * calc((2.5 - 1.5) / (calc(1920 / 16) - calc(320 / 16))) * -1) * 1rem + calc((2.5 - 1.5) / (calc(1920 / 16) - calc(320 / 16))) * 100 * 1vw, 2.5rem) 0;
  border-bottom: 30px solid var(--ja-secondary);
  position: relative;
}
footer::before,
.footer::before {
  content: "";
  display: block;
  width: 20%;
  height: 1px;
  background-color: var(--ja-primary);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
footer .section-container .title p,
.footer .section-container .title p {
  text-align: center;
  font-weight: 600;
  color: var(--ja-primary);
}
footer .section-container .cols,
.footer .section-container .cols {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
footer .section-container .cols *,
.footer .section-container .cols * {
  font-size: var(--text-sm);
}
footer .section-container .cols .col .email,
.footer .section-container .cols .col .email {
  font-weight: 600;
  color: var(--ja-primary);
}
footer .section-container .cols .col .social-media,
.footer .section-container .cols .col .social-media {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0.5rem 0;
}
footer .section-container .cols .col .social-media .sm svg,
.footer .section-container .cols .col .social-media .sm svg {
  width: 100%;
  height: auto;
}
footer .section-container .cols .col .hashtag,
.footer .section-container .cols .col .hashtag {
  color: var(--ja-primary);
}
footer .section-container .cols .col .hashtag span,
.footer .section-container .cols .col .hashtag span {
  font-weight: 600;
}
footer .section-container .cols .col .links,
.footer .section-container .cols .col .links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
footer .section-container .cols .col .links a,
.footer .section-container .cols .col .links a {
  font-weight: 600;
  color: #3f3f3f;
}
footer .section-container .cols .col.logos,
.footer .section-container .cols .col.logos {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
footer .section-container .cols .col.logos .logo,
.footer .section-container .cols .col.logos .logo {
  max-width: 200px;
}
footer .section-container .cols .col.logos .logo img,
.footer .section-container .cols .col.logos .logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1100px) {
  footer .section-container .cols,
  .footer .section-container .cols {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .section-container .cols .col.logos,
  .footer .section-container .cols .col.logos {
    gap: 2rem;
  }
  footer .section-container .cols .col .social-media,
  .footer .section-container .cols .col .social-media {
    justify-content: center;
  }
  footer .section-container .cols .col.logos,
  .footer .section-container .cols .col.logos {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  footer .section-container .cols .col.logos .logo,
  .footer .section-container .cols .col.logos .logo {
    min-width: 100px;
  }
}

section.ja-section.footer {
  padding: clamp(2rem, calc(2 + calc(320 / 16) * calc((2 - 2) / (calc(1920 / 16) - calc(320 / 16))) * -1) * 1rem + calc((2 - 2) / (calc(1920 / 16) - calc(320 / 16))) * 100 * 1vw, 2rem) 0 clamp(2rem, calc(2 + calc(320 / 16) * calc((2 - 2) / (calc(1920 / 16) - calc(320 / 16))) * -1) * 1rem + calc((2 - 2) / (calc(1920 / 16) - calc(320 / 16))) * 100 * 1vw, 2rem) 0;
}

.page-home section.hero {
  background: linear-gradient(rgba(231, 0, 76, 0.5), rgba(231, 0, 76, 0.5)), var(--background-image);
  background-position: center;
  background-size: cover;
}
.page-home section.hero .section-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home section.hero .section-container .box {
  padding: 2.5rem 0;
  background: var(--ja-base);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
  max-width: 950px;
}
.page-home section.hero .section-container .box .ornament {
  position: absolute;
  width: 150px;
}
.page-home section.hero .section-container .box .ornament svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-home section.hero .section-container .box .ornament.top-right {
  top: 0;
  right: 0;
  transform: translate(20px, -20px);
}
.page-home section.hero .section-container .box .ornament.bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-20px, 20px);
}
.page-home section.hero .section-container .box .title,
.page-home section.hero .section-container .box .logo,
.page-home section.hero .section-container .box .quote {
  width: 90%;
  margin: 0 auto;
}
.page-home section.hero .section-container .box .title {
  width: 80%;
  font-size: var(--text-md);
  color: var(--ja-secondary);
  font-weight: 300;
  text-align: center;
}
.page-home section.hero .section-container .box .logo {
  max-width: 700px;
}
.page-home section.hero .section-container .box .logo img {
  width: 100%;
}
.page-home section.hero .section-container .box .place-and-date {
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--ja-primary--light);
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}
.page-home section.hero .section-container .box .place-and-date {
  width: -moz-fit-content;
  width: fit-content;
}
.page-home section.hero .section-container .box .place-and-date::before,
.page-home section.hero .section-container .box .place-and-date::after {
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  background: var(--ja-primary--light);
  top: 0;
  z-index: -1;
}
.page-home section.hero .section-container .box .place-and-date::after {
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.page-home section.hero .section-container .box .place-and-date .col {
  flex: 1;
  position: relative;
  z-index: 2;
}
.page-home section.hero .section-container .box .place-and-date .col .place.mobile {
  display: none;
}
@media (max-width: 768px) {
  .page-home section.hero .section-container .box .place-and-date .col .place {
    display: none;
  }
  .page-home section.hero .section-container .box .place-and-date .col .place.mobile {
    display: block;
  }
}
.page-home section.hero .section-container .box .place-and-date .col > p {
  font-size: var(--text-sm);
}
.page-home section.hero .section-container .box .place-and-date .col * {
  color: var(--ja-base);
  margin: 0;
}
.page-home section.hero .section-container .box .place-and-date .col:first-child * {
  text-align: right;
}
.page-home section.hero .section-container .box .place-and-date .col:last-child {
  --spacing: 1.5rem;
  padding-left: var(--spacing);
  margin-left: var(--spacing);
  border-left: 1px solid var(--ja-base);
}
.page-home section.hero .section-container .box .quote p {
  text-align: center;
  font-weight: 600;
  color: var(--ja-primary);
}
.page-home section.hero .section-container .box .quote p span {
  font-weight: 600;
}
.page-home section.hero .section-container .box .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 540px) {
  .page-home section.hero .section-container .box .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 75%;
  }
  .page-home section.hero .section-container .box .buttons .ja-cta {
    box-sizing: border-box;
    flex: 1;
    width: 100% !important;
  }
}
.page-home #agenda {
  padding-top: 0;
  background: linear-gradient(rgba(231, 0, 76, 0.75), rgba(231, 0, 76, 0.75)), var(--background-image);
}
.page-home #agenda .section-title {
  padding: 2.5rem 0;
  margin-bottom: 2.5rem;
  background-color: var(--ja-primary);
}
.page-home #registro {
  padding-bottom: 0;
}
.page-home section.two-columns#que-es .section-container .cols {
  align-items: center;
}
.page-home section.two-columns#que-es .section-container .cols p {
  color: #5b6670;
  text-align: left;
  font-weight: 600;
}
.page-home section.two-columns#cuando-y-donde-ocurre .cols {
  align-items: stretch;
}
.page-home section.two-columns#cuando-y-donde-ocurre .cols p:last-child {
  margin-top: auto;
}
.page-home section.two-columns .section-container .cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.page-home section.two-columns .section-container .cols p:not(.ja-cta),
.page-home section.two-columns .section-container .cols ul:not(.ja-cta),
.page-home section.two-columns .section-container .cols li:not(.ja-cta),
.page-home section.two-columns .section-container .cols a:not(.ja-cta) {
  font-size: var(--text-base);
  color: var(--ja-neutral);
}
.page-home section.two-columns .section-container .cols .col {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-home section.two-columns .section-container .cols .col * {
  width: 100%;
}
.page-home section.two-columns .section-container .cols .col .image {
  margin: 0 0 1rem 0;
}
.page-home section.two-columns .section-container .cols .col .image {
  width: 100%;
  max-width: 500px;
}
.page-home section.two-columns .section-container .cols .col .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.page-home section.two-columns .section-container .cols .col .buttons a {
  flex: 1;
}
@media (max-width: 540px) {
  .page-home section.two-columns .section-container .cols .col .buttons {
    flex-direction: column;
  }
  .page-home section.two-columns .section-container .cols .col .buttons a {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .page-home section.two-columns .section-container .cols {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.page-home section.two-columns .map {
  border-radius: 2rem;
}
.page-home section.two-columns .map iframe {
  width: 100% !important;
  border-radius: 2rem;
  border: none;
}
.page-home section.agenda .section-container .pill-title {
  margin-bottom: 0 0 2.5rem 0;
}
.page-home section.agenda .section-container .agenda {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 1080px) {
  .page-home section.agenda .section-container .agenda {
    flex-direction: column;
  }
  .page-home section.agenda .section-container .agenda .agenda-card {
    width: 100%;
    box-sizing: border-box;
  }
  .page-home section.agenda .section-container .agenda .agenda-card:has(.icon) {
    justify-content: space-between;
  }
}
.page-home section.agenda .section-container .agenda .agenda-card {
  border-radius: 1rem;
  padding: 1.5rem;
  background: var(--ja-base);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.page-home section.agenda .section-container .agenda .agenda-card .content {
  width: 100%;
}
.page-home section.agenda .section-container .agenda .col {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .page-home section.agenda .section-container .agenda .col:first-child .agenda-card:has(.icon) {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .page-home section.agenda .section-container .agenda .col:last-child .agenda-card:has(.icon) {
    flex-direction: column-reverse;
  }
}
.page-home section.agenda .section-container .agenda .agenda-card:has(.icon) * {
  color: var(--ja-primary);
}
.page-home section.agenda .section-container .agenda .agenda-card .content ul {
  margin-bottom: 0;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables {
  padding-inline-start: 20px;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables svg {
  min-width: 12px;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables .selectable .tooltip .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables .selectable .tooltip .buttons + p {
  margin: 1.5rem 0 0 0;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables .buttons a {
  flex: 1;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables .selectable {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  color: var(--ps-primary);
  text-decoration: underline;
  position: relative;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables .selectable:hover {
  cursor: pointer;
}
.page-home section.agenda .section-container .agenda .agenda-card:has(.icon) img {
  width: 100%;
  max-width: 150px;
}
.page-home section.agenda .section-container .agenda .agenda-card .selectables .selectable svg path {
  fill: var(--ps-primary);
}
.page-home section.agenda .section-container .agenda .agenda-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 600px) {
  .page-home section.agenda .section-container .agenda .agenda-item {
    flex-direction: column;
  }
}
.page-home section.agenda .section-container .agenda .agenda-item *:not(.ja-cta) {
  color: var(--ja-primary);
}
.page-home section.agenda .section-container .agenda .agenda-item .ja-cta {
  margin: 0;
}
.page-home section.agenda .section-container .agenda .agenda-item .image,
.page-home section.agenda .section-container .agenda .agenda-item .image img {
  border-radius: 1rem;
}
.page-home section.agenda .section-container .agenda .agenda-item .image {
  box-shadow: 5px 5px 0 0 var(--ja-secondary);
  width: 250px !important;
  height: 250px;
}
@media (max-width: 768px) {
  .page-home section.agenda .section-container .agenda .agenda-item .image {
    width: 100% !important;
    height: 200px;
  }
}
.page-home section.agenda .section-container .agenda .agenda-item .text {
  width: calc(100% - 250px);
}
@media (max-width: 768px) {
  .page-home section.agenda .section-container .agenda .agenda-item .image,
  .page-home section.agenda .section-container .agenda .agenda-item .text {
    width: 100%;
  }
}
.page-home section.agenda .section-container .agenda .agenda-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home section.agenda .section-container .ja-cta {
  display: block;
  margin: 2.5rem auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 540px) {
  .page-home section.agenda .section-container .ja-cta {
    width: 90%;
  }
}
.page-home section.agenda .section-container .plataforma-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ja-base);
  margin: 2.5rem auto 0 auto;
  font-weight: 600;
}
.page-home section.agenda .section-container .plataforma-ja img {
  width: 150px;
}
.page-home section.ponentes .section-container .section-title {
  margin-bottom: 2.5rem;
}
.page-home section.ponentes .section-container .speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.page-home section.ponentes .section-container .speakers .speaker {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--ja-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.page-home section.ponentes .section-container .speakers .speaker .speaker-image {
  position: relative;
  box-shadow: 5px 5px 0 0 var(--ja-secondary);
  margin: 0 0 1.5rem 0;
  width: 100%;
  max-width: 1000px;
  height: 250px;
}
.page-home section.ponentes .section-container .speakers .speaker .speaker-image,
.page-home section.ponentes .section-container .speakers .speaker .speaker-image img {
  border-radius: 1rem;
}
.page-home section.ponentes .section-container .speakers .speaker .speaker-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.page-home section.ponentes .section-container .speakers .speaker .speaker-info * {
  color: var(--ja-primary);
}
.page-home section.ponentes .section-container .speakers .speaker .speaker-info .name {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 0;
}
.page-home section.ponentes .section-container .speakers .speaker .speaker-info .position {
  font-size: var(--text-xs);
  text-transform: capitalize;
}
.page-home section.ponentes .section-container .speakers .speaker .ja-cta {
  margin-top: auto;
}
.page-home section.ponentes .section-container > .ja-cta {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
}
.page-home section.ponentes .section-container .stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.page-home section.ponentes .section-container .stats p {
  flex: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-home section.ponentes .section-container .stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.page-home section.ponentes .section-container .graph {
  margin: 2.5rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.page-home section.ponentes .section-container .graph img {
  width: 100%;
}
.page-home section.ponentes .section-container .graph .year {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.page-home section.ponentes .section-container .graph .year .tab,
.page-home section.ponentes .section-container .graph .year .content {
  padding: 1rem;
  color: var(--ja-base);
  border-radius: 0.5rem;
}
.page-home section.ponentes .section-container .graph .year .tab {
  text-align: center;
}
.page-home section.ponentes .section-container .graph .year .tab:hover {
  cursor: pointer;
}
.page-home section.ponentes .section-container .graph .year .content .icon-and-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem 0;
}
.page-home section.ponentes .section-container .graph .year .content .icon-and-text p {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}
.page-home section.ponentes .section-container .graph .year .content .icon-and-text p span {
  font-weight: 400;
  font-size: 1rem;
}
.page-home section.ponentes .section-container .graph .year .content .icon-and-text svg {
  min-width: 30px;
}
.page-home section.ponentes .section-container .graph .year .content .icon-and-text svg path {
  fill: var(--ja-base);
}
.page-home section.ponentes .section-container .graph .year:nth-child(2n) div {
  background: var(--ja-secondary);
}
.page-home section.ponentes .section-container .graph .year:nth-child(2n+1) div {
  background: var(--ja-primary);
}
.page-home section:has(.section-subtitle) .section-title {
  margin-bottom: 0.5rem;
}
.page-home section .section-container .section-title {
  font-size: var(--text-xl);
  color: var(--ja-primary);
  text-align: center;
  font-weight: 800;
}
.page-home section .section-container .section-title + .section-subtitle {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--ja-primary);
}

.page-ponentes section.ponentes .section-container .section-title {
  margin-bottom: 2.5rem;
}
.page-ponentes section.ponentes .section-container .speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.page-ponentes section.ponentes .section-container .speakers .speaker {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--ja-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-image {
  position: relative;
  box-shadow: 5px 5px 0 0 var(--ja-secondary);
  margin: 0 0 1.5rem 0;
  width: 100%;
  max-width: 1000px;
  height: 250px;
}
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-image,
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-image img {
  border-radius: 1rem;
}
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-info * {
  color: var(--ja-primary);
}
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-info .name {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 0;
}
.page-ponentes section.ponentes .section-container .speakers .speaker .speaker-info .position {
  font-size: var(--text-xs);
  text-transform: capitalize;
}
.page-ponentes section.ponentes .section-container .speakers .speaker .ja-cta {
  margin-top: auto;
}
.page-ponentes section.ponentes .section-container > .ja-cta {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
}
.page-ponentes section.ponentes .section-container .stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.page-ponentes section.ponentes .section-container .stats p {
  flex: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-ponentes section.ponentes .section-container .stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.page-ponentes section.ponentes .section-container .graph {
  margin: 2.5rem 0 0 0;
}
.page-ponentes section.ponentes .section-container .graph img {
  width: 100%;
}
