@keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    transform: none;
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ******************** REVEALS ******************** */
@keyframes reveal-top {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-bottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-left {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-zoomin {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes reveal-paint-left {
  from {
    opacity: 1;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-bottom {
  from {
    opacity: 1;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-center {
  from {
    opacity: 1;
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-bottom-left-rotate {
  from {
    opacity: 0;
    transform: translateX(-100%) translateY(100%) rotate(360deg);
  }
  to {
    opacity: 1;
    transform: translateX(0%) translateY(0%) rotate(0deg);
  }
}
@keyframes reveal-bottom-left {
  from {
    opacity: 0;
    transform: translate(-100%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes reveal-top-right-rotate {
  from {
    opacity: 0;
    transform: translateX(100%) translateY(-100%) rotate(360deg);
  }
  to {
    opacity: 1;
    transform: translateX(0%) translateY(0%) rotate(0deg);
  }
}
@keyframes reveal-bottom-right {
  from {
    opacity: 0;
    transform: translate(100%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animate-fade-n-hide {
  animation: fade-n-hide 1s forwards;
}

.animate-fade-n-hide-short {
  animation: fade-n-hide 0.5s forwards;
}

.animate-fade-n-hide-short-inv {
  animation: fade-n-hide 0.5s reverse forwards;
}

@keyframes fade-n-hide {
  0% {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
  }
  100% {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
.swiper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.swiper .swiper-wrapper {
  flex: 1;
}
.swiper .swiper-slide {
  height: auto;
}
.swiper.swiper-vertical {
  touch-action: auto;
}
.swiper.swiper-vertical .swiper-wrapper {
  flex: auto;
  height: auto;
}

.swiper-nav {
  pointer-events: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(40px, calc(1.9vw + 27.5px), 60px);
  height: clamp(40px, calc(1.9vw + 27.5px), 60px);
  box-shadow: inset 0 0 0 2px var(--primary);
  border-radius: 9999px;
  transition: color 0.3s, box-shadow 0.3s;
}
.swiper-nav::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask-image: var(--arrow-ico);
          mask-image: var(--arrow-ico);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
}
.swiper-nav--prev {
  transform: rotate(180deg);
}
.swiper-nav:not(.is-disabled) {
  cursor: pointer;
}
.swiper-nav:not(.is-disabled):hover {
  box-shadow: inset 0 0 0 30px var(--primary);
}
.swiper-nav.is-disabled {
  opacity: 0.33;
}
.swiper-nav--white {
  box-shadow: inset 0 0 0 2px #fff;
}
.swiper-nav--white:not(.is-disabled):hover {
  color: var(--primary);
  box-shadow: inset 0 0 0 30px #fff;
}
.swiper-nav--tertiary {
  box-shadow: inset 0 0 0 2px var(--tertiary);
}
.swiper-nav--tertiary:not(.is-disabled):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  box-shadow: inset 0 0 0 30px var(--tertiary);
}

.swiper-pagination {
  flex: 1;
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 5px;
  overflow: hidden;
}
.swiper-pagination__bullet {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 0;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition: border-color 0.3s linear, color 0.3s linear;
}
.swiper-pagination__bullet::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background-color: currentColor;
}
.swiper-pagination__bullet:hover {
  border-color: var(--senary);
}
.swiper-pagination__bullet.current {
  pointer-events: none;
  cursor: default;
  border-color: var(--senary);
  color: var(--senary);
}

.footer-nav .menu-item {
  margin: 10px 0;
}
.footer-nav .menu-item:first-child {
  margin-top: 0;
}
.footer-nav .menu-item:last-child {
  margin-bottom: 0;
}
.footer-nav .menu-item > a {
  border-radius: 2px;
  padding: 5px 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: bottom 2px left;
  background-size: 0 2px;
  transition-property: background-size;
  transition-duration: 0.3s;
}
.footer-nav .menu-item > a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.footer-nav .menu-item > a:hover {
  background-size: 100% 2px;
}
@media screen and (min-width: 640px) {
  .footer-nav .menu-item > a {
    white-space: nowrap;
  }
}

.link {
  --underline-height: 2px;
  border-radius: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% var(--underline-height);
  transition: background-size 0.3s;
}
.link:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link:hover {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link--inv {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link--inv:hover {
  background-position: bottom left;
  background-size: 100% var(--underline-height);
}
.link--primary {
  background-image: linear-gradient(var(--primary), var(--primary));
}
.link--primary:focus-visible {
  outline-color: var(--secondary);
}

.link-mod {
  --underline-height: 2px;
  border-radius: 2px;
}
.link-mod__txt {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% var(--underline-height);
  transition: background-size 0.3s;
}
.link-mod:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link-mod:hover .link-mod__txt {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link-mod--inv .link-mod__txt {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link-mod--inv:hover .link-mod__txt {
  background-position: bottom left;
  background-size: 100% var(--underline-height);
}
.link-mod--primary .link-mod__txt {
  background-image: linear-gradient(var(--primary), var(--primary));
}
.link-mod--primary:focus-visible {
  outline-color: var(--primary);
}

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 5px calc(50% - 250px);
}
.pagination::before, .pagination::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
}
.pagination::before {
  margin-right: auto;
}
.pagination::after {
  margin-left: auto;
}
.pagination:has(.prev)::before {
  content: normal;
}
.pagination:has(.next)::after {
  content: normal;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  outline: 3px solid transparent;
  outline-offset: 2px;
  border-radius: 5px;
}
.page-numbers.current {
  color: var(--tertiary);
  background-color: var(--quaternary);
}
.page-numbers:not(.dots):not(.current) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--primary);
  background-image: linear-gradient(var(--secondary), var(--secondary));
  background-position: bottom left;
  background-size: 100% 0;
  background-repeat: no-repeat;
  transition: color 0.3s, background-size 0.3s;
}
.page-numbers:not(.dots):not(.current):focus {
  outline-color: var(--primary);
}
.page-numbers:not(.dots):not(.current):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-size: 100% 100%;
}
.page-numbers.prev, .page-numbers.next {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  font-size: 0;
}
.page-numbers.prev::before, .page-numbers.next::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2.4rem;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>');
          mask-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>');
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.page-numbers.prev {
  margin-right: auto;
  transform: rotate(180deg);
}
.page-numbers.next {
  margin-left: auto;
}

.wpcf7:not(:first-child) {
  margin-top: clamp(20px, calc(1.9vw + 7px), 40px);
}
.wpcf7 .btn {
  margin-top: clamp(20px, calc(1.9vw + 7px), 40px);
  margin-left: auto;
  margin-right: auto;
}
.wpcf7 .wpcf7-form {
  position: relative;
}
.wpcf7 .wpcf7-form::before, .wpcf7 .wpcf7-form::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 20;
  transition: opacity 0.2s;
}
.wpcf7 .wpcf7-form::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  opacity: 0.5;
}
.wpcf7 .wpcf7-form::after {
  pointer-events: none;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 5px solid var(--primary);
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}
.wpcf7 .wpcf7-form:not(.submitting)::before, .wpcf7 .wpcf7-form:not(.submitting)::after {
  pointer-events: none;
  opacity: 0;
}
.wpcf7 .wpcf7-custom-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1280px) {
  .wpcf7 .wpcf7-custom-row {
    flex-direction: row;
  }
  .wpcf7 .wpcf7-custom-row .wpcf7-custom-row-item {
    flex: 1;
    min-width: 40%;
    max-width: 50%;
  }
}
.wpcf7 .wpcf7-custom-group {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.wpcf7 .wpcf7-custom-label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.4rem;
}
.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-textarea,
.wpcf7 .wpcf7-number,
.wpcf7 .wpcf7-select {
  display: inline-block;
  width: 100%;
  outline: 3px solid transparent;
  outline-offset: 2px;
  border: 1px solid var(--septenary);
  border-radius: 5px;
  padding: clamp(10px, calc(1.9vw - 2px), 30px);
  background-color: transparent;
}
.wpcf7 .wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-textarea::-moz-placeholder, .wpcf7 .wpcf7-number::-moz-placeholder, .wpcf7 .wpcf7-select::-moz-placeholder {
  color: var(--tertiary);
  opacity: 0.4;
}
.wpcf7 .wpcf7-text::placeholder,
.wpcf7 .wpcf7-textarea::placeholder,
.wpcf7 .wpcf7-number::placeholder,
.wpcf7 .wpcf7-select::placeholder {
  color: var(--tertiary);
  opacity: 0.4;
}
.wpcf7 .wpcf7-text:focus,
.wpcf7 .wpcf7-textarea:focus,
.wpcf7 .wpcf7-number:focus,
.wpcf7 .wpcf7-select:focus {
  outline-color: var(--primary);
}
.wpcf7 .wpcf7-text:hover,
.wpcf7 .wpcf7-textarea:hover,
.wpcf7 .wpcf7-number:hover,
.wpcf7 .wpcf7-select:hover {
  border-color: var(--primary);
}
.wpcf7 .wpcf7-textarea {
  margin: 0;
}
.wpcf7 .not-wpcf7-acceptance,
.wpcf7 .wpcf7-acceptance,
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 20px;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item,
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label,
.wpcf7 .wpcf7-radio .wpcf7-list-item label {
  display: flex;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  margin-right: 10px;
  outline: 3px solid transparent;
  outline-offset: 2px;
  border-radius: 5px;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::before, .wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::before {
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
  border-radius: inherit;
  background: transparent;
  transform: translate(-50%, -50%);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::after {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: var(--primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input:checked::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:checked::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input:checked::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input:focus-visible,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:focus-visible,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input:focus-visible,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input:focus-visible {
  outline-color: var(--primary);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input:hover::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:hover::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input:hover::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input:hover::before {
  border-color: var(--secondary);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7 .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  flex: 1;
  letter-spacing: 0;
  font-size: 1.4rem;
}
.wpcf7 .acceptance {
  font-size: 1.4rem;
}
.wpcf7 .wpcf7-custom-file-tooltip {
  pointer-events: none;
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  transform: translateY(100%);
}
.wpcf7 .screen-reader-response {
  height: 1px;
  overflow: hidden;
}
.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
  display: block;
  margin-bottom: clamp(10px, calc(1.3vw + 2px), 20px);
  font-weight: 700;
  color: var(--primary);
}
.wpcf7 .wpcf7-not-valid-tip ul,
.wpcf7 .wpcf7-response-output ul {
  display: none;
}
.wpcf7 .wpcf7-not-valid-tip:last-child,
.wpcf7 .wpcf7-response-output:last-child {
  margin-top: 5px;
  margin-bottom: 0;
}

.tabs__body {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.tabs__body.is-active {
  pointer-events: auto;
  visibility: visible;
  animation: unclip-right 0.6s 0.2s linear forwards;
}

@keyframes unclip-right {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--first-sub-h));
  background: rgba(0, 0, 0, 0.1333333333);
  z-index: 9999;
  visibility: hidden;
}
.modal.active {
  visibility: visible;
}
.modal__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 800px;
  max-width: 100%;
  max-height: calc(100% - 20px);
  padding-top: clamp(40px, calc(1.9vw + 27.5px), 60px);
  padding-bottom: clamp(40px, calc(1.9vw + 27.5px), 60px);
  padding-left: clamp(20px, calc(1.9vw + 7px), 40px);
  padding-right: clamp(20px, calc(1.9vw + 7px), 40px);
  border-radius: 10px;
  color: var(--tertiary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  overflow: auto;
}
.modal__close {
  position: absolute;
  top: clamp(10px, calc(1.3vw + 2px), 20px);
  right: clamp(10px, calc(1.3vw + 2px), 20px);
  width: 24px;
  height: 24px;
  outline: 3px solid transparent;
  outline-offset: 2px;
  border-radius: 9999px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--primary);
  transform: rotate(45deg);
  z-index: 10;
  transition: color 0.3s;
}
.modal__close:focus {
  outline-color: var(--secondary);
}
.modal__close:hover {
  background-color: var(--secondary);
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  background-color: currentColor;
}
.modal__close::before {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 75%;
  transform: translate(-50%, -50%);
}
.modal__close::after {
  top: 50%;
  left: 50%;
  width: 75%;
  height: 2px;
  transform: translate(-50%, -50%);
}

.undordered-list, #editor ul.wp-block-list, #main ul.wp-block-list {
  list-style-type: none;
  padding-left: 20px;
  text-align: left;
}
.undordered-list li, #editor ul.wp-block-list li, #main ul.wp-block-list li {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.undordered-list li::before, #editor ul.wp-block-list li::before, #main ul.wp-block-list li::before {
  content: "";
  position: absolute;
  top: calc((1.5em - 10px) / 2);
  left: -20px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: var(--primary);
}

.ordered-list, #editor ol.wp-block-list, #main ol.wp-block-list {
  padding-left: 15px;
  list-style-type: decimal;
  text-align: left;
}
.ordered-list.roman, #editor ol.roman.wp-block-list, #main ol.roman.wp-block-list {
  list-style-type: upper-roman;
}
.ordered-list.roman > li::marker, #editor ol.roman.wp-block-list > li::marker, #main ol.roman.wp-block-list > li::marker {
  font-weight: bold;
}
.ordered-list li, #editor ol.wp-block-list li, #main ol.wp-block-list li {
  margin-top: 10px;
  margin-bottom: 10px;
}

#editor .wp-block-list > :not([hidden]) ~ :not([hidden]), #main .wp-block-list > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

#editor .wp-block-list, #main .wp-block-list {
  padding-left: 0px;
  padding-right: 0px;
}
#editor .wp-block-list li, #main .wp-block-list li {
  padding-left: 0px;
  padding-right: 0px;
}
#editor .wp-block-paragraph, #editor .wp-block-list, #editor .has-dynamic-content p, #main .wp-block-paragraph, #main .wp-block-list, #main .has-dynamic-content p {
  margin-bottom: 0.75rem;
  line-height: 1.625;
}
#editor .wp-block-paragraph:last-child, #editor .wp-block-list:last-child, #editor .has-dynamic-content p:last-child, #main .wp-block-paragraph:last-child, #main .wp-block-list:last-child, #main .has-dynamic-content p:last-child {
  margin-bottom: 0px;
}
#editor .wp-block-separator, #main .wp-block-separator {
  max-width: 50%;
  border-top: 1px solid;
}
#editor .alignright, #main .alignright {
  float: right;
}
#editor .alignleft, #main .alignleft {
  float: left;
}
#editor .has-primary-color, #main .has-primary-color {
  color: var(--primary);
}
#editor .has-secondary-color, #main .has-secondary-color {
  color: var(--secondary);
}
#editor .has-tertiary-color, #main .has-tertiary-color {
  color: var(--tertiary);
}
#editor .has-quaternary-color, #main .has-quaternary-color {
  color: var(--quaternary);
}
#editor *[style="font-size: 25px;"], #main *[style="font-size: 25px;"] {
  font-size: 2.5rem !important;
}
#editor *[style="font-size: 20px;"], #main *[style="font-size: 20px;"] {
  font-size: 2.0rem !important;
}
#editor *[style="font-size: 18px;"], #main *[style="font-size: 18px;"] {
  font-size: 1.8rem !important;
}
#editor *[style="font-size: 16px;"], #main *[style="font-size: 16px;"] {
  font-size: 1.6rem !important;
}
#editor *[style="font-size: 14px;"], #main *[style="font-size: 14px;"] {
  font-size: 1.2rem !important;
}

