@charset "UTF-8";
:root:where(.pregon-inner) {
  --ink: #1e1930;
  --muted: #6f687d;
  --purple: #583c98;
  --purple-dark: #35225f;
  --purple-soft: #f0ebfb;
  --orange: #f59b32;
  --orange-soft: #fff0da;
  --cream: #fbfaf7;
  --line: rgba(42, 31, 65, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(59, 40, 97, 0.12);
}

:where(.pregon-inner) * {
  box-sizing: border-box;
}

html:where(.pregon-inner) {
  scroll-behavior: smooth;
}

:where(.pregon-inner) body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(.pregon-inner) a {
  color: inherit;
  text-decoration: none;
}
:where(.pregon-inner) button {
  font: inherit;
}
:where(.pregon-inner) input {
  font: inherit;
}
:where(.pregon-inner) textarea {
  font: inherit;
}
:where(.pregon-inner) img {
  display: block;
  max-width: 100%;
}
:where(.pregon-inner) :where(a, button, input, textarea):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
:where(.pregon-inner) .container {
  width: min(1380px, 100% - 64px);
  margin-inline: auto;
}
:where(.pregon-inner) h1 {
  margin-top: 0;
}
:where(.pregon-inner) h2 {
  margin-top: 0;
}
:where(.pregon-inner) h3 {
  margin-top: 0;
}
:where(.pregon-inner) p {
  margin-top: 0;
}
:where(.pregon-inner) h1 {
  font-family: "Manrope", sans-serif;
}
:where(.pregon-inner) h2 {
  font-family: "Manrope", sans-serif;
}
:where(.pregon-inner) h3 {
  font-family: "Manrope", sans-serif;
}
:where(.pregon-inner) h1 {
  font-size: clamp(46px, 5.6vw, 72px);
  line-height: 1.02;
  margin-bottom: 24px;
}
:where(.pregon-inner) h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  margin-bottom: 24px;
}
:where(.pregon-inner) p {
  line-height: 1.7;
  color: var(--muted);
  font-size: 17px;
}
:where(.pregon-inner) li {
  line-height: 1.7;
  color: var(--muted);
  font-size: 17px;
}
:where(.pregon-inner) .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
:where(.pregon-inner) .eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: var(--orange);
}
:where(.pregon-inner) .btn-1,
:where(.pregon-inner) .btn-2,
:where(.pregon-inner) .btn-3,
:where(.pregon-inner) input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.22s ease;
  cursor: pointer;
}
:where(.pregon-inner) .btn-1,
:where(.pregon-inner) input[type=submit] {
  color: #ffffff;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(88, 60, 152, 0.22);
}
:where(.pregon-inner) .btn-1:hover,
:where(.pregon-inner) input[type=submit]:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}
:where(.pregon-inner) .btn-2,
:where(.pregon-inner) .btn-3 {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}
:where(.pregon-inner) .btn-2:hover,
:where(.pregon-inner) .btn-3:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
:where(.pregon-inner) .page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 60px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}
:where(.pregon-inner) .page-hero::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -130px;
  top: -170px;
  border-radius: 50%;
  background: var(--orange-soft);
}
:where(.pregon-inner) .page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: none;
}
:where(.pregon-inner) .page-hero h1 {
  max-width: 1100px;
  margin-bottom: 20px;
}
:where(.pregon-inner) .page-hero p:not(.eyebrow) {
  max-width: 880px;
  margin-bottom: 0;
  font-size: 18px;
}
:where(.pregon-inner) .page-hero .eyebrow {
  margin-bottom: 18px;
}
:where(.pregon-inner) .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
}
:where(.pregon-inner) .breadcrumbs a:hover {
  color: var(--purple);
}
:where(.pregon-inner) .page-section {
  padding: 88px 0;
}
:where(.pregon-inner) .page-section.white {
  background: #ffffff;
}
:where(.pregon-inner) .page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 80px;
  align-items: start;
}
:where(.pregon-inner) .lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
}
:where(.pregon-inner) .prose {
  max-width: 860px;
}
:where(.pregon-inner) .prose h2 {
  margin-top: 58px;
  font-size: clamp(30px, 3vw, 44px);
}
:where(.pregon-inner) .prose h3 {
  margin: 32px 0 12px;
  font-size: 22px;
}
:where(.pregon-inner) .prose ul {
  padding-left: 22px;
}
:where(.pregon-inner) .prose li + li {
  margin-top: 8px;
}
:where(.pregon-inner) .quote-card {
  padding: 34px;
  border-radius: 26px;
  background: var(--purple);
  color: #ffffff;
}
:where(.pregon-inner) .quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font: 700 clamp(23px, 2.6vw, 34px)/1.3 "Manrope", sans-serif;
}
:where(.pregon-inner) .principles {
  display: grid;
  gap: 16px;
}
:where(.pregon-inner) .principle {
  padding: 25px 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}
