:root {
  --wr-container-max: var(--container-max-width, 1310px);
  --wr-container: min(var(--container-max-width, 1310px), calc(100vw - 2rem));
  --wr-header-height: 88px;
  --wr-header-height-shrunk: 68px;
  --wr-header-logo-padding: 14px;
  --wr-logo-height: calc(var(--wr-header-height) - (var(--wr-header-logo-padding) * 2));
  --wr-radius: 18px;
  --wr-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--e-global-typography-text-font-family, var(--e-global-typography-primary-font-family, sans-serif));
  color: var(--e-global-color-text, #7A7A7A);
  background: var(--e-a-bg-default, #ffffff);
  line-height: 1.65;
}

.txt-white,
.txt-yellow {
  color: inherit;
}

.txt-white {
  color: var(--e-a-color-white, #ffffff);
}
.txt-white b,
.txt-white strong,
.txt-white h1,
.txt-white h2,
.txt-white h3,
.txt-white h4,
.txt-white h5,
.txt-white h6,
.txt-white .elementor-heading-title {
  color: var(--e-global-color-accent, #f7d64d);
}

.txt-yellow {
  color: var(--e-global-color-accent, #f7d64d);
}
.txt-yellow b,
.txt-yellow strong,
.txt-yellow h1,
.txt-yellow h2,
.txt-yellow h3,
.txt-yellow h4,
.txt-yellow h5,
.txt-yellow h6,
.txt-yellow .elementor-heading-title {
  color: var(--e-a-color-white, #ffffff);
}

.txt-white a,
.txt-yellow a,
.txt-white .elementor-text-editor a,
.txt-yellow .elementor-text-editor a {
  text-decoration: underline !important;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

body.wr-mobile-menu-open,
html.wr-mobile-menu-open {
  overflow: visible;
  overflow-x: visible;
  overscroll-behavior: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.entry-content img,
.entry-content svg,
.entry-content figure img,
.entry-content figure svg,
.entry-content picture img,
.entry-content picture svg,
.entry-content .wp-caption img,
.entry-content .wp-caption svg,
.entry-content .elementor-image img,
.entry-content .elementor-image svg,
.entry-content .fiftysvg,
.entry-content .e-svg-base {
  display: block;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}

.entry-content svg,
.entry-content .fiftysvg svg,
.entry-content .e-svg-base svg {
  width: 100% !important;
  height: auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--e-global-typography-primary-font-family, var(--e-global-typography-text-font-family, sans-serif));
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: var(--wr-container);
  margin: 0 auto;
}

.site {
  min-height: 100vh;
}

.site-main {
  min-height: 50vh;
}

.site-header {
  --wr-header-color: var(--e-global-color-primary, #6E157B);
  position: relative;
  z-index: 1000;
  isolation: isolate;
  height: var(--wr-header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, height 0.2s ease;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.site-header.is-sticky.is-scrolled {
  --wr-logo-height: calc(var(--wr-header-height-shrunk) - (var(--wr-header-logo-padding) * 2));
  height: var(--wr-header-height-shrunk);
  /* border-color: var(--e-a-border-color, #e6e8ea); */
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.site-header.is-hide-on-scroll {
  transform: translateY(-100%);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, height 0.2s ease;
}

.site-header.is-hide-on-scroll.is-visible {
  transform: translateY(0);
}

.site-header.is-hide-on-scroll + .site-main {
  margin-top: calc(var(--wr-header-height) * -1);
}

.site-header.is-hide-on-scroll + .site-main > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.reveal-line {
  position: relative;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  opacity: 1;
}

.reveal-line img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: scaleX(0.16);
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.reveal-line.is-visible img {
  opacity: 1;
  transform: scaleX(1);
  clip-path: inset(0 0 0 0);
}

body.elementor-editor-active .reveal-line img,
body.elementor-editor-preview .reveal-line img {
  opacity: 1;
  transform: scaleX(1);
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-line img {
    transition: none;
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
  }
}
.site-header.is-transparent-start:not(.is-scrolled) {
  --wr-header-color: var(--e-a-color-white, #ffffff);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-transparent-start:not(.is-scrolled) .nav-menu a,
.site-header.is-transparent-start:not(.is-scrolled) .site-title,
.site-header.is-transparent-start:not(.is-scrolled) .header-menu-toggle {
  color: var(--e-a-color-white, #ffffff);
}

.site-header.is-transparent-start:not(.is-scrolled) .site-header-social--desktop .site-header-social__link:not(:hover):not(:focus) {
  color: var(--e-a-color-white, #ffffff);
}

.site-header.is-transparent-start:not(.is-scrolled) .custom-logo .st0,
.site-header.is-transparent-start:not(.is-scrolled) .custom-logo .st1 {
  fill: var(--e-a-color-white, #ffffff) !important;
}

.site-header.is-transparent-start:not(.is-scrolled).has-transparent-logo .site-logo-default {
  display: none;
}

.site-header.is-transparent-start:not(.is-scrolled).has-transparent-logo .site-logo-transparent {
  display: block;
}

.site-header.is-transparent-start + .site-main {
  margin-top: calc(var(--wr-header-height) * -1);
}

.site-header.is-transparent-start + .site-main > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.site-header.is-transparent-start + .site-main .entry-shell--elementor {
  margin-top: 0;
  padding-top: 0;
}

.site-header.is-transparent-start + .site-main .elementor > .elementor-element:first-child,
.site-header.is-transparent-start + .site-main .elementor > .elementor-section:first-child,
.site-header.is-transparent-start + .site-main .elementor-section-wrap > .elementor-element:first-child,
.site-header.is-transparent-start + .site-main .elementor-section-wrap > .elementor-section:first-child {
  margin-top: 0 !important;
  padding-top: 0;
}

.site-header.is-glassy-start:not(.is-scrolled) {
  --wr-header-color: var(--e-a-color-white, #ffffff);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(3px);
}

.site-header.is-glassy-start:not(.is-scrolled) .nav-menu a,
.site-header.is-glassy-start:not(.is-scrolled) .site-title,
.site-header.is-glassy-start:not(.is-scrolled) .header-menu-toggle {
  color: var(--e-a-color-white, #ffffff);
}

.site-header.is-glassy-start:not(.is-scrolled) .site-header-social--desktop .site-header-social__link:not(:hover):not(:focus) {
  color: var(--e-a-color-white, #ffffff);
}

.site-header.is-glassy-start:not(.is-scrolled) .custom-logo .st0,
.site-header.is-glassy-start:not(.is-scrolled) .custom-logo .st1 {
  fill: var(--e-a-color-white, #ffffff) !important;
}

.site-header.is-glassy-start:not(.is-scrolled).has-transparent-logo .site-logo-default {
  display: none;
}

.site-header.is-glassy-start:not(.is-scrolled).has-transparent-logo .site-logo-transparent {
  display: block;
}

.site-header.is-glassy-start + .site-main {
  margin-top: calc(var(--wr-header-height) * -1);
}

.site-header.is-glassy-start + .site-main > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.site-header.is-glassy-start + .site-main .entry-shell--elementor {
  margin-top: 0;
  padding-top: 0;
}

.site-header.is-glassy-start + .site-main .elementor > .elementor-element:first-child,
.site-header.is-glassy-start + .site-main .elementor > .elementor-section:first-child,
.site-header.is-glassy-start + .site-main .elementor-section-wrap > .elementor-element:first-child,
.site-header.is-glassy-start + .site-main .elementor-section-wrap > .elementor-section:first-child {
  margin-top: 0 !important;
  padding-top: 0;
}

.site-header.is-glassy-dark-start:not(.is-scrolled) {
  --wr-header-color: var(--e-a-color-white, #ffffff);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  border-bottom: none;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.site-header.is-glassy-dark-start:not(.is-scrolled) .nav-menu a,
.site-header.is-glassy-dark-start:not(.is-scrolled) .site-title,
.site-header.is-glassy-dark-start:not(.is-scrolled) .header-menu-toggle {
  color: var(--e-a-color-white, #ffffff);
}

.site-header.is-glassy-dark-start:not(.is-scrolled) .site-header-social--desktop .site-header-social__link:not(:hover):not(:focus) {
  color: var(--e-a-color-white, #ffffff);
}

.site-header.is-glassy-dark-start:not(.is-scrolled) .custom-logo .st0,
.site-header.is-glassy-dark-start:not(.is-scrolled) .custom-logo .st1 {
  fill: var(--e-a-color-white, #ffffff) !important;
}

.site-header.is-glassy-dark-start:not(.is-scrolled).has-transparent-logo .site-logo-default {
  display: none;
}

.site-header.is-glassy-dark-start:not(.is-scrolled).has-transparent-logo .site-logo-transparent {
  display: block;
}

.site-header.is-glassy-dark-start + .site-main {
  margin-top: calc(var(--wr-header-height) * -1);
}

.site-header.is-glassy-dark-start + .site-main > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.site-header.is-glassy-dark-start + .site-main .entry-shell--elementor {
  margin-top: 0;
  padding-top: 0;
}

.site-header.is-glassy-dark-start + .site-main .elementor > .elementor-element:first-child,
.site-header.is-glassy-dark-start + .site-main .elementor > .elementor-section:first-child,
.site-header.is-glassy-dark-start + .site-main .elementor-section-wrap > .elementor-element:first-child,
.site-header.is-glassy-dark-start + .site-main .elementor-section-wrap > .elementor-section:first-child {
  margin-top: 0 !important;
  padding-top: 0;
}

@media (max-width: 1024px) {
  .site-header.nav-open #site-navigation {
    display: flex;
    left: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 1024px) {
  .site-header.nav-open .site-nav-backdrop {
    opacity: 1;
    visibility: visible;
  }
}
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  body.admin-bar .site-header.is-adminbar-scrolled {
    top: 0;
  }
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100%;
}

.site-branding {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: var(--wr-logo-height);
  max-height: var(--wr-logo-height);
  padding-block: calc(var(--wr-header-logo-padding) * 0.5);
  transition: height 0.2s ease, max-height 0.2s ease;
}

.custom-logo-link,
.site-title {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-family: var(--e-global-typography-text-font-family, var(--e-global-typography-primary-font-family, sans-serif));
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.custom-logo-link {
  display: inline-block;
  align-items: center;
  justify-content: center;
  line-height: 0;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  transition: height 0.2s ease, max-height 0.2s ease;
}

.custom-logo {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  flex: 0 1 auto;
  object-fit: contain;
}

svg.custom-logo {
  display: block;
  width: auto !important;
  height: 100% !important;
  max-height: 100% !important;
  max-width: 100% !important;
  overflow: visible;
}

.site-logo-transparent {
  display: none;
}

.header-menu-toggle,
.site-navigation-close,
.site-nav-backdrop {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--e-global-color-text, #7A7A7A);
}

.header-menu-toggle-bars,
.header-menu-toggle-bars::before,
.header-menu-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.header-menu-toggle-bars::before {
  transform: translateY(-6px);
}

.header-menu-toggle-bars::after {
  transform: translateY(4px);
}

.site-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-header--centered-layout .site-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.site-header--centered-layout .site-branding {
  justify-self: center;
  margin: 0 auto;
}

.site-header--centered-layout .site-branding--centered {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  justify-content: center;
}

.site-header--centered-layout .site-header-side {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header--centered-layout .site-header-side--left {
  justify-content: flex-end;
}

.site-header--centered-layout .site-header-side--right {
  justify-content: flex-start;
  gap: 0.75rem;
}

.site-header--centered-layout .site-navigation {
  display: none;
}

.site-header--centered-layout .site-navigation-split {
  display: block;
}

.site-header--centered-layout .nav-menu--split {
  gap: 1rem;
}

.site-header--centered-layout .nav-menu--left {
  justify-content: flex-end;
}

.site-header--centered-layout .nav-menu--right {
  justify-content: flex-start;
}

.site-header--centered-layout .site-header-social--desktop {
  margin-left: 0;
}

.site-header-social {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-left: 0.6rem;
}

.site-header-social__link {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-text, #7A7A7A);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header-social__link:hover,
.site-header-social__link:focus {
  color: var(--e-a-color-white, #ffffff);
  transform: translateY(-1px);
}

.site-header-social__link--facebook {
  color: var(--e-global-color-secondary, #1877f2);
}

.site-header-social__link--facebook:hover,
.site-header-social__link--facebook:focus {
  background: var(--e-global-color-secondary, #1877f2);
  color: var(--e-a-color-white, #ffffff);
}

.site-header-social__link--instagram {
  color: var(--e-global-color-accent, #e4405f);
}

.site-header-social__link--instagram:hover,
.site-header-social__link--instagram:focus {
  background: var(--e-global-color-accent, #e4405f);
  color: var(--e-a-color-white, #ffffff);
}

.site-header-social__icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.site-header-social--mobile {
  display: none;
}

.site-navigation-close,
.site-nav-backdrop {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  font-family: var(--e-global-typography-text-font-family, var(--e-global-typography-primary-font-family, sans-serif));
  list-style: none;
}

.nav-menu ul {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  color: var(--e-global-color-primary, #6E157B);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -0.35rem;
  height: 0.35rem;
  background-image: url("../../img/line-2.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu a.is-active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-menu-ancestor > a::after,
.nav-menu .current-menu-parent > a::after {
  opacity: 1;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.is-active,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a,
.nav-menu .current-menu-parent > a {
  color: var(--e-global-color-accent, #f7d64d);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.entry-shell {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  padding-top: 0;
}

.entry-shell--elementor {
  padding: 0;
}

.entry-shell--narrow .entry-content,
.entry-shell--narrow .entry-header,
.entry-shell--narrow .entry-summary,
.entry-shell--narrow .entry-gallery,
.entry-shell--narrow .entry-media {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.entry-header {
  margin-bottom: 1.5rem;
}

.entry-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.entry-summary {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--e-a-color-txt-muted, #64748b);
}

.entry-media,
.campaign-card,
.site-footer .widget {
  border-radius: var(--wr-radius);
  overflow: hidden;
  text-align: center;
}

.entry-media img,
.campaign-card img,
.site-footer .widget img {
  margin: 0 auto;
}

.entry-media {
  margin-bottom: 2rem;
  box-shadow: var(--wr-shadow);
}

.entry-media img {
  width: 100%;
}

.entry-content > *:last-child,
.campaign-card-content > *:last-child,
.widget > *:last-child {
  margin-bottom: 0;
}

.campaign-grid,
.footer-grid,
.gallery-grid,
.posts-grid {
  display: grid;
  gap: 1.5rem;
}

.campaign-grid,
.posts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-card {
  background: var(--e-a-bg-default, #fff);
  border: 1px solid var(--e-a-border-color, #e6e8ea);
  box-shadow: var(--wr-shadow);
}

.campaign-card-media {
  aspect-ratio: 4/3;
  background: rgba(15, 23, 42, 0.05);
}

.campaign-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-card-content {
  padding: 1.25rem;
}

.campaign-card-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.campaign-card-link {
  color: var(--e-global-color-primary, #6E157B);
  font-weight: 700;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.archive-header {
  margin-bottom: 2rem;
}

.archive-description {
  max-width: 760px;
  color: var(--e-a-color-txt-muted, #64748b);
}

.pagination,
.nav-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.site-footer {
  padding: 2.25rem 0 2rem;
  border-top: 0;
  background: #000000;
  color: #ffffff;
  text-align: left;
}

.site-footer .nav-menu {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.site-footer a,
.site-footer a:visited,
.site-footer .widget,
.site-footer .widget p,
.site-footer .widget li {
  color: #ffffff;
}

.site-footer .widget-title,
.site-footer .widget-title a,
.site-footer .widget h3,
.site-footer .widget h4,
.site-footer .widget h5,
.site-footer .widget h6 {
  color: var(--e-global-color-accent, #f7d64d);
  text-align: center;
  width: 100%;
}

.site-footer .widget > h3:first-child,
.site-footer .widget > h4:first-child,
.site-footer .widget > h5:first-child,
.site-footer .widget > h6:first-child,
.site-footer .widget > p:first-child,
.site-footer .widget > ul:first-child,
.site-footer .widget > div:first-child:not(.wp-block-image):not(img):not(figure) {
  width: 100%;
}

.site-footer .widget a,
.site-footer .widget a:visited,
.site-footer .widget strong,
.site-footer .widget b,
.site-footer .widget p strong,
.site-footer .widget p b {
  color: var(--e-global-color-accent, #f7d64d);
}

.site-footer .site-info {
  margin-top: 1.5rem;
  color: #ffffff;
  text-align: center;
}

.site-footer .widget {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.site-footer .widget p {
  margin-bottom: 0.35rem;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-start;
  margin-bottom: 2rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bubble,
.e-con.bubble,
.wr-speech-bubble {
  --wr-speech-tail-width: 46px;
  --wr-speech-tail-height: 40px;
  position: relative;
  display: block;
  color: var(--e-global-color-text, #7A7A7A);
  border-radius: 20px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.bubble::after,
.e-con.bubble::after,
.wr-speech-bubble::after {
  content: "";
  position: absolute;
  background: var(--e-a-bg-default, #ffffff);
  width: var(--wr-speech-tail-width);
  height: var(--wr-speech-tail-height);
  border-radius: 2px;
}

.bubble__content > *:first-child,
.e-con.bubble__content > *:first-child,
.wr-speech-bubble__content > *:first-child {
  margin-top: 0;
}

.bubble__content > *:last-child,
.e-con.bubble__content > *:last-child,
.wr-speech-bubble__content > *:last-child {
  margin-bottom: 0;
}

.bubble--left_top::after,
.bubble.left_top::after,
.bubble--right_top::after,
.bubble.right_top::after,
.bubble--center_top_left::after,
.bubble.center_top_left::after,
.bubble--center_top_right::after,
.bubble.center_top_right::after,
.e-con.bubble--left_top::after,
.e-con.bubble.left_top::after,
.e-con.bubble--right_top::after,
.e-con.bubble.right_top::after,
.e-con.bubble--center_top_left::after,
.e-con.bubble.center_top_left::after,
.e-con.bubble--center_top_right::after,
.e-con.bubble.center_top_right::after,
.wr-speech-bubble--left_top::after,
.wr-speech-bubble.left_top::after,
.wr-speech-bubble--right_top::after,
.wr-speech-bubble.right_top::after,
.wr-speech-bubble--center_top_left::after,
.wr-speech-bubble.center_top_left::after,
.wr-speech-bubble--center_top_right::after,
.wr-speech-bubble.center_top_right::after {
  top: -29px;
  clip-path: polygon(10% 100%, 100% 100%, 7% 0, 0 0, 0 7%);
}

.bubble--left_top::after,
.bubble.left_top::after,
.e-con.bubble--left_top::after,
.e-con.bubble.left_top::after,
.wr-speech-bubble--left_top::after,
.wr-speech-bubble.left_top::after {
  left: 22px;
}

.bubble--right_top::after,
.bubble.right_top::after,
.e-con.bubble--right_top::after,
.e-con.bubble.right_top::after,
.wr-speech-bubble--right_top::after,
.wr-speech-bubble.right_top::after {
  right: 22px;
  transform: scaleX(-1);
}

.bubble--center_top_left::after,
.bubble.center_top_left::after,
.e-con.bubble--center_top_left::after,
.e-con.bubble.center_top_left::after,
.wr-speech-bubble--center_top_left::after,
.wr-speech-bubble.center_top_left::after {
  left: calc(50% - 23px);
}

.bubble--center_top_right::after,
.bubble.center_top_right::after,
.e-con.bubble--center_top_right::after,
.e-con.bubble.center_top_right::after,
.wr-speech-bubble--center_top_right::after,
.wr-speech-bubble.center_top_right::after {
  left: calc(50% - 23px);
  transform: scaleX(-1);
}

.bubble--left_bottom::after,
.bubble.left_bottom::after,
.bubble--center_bottom_left::after,
.bubble.center_bottom_left::after,
.e-con.bubble--left_bottom::after,
.e-con.bubble.left_bottom::after,
.e-con.bubble--center_bottom_left::after,
.e-con.bubble.center_bottom_left::after,
.wr-speech-bubble--left_bottom::after,
.wr-speech-bubble.left_bottom::after,
.wr-speech-bubble--center_bottom_left::after,
.wr-speech-bubble.center_bottom_left::after {
  bottom: -29px;
  left: 22px;
  clip-path: polygon(10% 0, 100% 0, 7% 100%, 0 100%, 0 93%);
}

.bubble--center_bottom_left::after,
.bubble.center_bottom_left::after,
.bubble--center_bottom_right::after,
.bubble.center_bottom_right::after,
.e-con.bubble--center_bottom_left::after,
.e-con.bubble.center_bottom_left::after,
.e-con.bubble--center_bottom_right::after,
.e-con.bubble.center_bottom_right::after,
.wr-speech-bubble--center_bottom_left::after,
.wr-speech-bubble.center_bottom_left::after,
.wr-speech-bubble--center_bottom_right::after,
.wr-speech-bubble.center_bottom_right::after {
  left: calc(50% - 23px);
}

.bubble--right_bottom::after,
.bubble.right_bottom::after,
.bubble--center_bottom_right::after,
.bubble.center_bottom_right::after,
.e-con.bubble--right_bottom::after,
.e-con.bubble.right_bottom::after,
.e-con.bubble--center_bottom_right::after,
.e-con.bubble.center_bottom_right::after,
.wr-speech-bubble--right_bottom::after,
.wr-speech-bubble.right_bottom::after,
.wr-speech-bubble--center_bottom_right::after,
.wr-speech-bubble.center_bottom_right::after {
  bottom: -29px;
  clip-path: polygon(10% 0, 100% 0, 7% 100%, 0 100%, 0 93%);
  transform: scaleX(-1);
}

.bubble--right_bottom::after,
.bubble.right_bottom::after,
.e-con.bubble--right_bottom::after,
.e-con.bubble.right_bottom::after,
.wr-speech-bubble--right_bottom::after,
.wr-speech-bubble.right_bottom::after {
  right: 22px;
}

.bubble--left_center::after,
.bubble.left_center::after,
.bubble--left_up::after,
.bubble.left_up::after,
.bubble--left_down::after,
.bubble.left_down::after,
.e-con.bubble--left_center::after,
.e-con.bubble.left_center::after,
.e-con.bubble--left_up::after,
.e-con.bubble.left_up::after,
.e-con.bubble--left_down::after,
.e-con.bubble.left_down::after,
.wr-speech-bubble--left_center::after,
.wr-speech-bubble.left_center::after,
.wr-speech-bubble--left_up::after,
.wr-speech-bubble.left_up::after,
.wr-speech-bubble--left_down::after,
.wr-speech-bubble.left_down::after {
  left: -36px;
}

.bubble--left_center::after,
.bubble.left_center::after,
.e-con.bubble--left_center::after,
.e-con.bubble.left_center::after,
.wr-speech-bubble--left_center::after,
.wr-speech-bubble.left_center::after {
  top: calc(50% - 20px);
  clip-path: polygon(100% 10%, 100% 100%, 0 57%, 0 50%, 7% 43%);
}

.bubble--left_up::after,
.bubble.left_up::after,
.e-con.bubble--left_up::after,
.e-con.bubble.left_up::after,
.wr-speech-bubble--left_up::after,
.wr-speech-bubble.left_up::after {
  top: calc(35% - 20px);
  clip-path: polygon(100% 10%, 100% 100%, 0 42%, 0 35%, 7% 28%);
}

.bubble--left_down::after,
.bubble.left_down::after,
.e-con.bubble--left_down::after,
.e-con.bubble.left_down::after,
.wr-speech-bubble--left_down::after,
.wr-speech-bubble.left_down::after {
  top: calc(65% - 20px);
  clip-path: polygon(100% 0, 100% 90%, 0 72%, 0 65%, 7% 58%);
}

.bubble--right_center::after,
.bubble.right_center::after,
.bubble--right_up::after,
.bubble.right_up::after,
.bubble--right_down::after,
.bubble.right_down::after,
.e-con.bubble--right_center::after,
.e-con.bubble.right_center::after,
.e-con.bubble--right_up::after,
.e-con.bubble.right_up::after,
.e-con.bubble--right_down::after,
.e-con.bubble.right_down::after,
.wr-speech-bubble--right_center::after,
.wr-speech-bubble.right_center::after,
.wr-speech-bubble--right_up::after,
.wr-speech-bubble.right_up::after,
.wr-speech-bubble--right_down::after,
.wr-speech-bubble.right_down::after {
  right: -36px;
}

.bubble--right_center::after,
.bubble.right_center::after,
.e-con.bubble--right_center::after,
.e-con.bubble.right_center::after,
.wr-speech-bubble--right_center::after,
.wr-speech-bubble.right_center::after {
  top: calc(50% - 20px);
  clip-path: polygon(0 10%, 0 100%, 100% 57%, 100% 50%, 93% 43%);
}

.bubble--right_up::after,
.bubble.right_up::after,
.e-con.bubble--right_up::after,
.e-con.bubble.right_up::after,
.wr-speech-bubble--right_up::after,
.wr-speech-bubble.right_up::after {
  top: calc(35% - 20px);
  clip-path: polygon(0 10%, 0 100%, 100% 42%, 100% 35%, 93% 28%);
}

.bubble--right_down::after,
.bubble.right_down::after,
.e-con.bubble--right_down::after,
.e-con.bubble.right_down::after,
.wr-speech-bubble--right_down::after,
.wr-speech-bubble.right_down::after {
  top: calc(65% - 20px);
  clip-path: polygon(0 0, 0 90%, 100% 72%, 100% 65%, 93% 58%);
}

.wr-speech-bubble {
  background: var(--e-a-bg-default, #ffffff);
}

@media (max-width: 1024px) {
  .site-header--centered-layout .site-header-inner {
    display: flex;
  }
  .site-header--centered-layout .site-header-side--left {
    display: none;
  }
  .site-header--centered-layout .site-header-side--right {
    display: flex;
    margin-left: auto;
  }
  .site-header--centered-layout .site-navigation {
    display: none;
  }
  .site-header--centered-layout .site-navigation-split,
  .site-header--centered-layout .site-header-social--desktop {
    display: none;
  }
  .site-header--centered-layout .header-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }
  .site-header--centered-layout .site-branding {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 auto;
    justify-content: center;
  }
  .site-header--centered-layout .site-branding--centered {
    width: auto;
    max-width: calc(100% - 4.75rem);
    min-width: 0;
    margin: 0 auto;
    flex: 1 1 auto;
    justify-content: center;
    overflow: hidden;
  }
  .site-header--centered-layout .custom-logo-link {
    max-width: 100%;
  }
  .site-header--centered-layout .custom-logo {
    max-width: 100%;
  }
  html.wr-mobile-menu-open,
  body.wr-mobile-menu-open {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .site-header.is-transparent-start:not(.is-scrolled),
  .site-header.is-glassy-start:not(.is-scrolled),
  .site-header.is-glassy-dark-start:not(.is-scrolled) {
    background: rgba(255, 255, 255, 0.94);
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .site-header.is-transparent-start:not(.is-scrolled) .nav-menu a,
  .site-header.is-transparent-start:not(.is-scrolled) .site-title,
  .site-header.is-transparent-start:not(.is-scrolled) .header-menu-toggle,
  .site-header.is-glassy-start:not(.is-scrolled) .nav-menu a,
  .site-header.is-glassy-start:not(.is-scrolled) .site-title,
  .site-header.is-glassy-start:not(.is-scrolled) .header-menu-toggle,
  .site-header.is-glassy-dark-start:not(.is-scrolled) .nav-menu a,
  .site-header.is-glassy-dark-start:not(.is-scrolled) .site-title,
  .site-header.is-glassy-dark-start:not(.is-scrolled) .header-menu-toggle {
    color: var(--e-global-color-primary, #6E157B);
  }
  .site-header.is-transparent-start:not(.is-scrolled) .site-header-social--desktop .site-header-social__link:not(:hover):not(:focus),
  .site-header.is-glassy-start:not(.is-scrolled) .site-header-social--desktop .site-header-social__link:not(:hover):not(:focus),
  .site-header.is-glassy-dark-start:not(.is-scrolled) .site-header-social--desktop .site-header-social__link:not(:hover):not(:focus) {
    color: var(--e-global-color-text, #7A7A7A);
  }
  .site-header.is-transparent-start:not(.is-scrolled).has-transparent-logo .site-logo-default,
  .site-header.is-glassy-start:not(.is-scrolled).has-transparent-logo .site-logo-default,
  .site-header.is-glassy-dark-start:not(.is-scrolled).has-transparent-logo .site-logo-default {
    display: block;
  }
  .site-header.is-transparent-start:not(.is-scrolled).has-transparent-logo .site-logo-transparent,
  .site-header.is-glassy-start:not(.is-scrolled).has-transparent-logo .site-logo-transparent,
  .site-header.is-glassy-dark-start:not(.is-scrolled).has-transparent-logo .site-logo-transparent {
    display: none;
  }
  .site-header.is-transparent-start + .site-main,
  .site-header.is-glassy-start + .site-main,
  .site-header.is-glassy-dark-start + .site-main {
    margin-top: 0;
  }
  .site-header.is-transparent-start + .site-main > *:first-child,
  .site-header.is-glassy-start + .site-main > *:first-child,
  .site-header.is-glassy-dark-start + .site-main > *:first-child {
    margin-top: initial;
    padding-top: initial;
  }
  .site-header.is-transparent-start + .site-main .entry-shell--elementor,
  .site-header.is-glassy-start + .site-main .entry-shell--elementor,
  .site-header.is-glassy-dark-start + .site-main .entry-shell--elementor {
    margin-top: initial;
    padding-top: initial;
  }
  .site-header.is-transparent-start + .site-main .elementor > .elementor-element:first-child,
  .site-header.is-transparent-start + .site-main .elementor > .elementor-section:first-child,
  .site-header.is-transparent-start + .site-main .elementor-section-wrap > .elementor-element:first-child,
  .site-header.is-transparent-start + .site-main .elementor-section-wrap > .elementor-section:first-child,
  .site-header.is-glassy-start + .site-main .elementor > .elementor-element:first-child,
  .site-header.is-glassy-start + .site-main .elementor > .elementor-section:first-child,
  .site-header.is-glassy-start + .site-main .elementor-section-wrap > .elementor-element:first-child,
  .site-header.is-glassy-start + .site-main .elementor-section-wrap > .elementor-section:first-child,
  .site-header.is-glassy-dark-start + .site-main .elementor > .elementor-element:first-child,
  .site-header.is-glassy-dark-start + .site-main .elementor > .elementor-section:first-child,
  .site-header.is-glassy-dark-start + .site-main .elementor-section-wrap > .elementor-element:first-child,
  .site-header.is-glassy-dark-start + .site-main .elementor-section-wrap > .elementor-section:first-child {
    margin-top: initial !important;
    padding-top: initial;
  }
  .site-header.is-transparent-start:not(.is-scrolled) .custom-logo .st0,
  .site-header.is-glassy-start:not(.is-scrolled) .custom-logo .st0,
  .site-header.is-glassy-dark-start:not(.is-scrolled) .custom-logo .st0 {
    fill: var(--e-global-color-primary, #6E157B) !important;
  }
  .site-header.is-transparent-start:not(.is-scrolled) .custom-logo .st1,
  .site-header.is-glassy-start:not(.is-scrolled) .custom-logo .st1,
  .site-header.is-glassy-dark-start:not(.is-scrolled) .custom-logo .st1 {
    fill: var(--e-global-color-secondary, #7DAF3A) !important;
  }
  .campaign-grid,
  .posts-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .site-navigation {
    display: flex;
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 88vw);
    padding: 1.5rem;
    background-color: var(--wr-mobile-nav-bg-color, rgba(255, 255, 255, 0.94));
    background-image: var(--wr-mobile-nav-bg-image, none);
    background-size: var(--wr-mobile-nav-bg-size, cover);
    background-position: var(--wr-mobile-nav-bg-position, center center);
    background-repeat: var(--wr-mobile-nav-bg-repeat, no-repeat);
    color: var(--wr-header-color);
    margin-left: 0;
    height: 100dvh;
    max-height: 100dvh;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.12);
    z-index: 1002;
    isolation: isolate;
    overscroll-behavior: contain;
  }
  .site-header.nav-open #site-navigation {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header-social {
    display: none;
  }
  .site-navigation-close {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    font-size: 2rem;
    color: var(--e-global-color-primary, #6E157B);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .site-nav-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: rgba(15, 23, 42, 0.32);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
    pointer-events: auto;
    touch-action: none;
  }
  @keyframes wr-mobile-nav-enter {
    from {
      transform: translateX(18px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .site-header .site-navigation .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .site-header .site-navigation .nav-menu li {
    width: 100%;
  }
  .site-header .site-navigation .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.9rem;
    text-align: center;
    color: var(--e-global-color-primary, #6E157B);
  }
  .site-header .site-navigation .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .site-header .site-navigation .site-header-social--mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid var(--e-a-border-color, #e6e8ea);
  }
  .site-header .site-navigation .site-header-social--mobile .site-header-social__link {
    width: 2.55rem;
    height: 2.55rem;
  }
  .site-header .site-navigation .site-header-social--mobile .site-header-social__icon {
    width: 1.38rem;
    height: 1.38rem;
  }
  .site-header .site-navigation .site-header-social .site-header-social__link {
    color: var(--e-global-color-primary, #6E157B);
  }
  .site-header .site-navigation .site-header-social .site-header-social__link--facebook {
    color: var(--e-global-color-secondary, #1877f2);
  }
  .site-header .site-navigation .site-header-social .site-header-social__link--instagram {
    color: var(--e-global-color-accent, #e4405f);
  }
  .site-header .site-navigation .nav-menu a,
  .site-header .site-navigation .site-navigation-close,
  .site-header .site-navigation .site-header-social--mobile .site-header-social__link,
  .site-header .site-navigation .site-header-social .site-header-social__link {
    color: var(--wr-header-color);
  }
}
@media (max-width: 767px) {
  .campaign-grid,
  .posts-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
p.elementor-counter-title {
  text-align: center;
}

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