#editor .wp-block-heading, #main .wp-block-heading {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.25;
}
#editor .wp-block-heading.has-text-align-left, #main .wp-block-heading.has-text-align-left {
  text-align: left;
}
#editor .wp-block-heading.has-text-align-right, #main .wp-block-heading.has-text-align-right {
  text-align: right;
}
#editor .wp-block-heading.has-text-align-center, #main .wp-block-heading.has-text-align-center {
  text-align: center;
}
#editor h1.wp-block-heading, #editor .has-dynamic-content h1, #main h1.wp-block-heading, #main .has-dynamic-content h1 {
  font-size: clamp(3.4rem, calc(2.7vw + 1.7rem), 6.2rem);
  font-weight: 600;
  line-height: 1.25;
}
#editor h2.wp-block-heading, #editor .has-dynamic-content h2, #main h2.wp-block-heading, #main .has-dynamic-content h2 {
  font-size: clamp(3.3rem, calc(2.1vw + 2.0rem), 6.0rem);
}
#editor h3.wp-block-heading, #editor .has-dynamic-content h3, #main h3.wp-block-heading, #main .has-dynamic-content h3 {
  font-size: clamp(2.7rem, calc(1.0vw + 2.1rem), 4.0rem);
}
#editor h4.wp-block-heading, #editor .has-dynamic-content h4, #main h4.wp-block-heading, #main .has-dynamic-content h4 {
  font-size: 2.5rem;
}
#editor h5.wp-block-heading, #editor .has-dynamic-content h5, #main h5.wp-block-heading, #main .has-dynamic-content h5 {
  font-size: 2.0rem;
}
#editor h6.wp-block-heading, #editor .has-dynamic-content h6, #main h6.wp-block-heading, #main .has-dynamic-content h6 {
  font-size: 1.8rem;
}
#editor .wp-block-heading.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]:after, #main .wp-block-heading.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]:after {
  opacity: 0.8;
}
#editor .wp-block-heading.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h1.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h2.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h3.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h4.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h5.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h6.rich-text [data-rich-text-placeholder]::after, #main .wp-block-heading.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h1.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h2.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h3.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h4.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h5.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h6.rich-text [data-rich-text-placeholder]::after {
  opacity: 0.3;
}
#editor .wp-block-heading.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]::after, #main .wp-block-heading.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]::after {
  opacity: 0.8;
}