:where(.pregon-inner) .principle h3 {
  margin: 0 0 9px;
  font-size: 19px;
}
:where(.pregon-inner) .principle p {
  margin: 0;
  font-size: 15px;
}
:where(.pregon-inner) .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 44px;
}
:where(.pregon-inner) .category-tabs a {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
:where(.pregon-inner) .category-tabs a:hover {
  border-color: var(--purple);
  color: #ffffff;
  background: var(--purple);
}
:where(.pregon-inner) .category-tabs a.active {
  border-color: var(--purple);
  color: #ffffff;
  background: var(--purple);
}
:where(.pregon-inner) .catalogue-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
:where(.pregon-inner) .catalogue-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
:where(.pregon-inner) .catalogue-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 60, 152, 0.28);
  box-shadow: var(--shadow);
}
:where(.pregon-inner) .book-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f5f3f8;
}
:where(.pregon-inner) .book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
:where(.pregon-inner) .catalogue-card:hover .book-image img {
  transform: scale(1.035);
}
:where(.pregon-inner) .book-content {
  padding: 22px;
}
:where(.pregon-inner) .catalogue-card h2,
:where(.pregon-inner) .catalogue-card h3 {
  margin: 0 0 12px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:where(.pregon-inner) .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
:where(.pregon-inner) .card-arrow {
  color: var(--purple);
  font-size: 18px;
}
:where(.pregon-inner) .series-list {
  display: grid;
  gap: 22px;
}
:where(.pregon-inner) .series-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
}
:where(.pregon-inner) .series-mark {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--purple-soft);
}
:where(.pregon-inner) .series-mark.orange {
  background: var(--orange-soft);
}
:where(.pregon-inner) .series-mark span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
:where(.pregon-inner) .series-mark strong {
  max-width: 170px;
  font: 800 31px/1.03 "Manrope", sans-serif;
}
:where(.pregon-inner) .series-copy {
  padding: 32px 36px;
}
:where(.pregon-inner) .series-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(27px, 3vw, 39px);
}
:where(.pregon-inner) .series-copy p {
  margin-bottom: 18px;
}
:where(.pregon-inner) .series-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
:where(.pregon-inner) .series-copy li {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
:where(.pregon-inner) .series-details {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
:where(.pregon-inner) .series-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 2px;
  color: var(--purple);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
:where(.pregon-inner) .series-details summary::-webkit-details-marker {
  display: none;
}
:where(.pregon-inner) .series-details summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}
:where(.pregon-inner) .series-details[open] summary::after {
  transform: rotate(45deg);
}
:where(.pregon-inner) .series-details-body {
  padding: 20px 0 4px;
  border-top: 0;
}
:where(.pregon-inner) .series-details-body h3 {
  margin: 24px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}
:where(.pregon-inner) .series-details-body h3:first-child {
  margin-top: 0;
}
:where(.pregon-inner) .series-details-body p {
  max-width: 840px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.72;
}
:where(.pregon-inner) .resource-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}
:where(.pregon-inner) .resource-jump a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}
:where(.pregon-inner) .resource-block {
  scroll-margin-top: 140px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
:where(.pregon-inner) .resource-block:first-of-type {
  border-top: 0;
}
:where(.pregon-inner) .resource-block h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}
:where(.pregon-inner) .resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
:where(.pregon-inner) .resource-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
:where(.pregon-inner) .resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
:where(.pregon-inner) .resource-actions .btn-1,
:where(.pregon-inner) .resource-actions .btn-2,
:where(.pregon-inner) .resource-actions .btn-3,
:where(.pregon-inner) .resource-actions input[type=submit] {
  min-height: 46px;
  padding-inline: 17px;
  font-size: 14px;
}
:where(.pregon-inner) .resource-details {
  max-width: 920px;
}
:where(.pregon-inner) .digital-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
:where(.pregon-inner) .digital-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 38px;
  border-radius: 28px;
  background: var(--purple);
  color: #ffffff;
}
:where(.pregon-inner) .digital-card.orange {
  background: var(--orange);
  color: var(--ink);
}
:where(.pregon-inner) .digital-card p {
  color: rgba(255, 255, 255, 0.78);
}
:where(.pregon-inner) .digital-card.orange p {
  color: rgba(30, 25, 48, 0.72);
}
:where(.pregon-inner) .digital-card .btn-1,
:where(.pregon-inner) .digital-card .btn-2,
:where(.pregon-inner) .digital-card .btn-3,
:where(.pregon-inner) .digital-card input[type=submit] {
  margin-top: auto;
  align-self: flex-start;
}
:where(.pregon-inner) .digital-card:not(.orange) .btn-2 {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--purple-dark);
}
:where(.pregon-inner) .digital-card:not(.orange) .btn-2:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}
:where(.pregon-inner) .digital-card.orange :is(.btn-1, .btn-2, .btn-3) {
  background: var(--ink);
  color: #ffffff;
}
:where(.pregon-inner) .digital-card :is(.btn-1, .btn-2, .btn-3) .card-arrow {
  color: currentColor;
}
:where(.pregon-inner) .event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
:where(.pregon-inner) .event-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  transition: background 0.2s ease;
}
:where(.pregon-inner) .event-card:nth-child(2n) {
  border-right: 0;
}
:where(.pregon-inner) .event-card:hover {
  background: var(--purple-soft);
}
:where(.pregon-inner) .event-date {
  color: var(--purple);
  font-size: 14px;
  font-weight: 800;
}
:where(.pregon-inner) .event-card h2 {
  margin: auto 0 25px;
  font-size: clamp(24px, 2.3vw, 33px);
  line-height: 1.24;
}
:where(.pregon-inner) .event-more {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
:where(.pregon-inner) .article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 800;
}
:where(.pregon-inner) .article-prose {
  max-width: 850px;
}
:where(.pregon-inner) .article-prose p {
  font-size: 18px;
}
:where(.pregon-inner) .article-prose h2 {
  margin-top: 38px;
  font-size: clamp(30px, 4vw, 46px);
}
:where(.pregon-inner) .article-visual {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 42px;
  padding: 42px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--purple);
  color: #ffffff;
}
:where(.pregon-inner) .article-visual.orange {
  background: var(--orange);
  color: var(--ink);
}
:where(.pregon-inner) .article-visual.summit {
  min-height: 440px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, var(--purple-dark), var(--purple) 62%, #775bc0);
}
:where(.pregon-inner) .article-visual span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.78;
}
:where(.pregon-inner) .article-visual strong {
  max-width: 720px;
  font: 800 clamp(36px, 6vw, 68px)/1.03 "Manrope", sans-serif;
}
:where(.pregon-inner) .article-visual small {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  opacity: 0.8;
}
:where(.pregon-inner) .text-link {
  color: var(--purple);
  font-weight: 800;
}
:where(.pregon-inner) .data-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}
:where(.pregon-inner) .data-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1.1fr;
  border-bottom: 1px solid var(--line);
}
:where(.pregon-inner) .data-row:last-child {
  border-bottom: 0;
}
:where(.pregon-inner) .data-row > div {
  padding: 19px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
:where(.pregon-inner) .data-row.head {
  background: var(--purple);
}
:where(.pregon-inner) .data-row.head > div {
  color: #ffffff;
  font-weight: 800;
}
:where(.pregon-inner) .agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
:where(.pregon-inner) .agent-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}
:where(.pregon-inner) .agent-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
:where(.pregon-inner) .agent-card h2,
:where(.pregon-inner) .agent-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
}
:where(.pregon-inner) .contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}
:where(.pregon-inner) .contact-details {
  display: grid;
  gap: 14px;
  align-content: start;
}
:where(.pregon-inner) .contact-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}
:where(.pregon-inner) .contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--purple-soft);
  color: var(--purple);
}
:where(.pregon-inner) .contact-icon svg {
  width: 23px;
  height: 23px;
}
:where(.pregon-inner) .contact-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
:where(.pregon-inner) .contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}
:where(.pregon-inner) .contact-card a {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}
:where(.pregon-inner) .contact-card a:hover {
  color: var(--purple);
}
:where(.pregon-inner) .contact-form {
  padding: 34px;
  border-radius: 28px;
  background: var(--purple-soft);
}
:where(.pregon-inner) .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
:where(.pregon-inner) .field {
  display: grid;
  gap: 7px;
}
:where(.pregon-inner) .field.full {
  grid-column: 1/-1;
}
:where(.pregon-inner) .field label {
  font-size: 14px;
  font-weight: 700;
}
:where(.pregon-inner) .field input:not([type=checkbox]):not([type=submit]) {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px 15px;
  color: var(--ink);
}
:where(.pregon-inner) .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px 15px;
  color: var(--ink);
}
:where(.pregon-inner) .field textarea {
  min-height: 150px;
  resize: vertical;
}
:where(.pregon-inner) .field input:not([type=checkbox]):not([type=submit]):focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(88, 60, 152, 0.1);
}
:where(.pregon-inner) .field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(88, 60, 152, 0.1);
}

@media (max-width: 1040px) {
  :where(.pregon-inner) .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  :where(.pregon-inner) .page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  :where(.pregon-inner) .quote-card {
    max-width: 650px;
  }
  :where(.pregon-inner) .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  :where(.pregon-inner) .container {
    width: min(100% - 32px, 680px);
  }
  :where(.pregon-inner) .page-hero {
    padding: 62px 0 58px;
  }
  :where(.pregon-inner) .page-section {
    padding: 70px 0;
  }
  :where(.pregon-inner) .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  :where(.pregon-inner) .series-card {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .series-mark {
    min-height: 170px;
  }
  :where(.pregon-inner) .series-copy {
    padding: 28px;
  }
  :where(.pregon-inner) .article-visual {
    min-height: 280px;
    padding: 30px;
  }
  :where(.pregon-inner) .article-visual.summit {
    min-height: 360px;
  }
  :where(.pregon-inner) .digital-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .event-list {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .contact-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .event-card {
    border-right: 0;
    min-height: 235px;
  }
  :where(.pregon-inner) .data-table {
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  :where(.pregon-inner) .data-row {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
  }
  :where(.pregon-inner) .data-row.head {
    display: none;
  }
  :where(.pregon-inner) .data-row > div {
    padding: 8px 18px;
  }
  :where(.pregon-inner) .data-row > div::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }
  :where(.pregon-inner) .data-row > div:first-child {
    padding-top: 18px;
    color: var(--ink);
    font-weight: 800;
  }
  :where(.pregon-inner) .data-row > div:last-child {
    padding-bottom: 18px;
  }
}
@media (max-width: 560px) {
  :where(.pregon-inner) h1 {
    font-size: clamp(42px, 13vw, 59px);
  }
  :where(.pregon-inner) .catalogue-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .agent-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .form-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-inner) .field.full {
    grid-column: auto;
  }
  :where(.pregon-inner) .digital-card {
    padding: 28px 24px;
  }
  :where(.pregon-inner) .contact-form {
    padding: 28px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:where(.pregon-inner) {
    scroll-behavior: auto;
  }
  :where(.pregon-inner) * {
    transition-duration: 0.01ms !important;
  }
  :where(.pregon-inner) *::before {
    transition-duration: 0.01ms !important;
  }
  :where(.pregon-inner) *::after {
    transition-duration: 0.01ms !important;
  }
}
:where(.pregon-inner) .article-visual.has-photo {
  position: relative;
  padding: 0;
}
:where(.pregon-inner) .article-visual.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
:where(.pregon-inner) .series-details-body.has-cover {
  display: block;
}
:where(.pregon-inner) .series-details-banner {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  border-radius: 18px;
}
:where(.pregon-inner) .about-offer {
  margin-top: 72px;
}
:where(.pregon-inner) .prose .eyebrow + h2 {
  margin-top: 0;
}
:where(.pregon-inner) .digital-card.orange .eyebrow::before {
  background: var(--ink);
}
:where(.pregon-inner) .about-aside {
  display: grid;
  gap: 22px;
}
:where(.pregon-inner) .about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 360/500;
  object-fit: cover;
  border-radius: 26px;
}
:where(.pregon-inner) .page-grid.about-offer .prose {
  max-width: none;
}

@media (min-width: 1041px) {
  :where(.pregon-inner) .page-grid:has(> .about-aside) {
    align-items: stretch;
    row-gap: 56px;
  }
  :where(.pregon-inner) .about-aside:has(> .quote-card) {
    display: contents;
  }
  :where(.pregon-inner) .about-aside > .quote-card {
    grid-column: 1/-1;
  }
  :where(.pregon-inner) .page-grid .about-photo {
    contain: size;
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
    object-position: 50% 75%;
  }
  :where(.pregon-inner) .about-offer .about-photo {
    min-height: 500px;
    object-position: 50% 100%;
  }
}
:where(.pregon-inner) .digital-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: 18px;
}
:where(.pregon-inner) .article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 42px 0;
}
:where(.pregon-inner) .article-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
}
:where(.pregon-inner) .article-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.25s ease;
}
:where(.pregon-inner) .article-gallery a:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  :where(.pregon-inner) .article-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
:where(.pregon-inner) .resource-video {
  display: block;
  margin: 26px 0 18px;
  overflow: hidden;
  border-radius: 18px;
}
:where(.pregon-inner) .resource-video img {
  display: block;
  width: 100%;
  height: auto;
}
:where(.pregon-inner) .resource-books {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
:where(.pregon-inner) .resource-books a {
  display: grid;
  gap: 10px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
:where(.pregon-inner) .resource-books img {
  display: block;
  width: 100%;
  aspect-ratio: 400/290;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
:where(.pregon-inner) .resource-books a:hover img {
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  :where(.pregon-inner) .resource-books {
    grid-template-columns: 1fr;
  }
}
:where(.pregon-inner) .resource-video.is-playing {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
}
:where(.pregon-inner) .resource-video.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

:root:where(.pregon-home) {
  --ink: #1e1930;
  --muted: #6f687d;
  --purple: #583c98;
  --purple-dark: #35225f;
  --purple-soft: #f0ebfb;
  --orange: #f59b32;
  --orange-soft: #fff0da;
  --cream: #fbfaf7;
  --line: rgba(42, 31, 65, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(59, 40, 97, 0.12);
  --radius: 28px;
}

:where(.pregon-home) * {
  box-sizing: border-box;
}

html:where(.pregon-home) {
  scroll-behavior: smooth;
}

:where(.pregon-home) body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(.pregon-home) a {
  color: inherit;
  text-decoration: none;
}
:where(.pregon-home) button {
  font: inherit;
}
:where(.pregon-home) input {
  font: inherit;
}
:where(.pregon-home) img {
  display: block;
  max-width: 100%;
}
:where(.pregon-home) :where(a, button, input):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
:where(.pregon-home) .container {
  width: min(1380px, 100% - 64px);
  margin-inline: auto;
}
:where(.pregon-home) .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
:where(.pregon-home) .eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: var(--orange);
}
:where(.pregon-home) h1 {
  margin-top: 0;
}
:where(.pregon-home) h2 {
  margin-top: 0;
}
:where(.pregon-home) h3 {
  margin-top: 0;
}
:where(.pregon-home) p {
  margin-top: 0;
}
:where(.pregon-home) h1 {
  font-family: "Manrope", sans-serif;
}
:where(.pregon-home) h2 {
  font-family: "Manrope", sans-serif;
}
:where(.pregon-home) h3 {
  font-family: "Manrope", sans-serif;
}
:where(.pregon-home) h1 {
  font-size: clamp(46px, 5.6vw, 72px);
  line-height: 1.02;
  margin-bottom: 24px;
}
:where(.pregon-home) h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  margin-bottom: 24px;
}
:where(.pregon-home) p {
  line-height: 1.7;
  color: var(--muted);
  font-size: 17px;
}
:where(.pregon-home) .btn-1,
:where(.pregon-home) .btn-2,
:where(.pregon-home) .btn-3,
:where(.pregon-home) input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.22s ease;
  cursor: pointer;
}
:where(.pregon-home) .btn-1 svg,
:where(.pregon-home) .btn-2 svg,
:where(.pregon-home) .btn-3 svg,
:where(.pregon-home) input[type=submit] svg {
  transition: transform 0.22s ease;
}
:where(.pregon-home) .btn-1:hover svg,
:where(.pregon-home) .btn-2:hover svg,
:where(.pregon-home) .btn-3:hover svg,
:where(.pregon-home) input[type=submit]:hover svg {
  transform: translateX(4px);
}
:where(.pregon-home) .btn-1,
:where(.pregon-home) input[type=submit] {
  color: #ffffff;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(88, 60, 152, 0.22);
}
:where(.pregon-home) .btn-1:hover,
:where(.pregon-home) input[type=submit]:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}
:where(.pregon-home) .btn-2,
:where(.pregon-home) .btn-3 {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}
:where(.pregon-home) .btn-2:hover,
:where(.pregon-home) .btn-3:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
:where(.pregon-home) .hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 78px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}
:where(.pregon-home) .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: center;
}
:where(.pregon-home) .hero-copy p {
  max-width: 630px;
  margin-bottom: 30px;
}
:where(.pregon-home) .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
:where(.pregon-home) .hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: var(--purple-soft);
  overflow: hidden;
}
:where(.pregon-home) .hero-visual::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: var(--orange);
}
:where(.pregon-home) .hero-book {
  position: relative;
  z-index: 2;
  max-height: 430px;
  width: auto;
  filter: drop-shadow(0 28px 26px rgba(48, 32, 82, 0.22));
  transform: rotate(2deg);
}
:where(.pregon-home) .section {
  padding: 92px 0;
}
:where(.pregon-home) .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
:where(.pregon-home) .section-head h2 {
  max-width: 690px;
  margin-bottom: 0;
}
:where(.pregon-home) .section-head p {
  max-width: 410px;
  margin-bottom: 4px;
}
:where(.pregon-home) .catalogue-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
:where(.pregon-home) .catalogue-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
:where(.pregon-home) .catalogue-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 60, 152, 0.28);
  box-shadow: var(--shadow);
}
:where(.pregon-home) .book-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f5f3f8;
}
:where(.pregon-home) .book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
:where(.pregon-home) .catalogue-card:hover .book-image img {
  transform: scale(1.035);
}
:where(.pregon-home) .book-content {
  padding: 22px;
}
:where(.pregon-home) .catalogue-card h3 {
  margin: 0 0 12px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:where(.pregon-home) .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
:where(.pregon-home) .card-arrow {
  color: var(--purple);
  font-size: 18px;
}
:where(.pregon-home) .about-band {
  background: var(--purple);
  color: #ffffff;
}
:where(.pregon-home) .about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 88px;
  align-items: center;
}
:where(.pregon-home) .about-copy p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}
:where(.pregon-home) blockquote, :where(.pregon-home) :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-quote, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text :where(.pregon-home) .wp-block-quote {
  margin: 0;
  padding-left: 30px;
  border-left: 3px solid var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
}
:where(.pregon-home) .platform-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px 48px;
  border-radius: 28px;
  background: var(--orange-soft);
}
:where(.pregon-home) .platform-grid h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(29px, 3.5vw, 44px);
}
:where(.pregon-home) .events {
  background: #ffffff;
}
:where(.pregon-home) .events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
:where(.pregon-home) .event-card {
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}
:where(.pregon-home) .event-card:last-child {
  border-right: 0;
}
:where(.pregon-home) .event-card:hover {
  background: var(--purple-soft);
}
:where(.pregon-home) .event-date {
  color: var(--purple);
  font-size: 14px;
  font-weight: 800;
}
:where(.pregon-home) .event-card h3 {
  margin: auto 0 24px;
  font-size: 24px;
  line-height: 1.28;
}
:where(.pregon-home) .event-more {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
:where(.pregon-home) .newsletter {
  padding: 0 0 106px;
}
:where(.pregon-home) .newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 54px 60px;
  border-radius: 34px;
  background: var(--orange);
}
:where(.pregon-home) .newsletter h2 {
  margin-bottom: 8px;
  font-size: clamp(31px, 3.5vw, 47px);
}
:where(.pregon-home) .newsletter p {
  margin: 0;
  color: rgba(30, 25, 48, 0.72);
}