#editor .wp-block-image, #main .wp-block-image {
  margin-top: clamp(20px, calc(1.9vw + 7px), 40px);
  margin-bottom: clamp(20px, calc(1.9vw + 7px), 40px);
}

#editor .wp-block-image:first-child, #main .wp-block-image:first-child {
  margin-top: 0px;
}

#editor .wp-block-image:last-child, #main .wp-block-image:last-child {
  margin-bottom: 0px;
}
#editor .wp-block-image.aligncenter img, #main .wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}
#editor .wp-block-image.alignright img, #main .wp-block-image.alignright img {
  margin-left: auto;
}
#editor .wp-block-image.is-style-rounded img, #main .wp-block-image.is-style-rounded img {
  border-radius: 15px;
}
#editor .wp-block-image.size-full, #main .wp-block-image.size-full {
  display: flex;
  justify-content: center;
  width: 100%;
}
#editor .wp-block-image.size-full img, #main .wp-block-image.size-full img {
  flex-shrink: 0;
  display: block;
  width: 100vw;
  max-width: none;
}

.table, #editor .wp-block-table table, #main .wp-block-table table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.table thead, #editor .wp-block-table table thead, #main .wp-block-table table thead {
  text-transform: uppercase;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--secondary);
}
.table tbody tr:hover, #editor .wp-block-table table tbody tr:hover, #main .wp-block-table table tbody tr:hover {
  border-bottom-color: currentColor;
}
.table th:not(.wp-block-table__cell-content), #editor .wp-block-table table th:not(.wp-block-table__cell-content), #main .wp-block-table table th:not(.wp-block-table__cell-content) {
  font-size: 1.8rem;
}
.table th:not(.wp-block-table__cell-content), #editor .wp-block-table table th:not(.wp-block-table__cell-content), #main .wp-block-table table th:not(.wp-block-table__cell-content),
.table td:not(.wp-block-table__cell-content),
#editor .wp-block-table table td:not(.wp-block-table__cell-content),
#main .wp-block-table table td:not(.wp-block-table__cell-content) {
  min-width: 120px;
  border: 1px solid var(--senary);
  padding-left: clamp(10px, calc(1.9vw - 2px), 30px);
  padding-right: clamp(10px, calc(1.9vw - 2px), 30px);
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: left;
}

#editor .wp-block-table.has-fixed-layout, #main .wp-block-table.has-fixed-layout {
  table-layout: auto;
}
#editor .wp-block-table.is-style-stripes tbody tr:nth-child(even), #main .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: var(--quinary);
}
#editor .wp-block-table.is-style-stripes tbody tr:nth-child(odd), #main .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: transparent;
}

#editor .wp-block-quote, #main .wp-block-quote {
  border-left-width: 2px;
  border-left-color: var(--primary);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: clamp(10px, calc(1.9vw - 2px), 30px);
  line-height: 1.625;
}
#editor .wp-block-quote .container, #main .wp-block-quote .container {
  margin: 0;
  padding: 0;
}