@media (max-width: 1040px) {
  :where(.pregon-home) .hero-grid {
    gap: 44px;
  }
  :where(.pregon-home) .about-grid {
    gap: 44px;
  }
  :where(.pregon-home) .hero-visual {
    min-height: 470px;
  }
  :where(.pregon-home) .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  :where(.pregon-home) .container {
    width: min(100% - 32px, 680px);
  }
  :where(.pregon-home) .hero {
    padding: 54px 0 72px;
  }
  :where(.pregon-home) .hero-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-home) .about-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-home) .newsletter-inner {
    grid-template-columns: 1fr;
  }
  :where(.pregon-home) .hero-visual {
    min-height: 460px;
    margin-top: 10px;
  }
  :where(.pregon-home) .section {
    padding: 80px 0;
  }
  :where(.pregon-home) .section-head {
    display: block;
  }
  :where(.pregon-home) .section-head p {
    margin-top: 20px;
  }
  :where(.pregon-home) .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  :where(.pregon-home) .about-grid {
    gap: 54px;
  }
  :where(.pregon-home) .platform-grid {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px;
  }
  :where(.pregon-home) .events-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-home) .event-card {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  :where(.pregon-home) .newsletter-inner {
    padding: 42px 34px;
    gap: 28px;
  }
}
@media (max-width: 560px) {
  :where(.pregon-home) h1 {
    font-size: clamp(43px, 13vw, 62px);
  }
  :where(.pregon-home) .hero-actions .btn-1,
  :where(.pregon-home) .hero-actions .btn-2,
  :where(.pregon-home) .hero-actions .btn-3,
  :where(.pregon-home) .hero-actions input[type=submit] {
    width: 100%;
  }
  :where(.pregon-home) .hero-visual {
    min-height: 420px;
  }
  :where(.pregon-home) .hero-book {
    max-height: 355px;
  }
  :where(.pregon-home) .catalogue-grid {
    grid-template-columns: 1fr;
  }
  :where(.pregon-home) .platform-grid {
    padding: 30px 24px;
  }
  :where(.pregon-home) .newsletter {
    padding-bottom: 80px;
  }
  :where(.pregon-home) .newsletter-inner {
    padding: 34px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:where(.pregon-home) {
    scroll-behavior: auto;
  }
  :where(.pregon-home) * {
    transition-duration: 0.01ms !important;
  }
  :where(.pregon-home) *::before {
    transition-duration: 0.01ms !important;
  }
  :where(.pregon-home) *::after {
    transition-duration: 0.01ms !important;
  }
}
.has-decor {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-decor > :not(.decor) {
  position: relative;
  z-index: 1;
}

.hero-visual.has-decor > .hero-book {
  z-index: 2;
}

.decor {
  --edge: max(0px, calc((100% - 1380px) / 2));
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.decor-item {
  position: absolute;
  display: block;
  width: var(--w);
  transform: rotate(var(--r, 0deg));
}

.decor-item img {
  display: block;
  width: 100%;
  height: auto;
}

.decor-float img {
  animation: decor-float 7s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes decor-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .decor-float img {
    animation: none;
  }
}
.page-hero {
  background: #fdf7e8;
}

.hero {
  background: #fdf7e8;
}

.page-hero::after {
  display: none;
}
.page-hero h1 {
  max-width: 900px;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
}

.hero-visual {
  background: #fbf0d2;
}

.hero-visual::before {
  display: none;
}

@media (max-width: 1040px) {
  .decor-hide-md {
    display: none;
  }
}
@media (max-width: 800px) {
  .decor-hide-sm {
    display: none;
  }
  .decor-item {
    width: var(--wsm, var(--w));
  }
}
.hero-visual.has-decor {
  overflow: visible;
}
.hero-visual.has-decor > .decor {
  z-index: 3;
}

@media (max-width: 1500px) {
  .decor-hide-lg {
    display: none;
  }
}
.quote-card.has-decor {
  overflow: hidden;
}

.banner {
  --banner-edge: max(32px, calc((100% - 1380px) / 2));
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 64px 0 60px;
  border-bottom: 1px solid rgba(42, 31, 65, 0.12);
  background: #fdf7e8;
}
.banner > .container {
  position: relative;
  z-index: 1;
}
.banner nav {
  margin-bottom: 28px;
}
.banner nav ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6f687d;
  font-size: 14px;
  line-height: 1.5;
}
.banner nav li + li::before {
  content: "/";
}
.banner nav a {
  padding-block: 4px;
  color: #6f687d;
  transition: all 150ms ease-in-out;
}
.banner nav a:hover, .banner nav a:focus-visible {
  color: #583c98;
}
.banner .banner-content {
  width: calc(100% - 300px);
  max-width: 760px;
}
.banner .banner-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.banner .banner-label::before {
  content: "";
  width: 26px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #f59b32;
}
.banner .banner-label span {
  color: #583c98;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}
.banner h1 {
  margin: 0 0 24px;
  color: #1e1930;
  font-size: clamp(46px, 5.6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
}
.banner p {
  margin: 0;
  color: #6f687d;
  font-size: 18px;
  line-height: 1.7;
}
.banner .banner-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
}
.banner .banner-shapes img {
  position: absolute;
  display: block;
  height: auto;
}
.banner .banner-shapes img:nth-child(1) {
  top: -46px;
  right: calc(var(--banner-edge) - 40px);
  width: 170px;
  transform: rotate(10deg);
}
.banner .banner-shapes img:nth-child(2) {
  right: calc(var(--banner-edge) + 220px);
  bottom: 34px;
  width: 70px;
}
.banner .banner-shapes img:nth-child(3) {
  right: calc(var(--banner-edge) + 60px);
  bottom: -30px;
  width: 120px;
  transform: rotate(-6deg);
}
@media (max-width: 991px) {
  .banner {
    padding: 52px 0 104px;
  }
  .banner .banner-content {
    width: 100%;
    max-width: 680px;
  }
  .banner .banner-shapes img:nth-child(1) {
    top: -44px;
    right: 12px;
    width: 120px;
  }
  .banner .banner-shapes img:nth-child(2) {
    right: 148px;
    bottom: 22px;
    width: 52px;
  }
  .banner .banner-shapes img:nth-child(3) {
    right: 26px;
    bottom: -26px;
    width: 104px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-top: 36px;
  }
  .banner nav {
    margin-bottom: 24px;
  }
  .banner .banner-label {
    margin-bottom: 20px;
  }
  .banner h1 {
    margin-bottom: 20px;
    font-size: clamp(43px, 13vw, 62px);
  }
  .banner p {
    font-size: 16px;
  }
  .banner .banner-shapes img:nth-child(1) {
    top: -36px;
    right: -18px;
    width: 96px;
  }
  .banner .banner-shapes img:nth-child(2) {
    right: 112px;
    bottom: 22px;
    width: 44px;
  }
  .banner .banner-shapes img:nth-child(3) {
    right: 8px;
    bottom: -24px;
    width: 88px;
  }
}

:where(.pregon-home) [data-motion=enter] {
  --reveal-distance: 18px;
  animation: pregon-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-order, 0) * 60ms);
}
@media (max-width: 767px) {
  :where(.pregon-home) [data-motion=enter] {
    --reveal-distance: 10px;
    animation-duration: 380ms;
    animation-delay: calc(var(--reveal-order, 0) * 40ms);
  }
}
:where(.pregon-home) .hero-book,
:where(.pregon-home) .banner-shapes img {
  --float-distance: -8px;
  animation: pregon-float 8s ease-in-out infinite;
}
@media (max-width: 767px) {
  :where(.pregon-home) .hero-book,
  :where(.pregon-home) .banner-shapes img {
    --float-distance: -4px;
  }
}
:where(.pregon-home) .banner-shapes img:nth-child(1) {
  animation-delay: -2s;
}
:where(.pregon-home) .banner-shapes img:nth-child(2) {
  animation-delay: -4s;
}
:where(.pregon-home) .banner-shapes img:nth-child(3) {
  animation-delay: -6s;
}
@media (max-width: 767px) {
  :where(.pregon-home) .decor-float img {
    animation-name: pregon-decor-mobile;
  }
}
:where(.pregon-home) .hero-book[data-motion-paused=true],
:where(.pregon-home) .banner-shapes img[data-motion-paused=true],
:where(.pregon-home) .decor-float img[data-motion-paused=true] {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  :where(.pregon-home) [data-motion=enter],
  :where(.pregon-home) .hero-book,
  :where(.pregon-home) .banner-shapes img,
  :where(.pregon-home) .decor-float img {
    animation: none;
  }
}

@keyframes pregon-reveal {
  from {
    opacity: 0;
    translate: 0 var(--reveal-distance);
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes pregon-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 var(--float-distance);
  }
}
@keyframes pregon-decor-mobile {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}
:where(.pregon-legacy) .seo-content-section {
  background-color: #ffffff;
  padding: 40px 0;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .seo-content-section {
    padding: 30px 0;
  }
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-item {
  border: none;
  background-color: #ffffff;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-button {
  display: flex;
  align-items: center;
  padding: 15px 0;
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .seo-content-section .accordion .accordion-button {
    padding: 10px 0;
    font-size: 14px;
  }
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  box-shadow: none;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-button::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  content: "";
  background-image: url("../assets/icons/angle-down.svg");
  background-repeat: no-repeat;
  background-size: 1rem;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body {
  padding: 30px 25px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .seo-content-section .accordion .accordion-body {
    padding: 25px 20px;
  }
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .seo-content-section .accordion .accordion-body h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body h4 {
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #121c34;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .seo-content-section .accordion .accordion-body h4 {
    font-size: 14px;
    margin-top: 20px;
  }
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body h4:first-of-type {
  margin-top: 0;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #41495d;
  margin-bottom: 12px;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body p:last-child {
  margin-bottom: 0;
}
:where(.pregon-legacy) .seo-content-section .accordion .accordion-body p strong {
  font-weight: 700;
}
:where(.pregon-legacy) .page-default {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .page-default {
    padding: 40px 0px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-header {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #a0a4ae;
}
:where(.pregon-legacy) .page-default .page-content .page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #000000;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-default .page-content .page-header h1 {
    font-size: 28px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-header .last-updated {
  font-size: 14px;
  color: #41495d;
  opacity: 0.7;
  margin: 0;
}
:where(.pregon-legacy) .page-default .page-content .page-header .last-updated time {
  font-weight: 500;
}
:where(.pregon-legacy) .page-default .page-content .page-body h1 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 25px;
  color: #000000;
  line-height: 1.2;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-default .page-content .page-body h1 {
    font-size: 36px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-body h1:first-child {
  margin-top: 0;
}
:where(.pregon-legacy) .page-default .page-content .page-body h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 22px;
  color: #000000;
  line-height: 1.25;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-default .page-content .page-body h2 {
    font-size: 28px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-body h2:first-child {
  margin-top: 0;
}
:where(.pregon-legacy) .page-default .page-content .page-body h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.3;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-default .page-content .page-body h3 {
    font-size: 24px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-body h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 18px;
  color: #000000;
  line-height: 1.3;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-default .page-content .page-body h4 {
    font-size: 20px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-body h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
  line-height: 1.4;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-default .page-content .page-body h5 {
    font-size: 18px;
  }
}
:where(.pregon-legacy) .page-default .page-content .page-body h6 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #000000;
  line-height: 1.4;
}
:where(.pregon-legacy) .page-default .page-content .page-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #41495d;
  opacity: 0.85;
  margin-bottom: 18px;
}
:where(.pregon-legacy) .page-default .page-content .page-body p:last-of-type {
  margin-bottom: 0;
}
:where(.pregon-legacy) .page-default .page-content .page-body ul,
:where(.pregon-legacy) .page-default .page-content .page-body ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
:where(.pregon-legacy) .page-default .page-content .page-body ul li,
:where(.pregon-legacy) .page-default .page-content .page-body ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #41495d;
  opacity: 0.85;
  margin-bottom: 10px;
}
:where(.pregon-legacy) .page-default .page-content .page-body ul li:last-child,
:where(.pregon-legacy) .page-default .page-content .page-body ol li:last-child {
  margin-bottom: 0;
}
:where(.pregon-legacy) .page-default .page-content .page-body ul li {
  list-style-type: disc;
}
:where(.pregon-legacy) .page-default .page-content .page-body ol li {
  list-style-type: decimal;
}
:where(.pregon-legacy) .page-default .page-content .page-body a {
  color: #34b88a;
  text-decoration: underline;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .page-default .page-content .page-body a:hover {
  opacity: 0.8;
}
:where(.pregon-legacy) .page-default .page-content .page-body strong,
:where(.pregon-legacy) .page-default .page-content .page-body b {
  font-weight: 700;
  color: #000000;
}
:where(.pregon-legacy) .page-default .page-content .page-body blockquote, :where(.pregon-legacy) .page-default .page-content .page-body .single-post .post-content .main-content .main-content-text .wp-block-quote, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .page-default .page-content .page-body .wp-block-quote {
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 4px solid #34b88a;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
  font-style: italic;
  color: #41495d;
  font-size: 16px;
  line-height: 1.8;
}
:where(.pregon-legacy) .page-default .page-content .page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
}
:where(.pregon-legacy) .page-default .page-content .page-body table th {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 12px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid #a0a4ae;
  font-size: 14px;
  color: #000000;
}
:where(.pregon-legacy) .page-default .page-content .page-body table td {
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #41495d;
}
:where(.pregon-legacy) .page-default .page-content .page-body table tr:last-child td {
  border-bottom: none;
}
:where(.pregon-legacy) .blog-page .blog-hero {
  text-align: center;
  padding: 50px 20px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .blog-page .blog-hero {
    padding: 40px 20px 0;
  }
}
:where(.pregon-legacy) .blog-page .blog-hero .big-title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .blog-page .blog-hero .big-title {
    margin-bottom: 30px;
  }
}
:where(.pregon-legacy) .blog-page .blog-hero .big-title h1,
:where(.pregon-legacy) .blog-page .blog-hero .big-title h4 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #121c34;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .blog-page .blog-hero .big-title h1,
  :where(.pregon-legacy) .blog-page .blog-hero .big-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .blog-page .blog-hero .big-title h1,
  :where(.pregon-legacy) .blog-page .blog-hero .big-title h4 {
    font-size: 28px;
  }
}
:where(.pregon-legacy) .blog-page .blog-hero .big-title p {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.7;
  color: #41495d;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .blog-page .blog-hero .big-title p {
    font-size: 16px;
  }
}
:where(.pregon-legacy) .blog-page .blog-posts {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .blog-page .blog-posts {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
:where(.pregon-legacy) .blog-page .post-card {
  border: 1px solid #717785;
  border-radius: 12px;
  background-color: #ffffff;
  overflow: hidden;
  height: 100%;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .blog-page .post-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #121c34;
}
:where(.pregon-legacy) .blog-page .post-card-link {
  color: inherit;
}
:where(.pregon-legacy) .blog-page .post-image {
  margin: 20px 20px 0 20px;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}
:where(.pregon-legacy) .blog-page .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
:where(.pregon-legacy) .blog-page .post-body {
  padding: 20px;
}
:where(.pregon-legacy) .blog-page .post-body .post-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
:where(.pregon-legacy) .blog-page .post-body .category-tag {
  display: inline-block;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  background-color: #f4f7f7;
  color: #121c34;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .blog-page .post-body .category-tag:hover {
  background-color: #a0a4ae;
  color: #121c34;
}
:where(.pregon-legacy) .blog-page .post-body .meta-data {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #41495d;
}
:where(.pregon-legacy) .blog-page .post-body .meta-data .time,
:where(.pregon-legacy) .blog-page .post-body .meta-data .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
:where(.pregon-legacy) .blog-page .post-body .meta-data img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
:where(.pregon-legacy) .blog-page .post-body .post-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #000000;
}
:where(.pregon-legacy) .blog-page .post-body .post-excerpt {
  font-size: 14px;
  color: #41495d;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
:where(.pregon-legacy) .blog-page .pagination-nav {
  margin-top: 40px;
  text-align: center;
}
:where(.pregon-legacy) .blog-page .pagination-nav .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 15px;
  color: #41495d;
  border: 1px solid #717785;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .blog-page .pagination-nav .page-numbers:hover {
  background-color: #f4f7f7;
  border-color: #000000;
}
:where(.pregon-legacy) .blog-page .pagination-nav .page-numbers.current {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
:where(.pregon-legacy) .single-post .post-content {
  padding: 80px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content {
    padding: 50px 0;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb {
  margin-bottom: 30px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #41495d;
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #717785;
  font-weight: 300;
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb li:last-child span {
  color: #000000;
  font-weight: 500;
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb a {
  color: #41495d;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .breadcrumb a:hover {
  color: #000000;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box {
  margin-bottom: 30px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #a0a4ae;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-item {
  background: transparent;
  border: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-header {
  margin: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #121c34;
  border-radius: 8px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-button {
    font-size: 14px;
    padding: 10px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #121c34;
  box-shadow: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-button:focus {
  box-shadow: none;
  border: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 20px;
  font-weight: 400;
  width: auto;
  height: auto;
  background-size: auto;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .accordion-body {
  padding: 0 25px 20px 25px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #121c34;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list {
  counter-reset: main-counter;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li {
  counter-increment: main-counter;
  margin-bottom: 8px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li::before {
  content: counter(main-counter) ". ";
  font-weight: 600;
  color: #121c34;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > a {
  color: #41495d;
  font-size: 14px;
  line-height: 1.6;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > a:hover {
  color: #121c34;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol {
  counter-reset: sub-counter;
  padding-left: 20px;
  margin-top: 8px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li {
  counter-increment: sub-counter;
  margin-bottom: 6px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li::before {
  content: counter(main-counter) "." counter(sub-counter) " ";
  font-weight: 600;
  color: #121c34;
  opacity: 0.85;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > a {
  font-size: 14px;
  line-height: 1.5;
  color: #41495d;
  opacity: 0.9;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > a:hover {
  color: #121c34;
  opacity: 1;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol {
  counter-reset: subsub-counter;
  padding-left: 20px;
  margin-top: 6px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li {
  counter-increment: subsub-counter;
  margin-bottom: 5px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li::before {
  content: counter(main-counter) "." counter(sub-counter) "." counter(subsub-counter) " ";
  font-weight: 600;
  color: #121c34;
  opacity: 0.75;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > a {
  font-size: 14px;
  line-height: 1.4;
  color: #41495d;
  opacity: 0.85;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > a:hover {
  color: #121c34;
  opacity: 1;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol {
  counter-reset: level4-counter;
  padding-left: 20px;
  margin-top: 5px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li {
  counter-increment: level4-counter;
  margin-bottom: 4px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li::before {
  content: counter(main-counter) "." counter(sub-counter) "." counter(subsub-counter) "." counter(level4-counter) " ";
  font-weight: 600;
  color: #121c34;
  opacity: 0.65;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > a {
  font-size: 12px;
  line-height: 1.3;
  color: #41495d;
  opacity: 0.8;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > a:hover {
  color: #121c34;
  opacity: 1;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > ol {
  counter-reset: level5-counter;
  padding-left: 20px;
  margin-top: 4px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > ol > li {
  counter-increment: level5-counter;
  margin-bottom: 3px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > ol > li::before {
  content: counter(main-counter) "." counter(sub-counter) "." counter(subsub-counter) "." counter(level4-counter) "." counter(level5-counter) " ";
  font-weight: 600;
  color: #121c34;
  opacity: 0.55;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > ol > li > a {
  font-size: 12px;
  line-height: 1.3;
  color: #41495d;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .toc-box .toc-list > li > ol > li > ol > li > ol > li > ol > li > a:hover {
  color: #121c34;
  opacity: 1;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 14px;
  margin-top: 15px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .post-meta {
    align-items: flex-start;
    gap: 15px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
  font-size: 14px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta a {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta a:hover {
  opacity: 1;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta img {
  width: 20px;
  height: 20px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share {
  margin-left: auto;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share {
    margin-left: 0;
    width: 100%;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-header {
  margin-bottom: 50px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .post-header h1 {
    font-size: 28px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-label {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #a0a4ae;
  color: #000000;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn img {
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn:hover {
  transform: translateY(-2px);
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn:hover img {
  filter: invert(1);
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn.facebook:hover {
  background-color: #7833fe;
  color: #ffffff;
  border-color: #7833fe;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn.twitter:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn.linkedin:hover {
  background-color: #6029cb;
  color: #ffffff;
  border-color: #6029cb;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-meta .post-share .share-btn.whatsapp:hover {
  background-color: #34b88a;
  color: #ffffff;
  border-color: #34b88a;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-image-lg {
  margin-bottom: 20px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .post-image-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text {
  margin-bottom: 30px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h1,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h2,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h3,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h4,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h5,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h6 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h1 {
  font-size: 28px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h1 {
    font-size: 28px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h2 {
  font-size: 28px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h2 {
    font-size: 24px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h3 {
    font-size: 20px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h4 {
  font-size: 20px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h4 {
    font-size: 18px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h5 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h5 {
    font-size: 16px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text h6 {
  font-size: 16px;
  font-weight: 600;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.8;
  font-weight: 400;
  margin-bottom: 15px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text p:last-of-type {
  margin-bottom: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text a {
  color: #34b88a;
  text-decoration: underline;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text a:hover {
  opacity: 0.8;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text strong,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text b {
  font-weight: 700;
  color: #000000;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text em,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text i {
  font-style: italic;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ul,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ol {
  line-height: 1.8;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ul li,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ol li {
  margin-bottom: 8px;
  font-size: 16px;
  opacity: 0.8;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ul li:last-child,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ol li:last-child {
  margin-bottom: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text ul li {
  list-style-type: disc;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text blockquote, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-quote {
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 4px solid #34b88a;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
  font-style: italic;
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.8;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text blockquote p, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-quote p {
  margin-bottom: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text blockquote p:first-child, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-quote p:first-child {
  margin-top: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text blockquote footer, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-quote footer {
  margin-top: 10px;
  font-size: 14px;
  font-style: normal;
  opacity: 0.7;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text blockquote footer::before, :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-quote footer::before {
  content: "— ";
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text pre {
  background-color: #04060a;
  color: #d0d2d6;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 25px 0;
  font-size: 14px;
  line-height: 1.6;
  font-family: "DM Sans", sans-serif;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text code {
  background-color: rgba(0, 0, 0, 0.05);
  color: #dc3545;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #a0a4ae;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  max-width: 40%;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img.alignleft {
    float: none;
    max-width: 100%;
    margin-right: 0;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  max-width: 40%;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img.alignright {
    float: none;
    max-width: 100%;
    margin-left: 0;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text img.wp-smiley {
  max-width: 20px;
  height: auto;
  display: inline;
  margin: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure {
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure img {
  margin: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure figcaption {
  font-size: 14px;
  opacity: 0.6;
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table {
  margin: 25px 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  border: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table thead {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table thead td,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table th {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  border: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table thead td:not(:last-child),
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table th:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table tbody td {
  padding: 13px 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
  border: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table tbody td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table tbody tr:last-child td {
  border-bottom: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table tbody tr {
  transition: background-color 0.15s ease;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text figure.wp-block-table table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) th,
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) thead td {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) td {
  padding: 13px 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) tr:last-child td {
  border-bottom: none;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) tbody tr {
  transition: background-color 0.15s ease;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text table:not(.wp-block-table table) tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.025);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-image {
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-image img {
  margin: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-video {
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-video video {
  max-width: 100%;
  height: auto;
  display: block;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-audio {
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-pullquote {
  border-left: 5px solid #34b88a;
  padding: 30px 20px;
  margin: 30px 0;
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: #f4f7f7;
  border-radius: 8px;
  line-height: 1.6;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-pullquote p {
  margin-bottom: 10px;
  font-size: 18px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-pullquote cite {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-style: normal;
  opacity: 0.7;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-embed {
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-embed iframe {
  max-width: 100%;
  height: auto;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-separator {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #a0a4ae;
  opacity: 1;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-columns {
  display: grid;
  gap: 20px;
  margin: 25px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-columns .wp-block-column {
  min-width: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-button {
  display: inline-block;
  margin: 15px 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-button a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #34b88a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
  font-size: 16px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-button a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-button.is-style-outline a {
  background-color: transparent;
  color: #34b88a;
  border: 2px solid #34b88a;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-list {
  margin-bottom: 15px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-heading:not(:first-child) {
  margin-top: 30px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-heading {
  margin-bottom: 15px;
  font-weight: 700;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-paragraph {
  margin-bottom: 15px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-group {
  margin: 25px 0;
  padding: 0;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-group.has-background {
  padding: 20px;
  border-radius: 8px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-cover {
  margin: 25px 0;
  border-radius: 8px;
  min-height: 300px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-cover {
    min-height: 200px;
  }
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-gallery {
  margin: 25px 0;
  display: grid;
  gap: 15px;
}
:where(.pregon-legacy) .single-post .post-content .main-content .main-content-text .wp-block-gallery figcaption {
  font-size: 14px;
  opacity: 0.6;
}
:where(.pregon-legacy) .single-post .post-content .sidebar-toc {
  width: 280px;
  margin-right: 40px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .sidebar-toc {
    width: 0px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .post-content .container {
    flex-direction: column;
  }
  :where(.pregon-legacy) .single-post .post-content .main-content {
    width: 100%;
    padding-top: 0;
  }
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta {
  padding-top: 20px;
  border-top: 1px solid #a0a4ae;
  margin-top: 40px;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .meta-section {
  margin-bottom: 25px;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .meta-title {
  font-size: 16px;
  font-weight: 500;
  color: #41495d;
  margin-bottom: 10px;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .meta-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .meta-tag {
  display: inline-flex;
  align-items: center;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .meta-tag:hover {
  background-color: #000000;
  color: #ffffff;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .copy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #000000;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .copy-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
:where(.pregon-legacy) .single-post .post-content .post-footer-meta .copy-button:hover {
  border-color: #000000;
  color: #000000;
}
:where(.pregon-legacy) .single-post .post-content .mini-title {
  margin-left: 20px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .mini-title {
    margin-left: 0;
    margin-top: 60px;
  }
}
:where(.pregon-legacy) .single-post .post-content .mini-title h2 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}
:where(.pregon-legacy) .single-post .post-content .blog-item {
  margin-bottom: 40px;
  margin-left: 20px;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .blog-item {
    margin-left: 0;
  }
}
:where(.pregon-legacy) .single-post .post-content .blog-item .blog-link {
  display: flex;
  color: inherit;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .blog-link:hover {
  opacity: 0.8;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .image {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  flex: 1;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .text h3 {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .text span {
  color: #41495d;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
:where(.pregon-legacy) .single-post .post-content .blog-item .text span.date img, :where(.pregon-legacy) .single-post .post-content .blog-item .text span.reading img {
  width: 15px;
  height: 15px;
}
:where(.pregon-legacy) .single-post .post-content .post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #a0a4ae;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .single-post .post-content .post-navigation {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
:where(.pregon-legacy) .single-post .post-content .post-navigation .nav-prev a,
:where(.pregon-legacy) .single-post .post-content .post-navigation .nav-next a {
  display: block;
  padding: 20px;
  border: 1px solid #a0a4ae;
  border-radius: 12px;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .post-content .post-navigation .nav-prev a:hover,
:where(.pregon-legacy) .single-post .post-content .post-navigation .nav-next a:hover {
  border-color: #000000;
  background-color: rgba(0, 0, 0, 0.05);
}
:where(.pregon-legacy) .single-post .post-content .post-navigation .nav-prev a {
  text-align: left;
}
:where(.pregon-legacy) .single-post .post-content .post-navigation .nav-next a {
  text-align: right;
}
:where(.pregon-legacy) .single-post .pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  padding: 40px 0;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid #a0a4ae;
  border-radius: 8px;
  color: #000000;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers:hover {
  border-color: #34b88a;
  color: #34b88a;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers.current {
  background-color: #34b88a;
  color: #ffffff;
  border-color: #34b88a;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers.dots {
  border: none;
  cursor: default;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers.dots:hover {
  border: none;
  color: #000000;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers.prev, :where(.pregon-legacy) .single-post .pagination-nav .page-numbers.next {
  padding: 0 15px;
}
:where(.pregon-legacy) .single-post .pagination-nav .page-numbers.prev:hover, :where(.pregon-legacy) .single-post .pagination-nav .page-numbers.next:hover {
  background-color: rgba(52, 184, 138, 0.1);
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .single-post .pagination-nav {
    gap: 4px;
    font-size: 14px;
  }
  :where(.pregon-legacy) .single-post .pagination-nav .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
  }
  :where(.pregon-legacy) .single-post .pagination-nav .page-numbers.prev, :where(.pregon-legacy) .single-post .pagination-nav .page-numbers.next {
    padding: 0 10px;
  }
}
:where(.pregon-legacy) .page-404 {
  padding: 60px 20px;
  min-height: calc(100vh - 300px);
  background-color: #ffffff;
}
@media (max-width: 991px) {
  :where(.pregon-legacy) .page-404 {
    padding: 50px 15px;
    min-height: calc(100vh - 250px);
  }
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-404 {
    padding: 40px 15px;
  }
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 {
    padding: 30px 10px;
    min-height: calc(100vh - 200px);
  }
}
:where(.pregon-legacy) .page-404 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
:where(.pregon-legacy) .page-404 .container h1 {
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 700;
  background: linear-gradient(135deg, #34b88a, #7833fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  line-height: 1;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-404 .container h1 {
    font-size: 80px;
  }
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container h1 {
    font-size: 60px;
  }
}
:where(.pregon-legacy) .page-404 .container h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: #121c34;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-404 .container h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container h2 {
    font-size: 24px;
  }
}
:where(.pregon-legacy) .page-404 .container .messages {
  margin-bottom: 40px;
  max-width: 600px;
}
@media (max-width: 767px) {
  :where(.pregon-legacy) .page-404 .container .messages {
    margin-bottom: 35px;
  }
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container .messages {
    margin-bottom: 30px;
  }
}
:where(.pregon-legacy) .page-404 .container .messages p {
  font-size: 16px;
  font-weight: 400;
  color: #41495d;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container .messages p {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
:where(.pregon-legacy) .page-404 .container .social-links {
  margin-top: 50px;
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container .social-links {
    margin-top: 35px;
  }
}
:where(.pregon-legacy) .page-404 .container .social-links .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container .social-links .social-media {
    gap: 15px;
  }
}
:where(.pregon-legacy) .page-404 .container .social-links .social-media li {
  display: inline-block;
}
:where(.pregon-legacy) .page-404 .container .social-links .social-media li a {
  color: #34b88a;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 2px solid #a0a4ae;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
:where(.pregon-legacy) .page-404 .container .social-links .social-media li a img {
  width: 20px;
  height: 20px;
}
:where(.pregon-legacy) .page-404 .container .social-links .social-media li a:hover {
  background-color: #34b88a;
  border-color: #34b88a;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(52, 184, 138, 0.2);
}
:where(.pregon-legacy) .page-404 .container .social-links .social-media li a:focus {
  outline: 2px solid #34b88a;
  outline-offset: 2px;
}
@media (max-width: 320px) {
  :where(.pregon-legacy) .page-404 .container .social-links .social-media li a {
    width: 45px;
    height: 45px;
  }
  :where(.pregon-legacy) .page-404 .container .social-links .social-media li a img {
    width: 18px;
    height: 18px;
  }
}

:where(.pregon-site) .topbar .container,
:where(.pregon-site) .site-header .container,
:where(.pregon-site) footer .container {
  width: min(1380px, 100% - 64px);
  max-width: none;
  padding-inline: 0;
}
@media (max-width: 800px) {
  :where(.pregon-site) .topbar .container,
  :where(.pregon-site) .site-header .container,
  :where(.pregon-site) footer .container {
    width: min(680px, 100% - 32px);
  }
}
:where(.pregon-site) .form-consent {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}
:where(.pregon-site) .form-consent input[type=checkbox] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #583c98;
}
:where(.pregon-site) .form-consent label {
  font-size: 14px;
  line-height: 1.5;
  color: #1e1930;
  cursor: pointer;
}
:where(.pregon-site) .form-help {
  margin-top: 12px;
}
:where(.pregon-site) .form-help p {
  margin: 0;
  color: #1e1930;
  font-size: 12px;
  line-height: 1.5;
}
:where(.pregon-site) .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
:where(.pregon-site) .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
:where(.pregon-site) .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #583c98;
}
:where(.pregon-site) .subscribe {
  min-width: 0;
}
:where(.pregon-site) .subscribe .form-fields {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}
:where(.pregon-site) .subscribe .form-fields label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
:where(.pregon-site) .subscribe .form-fields input[type=email] {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0 17px;
  border: 0;
  background: transparent;
}
:where(.pregon-site) .subscribe .form-fields input[type=submit] {
  flex-shrink: 0;
}
@media (max-width: 560px) {
  :where(.pregon-site) .subscribe .form-fields {
    flex-direction: column;
    border-radius: 22px;
  }
  :where(.pregon-site) .subscribe .form-fields input[type=email] {
    min-height: 46px;
  }
}
:where(.pregon-site) .breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}
:where(.pregon-site) .breadcrumbs ol li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: inherit;
  color: inherit;
}
:where(.pregon-site) .breadcrumbs ol li + li::before {
  content: "/";
}
:where(.pregon-site) main {
  min-width: 0;
}
:where(.pregon-site) .page-grid > *,
:where(.pregon-site) .contact-grid > *,
:where(.pregon-site) .form-grid > * {
  min-width: 0;
}
:where(.pregon-site) .resource-video.is-playing iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  :where(.pregon-site),
  :where(.pregon-site) * {
    scroll-behavior: auto;
  }
}

:where(.pregon-legacy) .page-default .page-body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}
:where(.pregon-legacy) .page-404 .social-media {
  list-style: none;
  margin: 0;
  padding: 0;
}

:where(.pregon-site) body.menu-open {
  overflow: hidden;
}
:where(.pregon-site) .topbar {
  background: #35225f;
  color: rgba(255, 255, 255, 0.83);
  font-size: 13px;
}
:where(.pregon-site) .topbar .topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 800px) {
  :where(.pregon-site) .topbar .topbar-inner {
    justify-content: flex-end;
  }
}
@media (max-width: 800px) {
  :where(.pregon-site) .topbar .topbar-note {
    display: none;
  }
}
:where(.pregon-site) .topbar .topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
:where(.pregon-site) .topbar .topbar-links a:hover {
  color: #ffffff;
}
@media (max-width: 800px) {
  :where(.pregon-site) .topbar .topbar-links a:first-child {
    display: none;
  }
}
:where(.pregon-site) .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(42, 31, 65, 0.08);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}
:where(.pregon-site) .site-header > .container {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
@media (max-width: 1120px) {
  :where(.pregon-site) .site-header > .container {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  :where(.pregon-site) .site-header > .container {
    min-height: 76px;
  }
}
:where(.pregon-site) .site-header .logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 160px;
  flex: 0 0 auto;
  transition: all 150ms ease-in-out;
}
:where(.pregon-site) .site-header .logo img {
  width: 100%;
  height: auto;
}
:where(.pregon-site) .site-header .logo:hover {
  opacity: 0.8;
}
@media (max-width: 800px) {
  :where(.pregon-site) .site-header .logo {
    width: 142px;
  }
}
:where(.pregon-site) .site-header nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}
:where(.pregon-site) .site-header nav .header-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1120px) {
  :where(.pregon-site) .site-header nav .header-menu {
    gap: 16px;
  }
}
:where(.pregon-site) .site-header nav .header-menu .menu-item {
  position: relative;
  line-height: 1.4;
}
:where(.pregon-site) .site-header nav .header-menu .menu-item > a {
  display: block;
  padding: 14px 0;
  color: #3c354b;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 150ms ease-in-out;
}
:where(.pregon-site) .site-header nav .header-menu .menu-item > a:hover, :where(.pregon-site) .site-header nav .header-menu .menu-item > a:focus-visible {
  color: #583c98;
}
@media (max-width: 1120px) {
  :where(.pregon-site) .site-header nav .header-menu .menu-item > a {
    font-size: 13px;
  }
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.current-menu-item > a, :where(.pregon-site) .site-header nav .header-menu .menu-item.current-menu-parent > a, :where(.pregon-site) .site-header nav .header-menu .menu-item.current-menu-ancestor > a {
  color: #583c98;
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children > a {
  padding-right: 18px;
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 2px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: all 150ms ease-in-out;
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children.active > a::after {
  transform: rotate(225deg);
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children.active > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.menu-contact > a {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 999px;
  color: #ffffff;
  background: #583c98;
  box-shadow: 0 12px 28px rgba(88, 60, 152, 0.22);
}
:where(.pregon-site) .site-header nav .header-menu .menu-item.menu-contact > a:hover, :where(.pregon-site) .site-header nav .header-menu .menu-item.menu-contact > a:focus-visible {
  background: #35225f;
}
:where(.pregon-site) .site-header nav .header-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -22px;
  z-index: 3;
  width: 246px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(42, 31, 65, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(59, 40, 97, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 150ms ease-in-out;
}
:where(.pregon-site) .site-header nav .header-menu .sub-menu .menu-item > a {
  padding: 12px 14px;
  border-radius: 11px;
  white-space: normal;
}
:where(.pregon-site) .site-header nav .header-menu .sub-menu .menu-item > a:hover, :where(.pregon-site) .site-header nav .header-menu .sub-menu .menu-item > a:focus-visible {
  background: #f0ebfb;
}
:where(.pregon-site) .site-header nav .header-menu .sub-menu .mobile-back-btn {
  display: none;
}
:where(.pregon-site) .site-header .menu-trigger {
  position: relative;
  z-index: 4;
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid rgba(42, 31, 65, 0.12);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
:where(.pregon-site) .site-header .menu-trigger span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: #1e1930;
  border-radius: 2px;
  transition: all 150ms ease-in-out;
}
:where(.pregon-site) .site-header .menu-trigger span:nth-child(1) {
  top: 15px;
}
:where(.pregon-site) .site-header .menu-trigger span:nth-child(2) {
  top: 20px;
}
:where(.pregon-site) .site-header .menu-trigger span:nth-child(3) {
  top: 25px;
}
:where(.pregon-site) .site-header .menu-trigger.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
:where(.pregon-site) .site-header .menu-trigger.active span:nth-child(2) {
  opacity: 0;
}
:where(.pregon-site) .site-header .menu-trigger.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
@media (max-width: 1040px) {
  :where(.pregon-site) .site-header {
    background: #fbfaf7;
    backdrop-filter: none;
  }
  :where(.pregon-site) .site-header .menu-trigger {
    display: block;
  }
  :where(.pregon-site) .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    height: 100dvh;
    padding-top: 114px;
    overflow: hidden;
    background: #fbfaf7;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 300ms ease-in-out;
  }
  :where(.pregon-site) .site-header nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  :where(.pregon-site) .site-header nav .header-menu {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 24px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  :where(.pregon-site) .site-header nav .header-menu .menu-item {
    position: static;
  }
  :where(.pregon-site) .site-header nav .header-menu .menu-item > a {
    position: relative;
    padding: 17px 4px;
    border-bottom: 1px solid rgba(42, 31, 65, 0.12);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    white-space: normal;
  }
  :where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children > a {
    padding-right: 24px;
  }
  :where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children > a::after, :where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children.active > a::after {
    right: 6px;
    transform: rotate(-45deg);
  }
  :where(.pregon-site) .site-header nav .header-menu .menu-item.menu-item-has-children.active > .sub-menu {
    transform: translateX(0);
  }
  :where(.pregon-site) .site-header nav .header-menu .menu-item.menu-contact > a {
    margin-top: 22px;
    padding: 14px 19px;
  }
  :where(.pregon-site) .site-header nav .header-menu .sub-menu {
    position: absolute;
    inset: 114px 0 0;
    width: 100%;
    padding: 0 24px 28px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fbfaf7;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
  }
  :where(.pregon-site) .site-header nav .header-menu .sub-menu .menu-item > a {
    padding: 17px 4px;
    border-radius: 0;
  }
  :where(.pregon-site) .site-header nav .header-menu .sub-menu .mobile-back-btn {
    display: block;
    border-bottom: 1px solid rgba(42, 31, 65, 0.12);
  }
  :where(.pregon-site) .site-header nav .header-menu .sub-menu .mobile-back-btn button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 17px 4px;
    border: 0;
    background: transparent;
    color: #583c98;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
  :where(.pregon-site) .site-header nav .header-menu .sub-menu .mobile-back-btn button::before {
    content: "";
    width: 6px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
  }
}

:where(.pregon-site) footer {
  padding: 70px 0 30px;
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
:where(.pregon-site) .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1.15fr;
  gap: 48px;
  padding-bottom: 58px;
}
:where(.pregon-site) .footer-logo {
  width: 180px;
}
:where(.pregon-site) .footer-brand > p {
  max-width: 310px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
}
:where(.pregon-site) footer h2 {
  margin-bottom: 18px;
  font-size: 15px;
}
:where(.pregon-site) .footer-links {
  display: grid;
  gap: 11px;
}
:where(.pregon-site) .footer-links a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
:where(.pregon-site) .footer-contact {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
:where(.pregon-site) .footer-links a:hover {
  color: var(--purple);
}
:where(.pregon-site) footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
:where(.pregon-site) footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0ebfb;
  color: #583c98;
  transition: all 150ms ease-in-out;
}
:where(.pregon-site) footer .social-links a svg {
  display: block;
  width: 22px;
  height: 22px;
}
:where(.pregon-site) footer .social-links a:hover, :where(.pregon-site) footer .social-links a:focus-visible {
  background: #583c98;
  color: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  :where(.pregon-site) footer .social-links a {
    transition: none;
  }
}
:where(.pregon-site) .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
:where(.pregon-site) .holding-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}
:where(.pregon-site) .holding-logos a {
  display: inline-flex;
  align-items: center;
}
:where(.pregon-site) .seva-logo {
  width: 142px;
  height: auto;
}
:where(.pregon-site) .natillus-logo {
  width: 116px;
  height: auto;
}

@media (max-width: 1040px) {
  :where(.pregon-site) .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  :where(.pregon-site) .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  :where(.pregon-site) .footer-bottom {
    flex-direction: column;
  }
}
.decor-strip {
  position: relative;
  height: 100px;
  margin-top: -50px;
  background: var(--cream);
}

@media (max-width: 767px) {
  :where(.pregon-site) footer .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  :where(.pregon-site) footer .footer-grid > :first-child {
    margin-bottom: 32px;
  }
  :where(.pregon-site) footer .footer-menu-column {
    border-bottom: 1px solid rgba(42, 31, 65, 0.12);
  }
  :where(.pregon-site) footer .footer-menu-column .footer-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
  }
  :where(.pregon-site) footer .footer-menu-column .footer-panel.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
  }
  :where(.pregon-site) footer .footer-menu-column .footer-panel.is-instant {
    transition: none;
  }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  :where(.pregon-site) footer .footer-menu-column .footer-panel {
    transition: none;
  }
}
@media (max-width: 767px) {
  :where(.pregon-site) footer .footer-menu-column .footer-panel-content {
    min-height: 0;
    overflow: hidden;
  }
  :where(.pregon-site) footer .footer-menu-column h2 {
    margin: 0;
  }
  :where(.pregon-site) footer .footer-menu-column h2 button {
    position: relative;
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 18px 28px 18px 0;
    border: 0;
    background: transparent;
    color: #1e1930;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }
  :where(.pregon-site) footer .footer-menu-column h2 button::before, :where(.pregon-site) footer .footer-menu-column h2 button::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 2px;
    width: 12px;
    height: 2px;
    background: #583c98;
  }
  :where(.pregon-site) footer .footer-menu-column h2 button::after {
    transform: rotate(90deg);
    transition: all 150ms ease-in-out;
  }
  :where(.pregon-site) footer .footer-menu-column h2 button[aria-expanded=true]::after {
    transform: rotate(0);
  }
  :where(.pregon-site) footer .footer-menu-column .footer-links {
    gap: 0;
    padding-bottom: 18px;
  }
  :where(.pregon-site) footer .footer-menu-column .footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  :where(.pregon-site) footer .footer-menu-column .footer-contact {
    padding-bottom: 22px;
    overflow-wrap: anywhere;
  }
  :where(.pregon-site) footer .footer-menu-column .footer-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 800px) {
  .decor-strip {
    height: 80px;
  }
}
:where(.pregon-site) footer h2 {
  font-weight: 700;
  line-height: 1.2;
}
:where(.pregon-site) footer .footer-contact p {
  margin: 0 0 20px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

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