@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-top-sm {
  from {
    opacity: 0;
    transform: translateY(-5vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-right-sm {
  from {
    opacity: 0;
    transform: translateX(5vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-bottom-sm {
  from {
    opacity: 0;
    transform: translateY(5vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-left-sm {
  from {
    opacity: 0;
    transform: translateX(-5vw);
  }
  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-top {
  from {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-right {
  from {
    opacity: 1;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 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-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-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%);
  }
}
.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.swiper--video-gallery .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
  opacity: 0.1;
}
.swiper--scrolling-gallery .swiper-wrapper, .swiper--logos .swiper-wrapper, .swiper--objects .swiper-wrapper {
  transition-timing-function: linear;
}

.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: 50px;
  height: 50px;
  border: 1px solid var(--ss-primary);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-primary);
  transition: color 0.3s, background-color 0.3s;
}
.swiper-nav::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-image: var(--chevron);
          mask-image: var(--chevron);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.swiper-nav--small {
  width: 30px;
  height: 30px;
}
.swiper-nav--small::before {
  width: 15px;
  height: 15px;
}
.swiper-nav--prev {
  transform: rotate(180deg);
}
.swiper-nav:not(.is-disabled) {
  cursor: pointer;
}
.swiper-nav:not(.is-disabled):hover {
  color: var(--ss-primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.swiper-nav.is-disabled {
  opacity: 0.33;
}
.swiper-nav--alt {
  width: 40px;
  height: 40px;
  border: none;
  color: var(--ss-primary);
  background-color: transparent;
}
.swiper-nav--alt:not(.is-disabled):hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-primary);
}

.swiper-pagination {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 5px;
  overflow: hidden;
}
.swiper-pagination__bullet {
  cursor: pointer;
  width: 25px;
  height: 10px;
  border: 1px solid var(--ss-primary);
  transition: color 0.3s, background-color 0.3s;
}
.swiper-pagination__bullet:hover {
  background-color: var(--ss-primary);
}
.swiper-pagination__bullet.current {
  pointer-events: none;
  cursor: default;
  background-color: var(--ss-primary);
}
.swiper-pagination--recommendations {
  justify-content: center;
}
.swiper-pagination--history {
  gap: 20px;
}
.swiper-pagination--history::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background-color: currentColor;
  z-index: -1;
}
.swiper-pagination--history .swiper-pagination__year {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: max(60px, 10%);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  transition: transform 0.3s;
}
.swiper-pagination--history .swiper-pagination__year::before, .swiper-pagination--history .swiper-pagination__year::after {
  content: "";
  display: block;
  order: -1;
}
.swiper-pagination--history .swiper-pagination__year::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1em;
  height: 1em;
  border: 1px solid var(--ss-secondary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  transform: translateX(-50%) rotate(45deg) scale(0);
  transition: transform 0.3s;
}
.swiper-pagination--history .swiper-pagination__year::after {
  flex: 1;
  width: 1px;
  height: 30px;
  margin-top: 0.5em;
  background-color: currentColor;
}
.swiper-pagination--history .swiper-pagination__year.current {
  text-decoration: underline;
  text-decoration-color: var(--ss-secondary);
}
.swiper-pagination--history .swiper-pagination__year.current::before {
  transform: translateX(-50%) rotate(45deg) scale(1);
}
.swiper-pagination--gallery .swiper-pagination__bullet {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  --pag-width: 70px;
  position: relative;
  flex-shrink: 0;
  width: var(--pag-width) !important;
  height: var(--pag-width) !important;
  border: none;
  background-color: var(--ss-primary);
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.3s linear;
}
.swiper-pagination--gallery .swiper-pagination__bullet__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s linear;
}
.swiper-pagination--gallery .swiper-pagination__bullet:hover {
  opacity: 0.7;
}
.swiper-pagination--gallery .swiper-pagination__bullet.current {
  pointer-events: none;
  cursor: default;
  opacity: 1;
}

.footer-nav {
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
}
.footer-nav .menu-item {
  margin-bottom: 10px;
}
.footer-nav .menu-item > a {
  border-radius: 2px;
  padding: 2px 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--ss-secondary), var(--ss-secondary));
  background-position: bottom 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;
  }
}
.footer-nav .menu-item.current-menu-item, .footer-nav .menu-item.current-menu-parent, .footer-nav .menu-item.current-page-ancestor {
  font-weight: 700;
  color: var(--ss-secondary);
}

.link, #editor .block-container a, #main .block-container a {
  --underline-height: 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, #editor .block-container a:focus-visible, #main .block-container a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link:hover, #editor .block-container a:hover, #main .block-container a: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(--ss-primary), var(--ss-primary));
}
.link--primary:focus-visible {
  outline-color: var(--ss-secondary);
}

.link-mod {
  --underline-height: 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(--ss-primary), var(--ss-primary));
}
.link-mod--primary:focus-visible {
  outline-color: var(--ss-primary);
}
.link-mod--90 .link-mod__txt {
  background-position: bottom left;
  background-size: var(--underline-height) 0;
}
.link-mod--90:hover .link-mod__txt {
  background-position: top left;
  background-size: var(--underline-height) 100%;
}

.breadcrumbs {
  text-transform: uppercase;
}
.breadcrumbs__separator {
  display: inline-block;
  width: 9px;
  height: 15px;
  margin: 0 5px;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15" fill="currentColor"><path d="M0.292745 0.292745C0.68317 -0.0976804 1.31626 -0.0974826 1.70681 0.292745L8.07106 6.657C8.46159 7.04753 8.46159 7.68054 8.07106 8.07107L1.70681 14.4353C1.31626 14.8256 0.683169 14.8257 0.292744 14.4353C-0.0976817 14.0449 -0.0974839 13.4118 0.292744 13.0213L5.94997 7.36403L0.292745 1.70681C-0.0974828 1.31626 -0.0976806 0.68317 0.292745 0.292745Z"/></svg>');
          mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15" fill="currentColor"><path d="M0.292745 0.292745C0.68317 -0.0976804 1.31626 -0.0974826 1.70681 0.292745L8.07106 6.657C8.46159 7.04753 8.46159 7.68054 8.07106 8.07107L1.70681 14.4353C1.31626 14.8256 0.683169 14.8257 0.292744 14.4353C-0.0976817 14.0449 -0.0974839 13.4118 0.292744 13.0213L5.94997 7.36403L0.292745 1.70681C-0.0974828 1.31626 -0.0976806 0.68317 0.292745 0.292745Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.breadcrumbs .breadcrumb_last {
  color: var(--ss-secondary);
}
.breadcrumbs a {
  outline: 3px solid transparent;
  outline-offset: 2px;
  border-radius: 2px;
  overflow: visible;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 2px;
  transition: outline-color 0.3s, background-size 0.3s;
}
.breadcrumbs a:focus {
  outline-color: var(--ss-primary);
}
.breadcrumbs a:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}

.pagination {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 5px;
}

.page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  color: var(--ss-primary);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.page-numbers:not(.dots) {
  border: 1px solid currentColor;
}
.page-numbers.current {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-primary);
}
.page-numbers:not(.dots):not(.current) {
  transition: border-color 0.3s, color 0.3s;
}
.page-numbers:not(.dots):not(.current):focus-visible {
  outline-color: currentColor;
}
.page-numbers:not(.dots):not(.current):hover {
  border-color: var(--ss-secondary);
  color: var(--ss-secondary);
}
.page-numbers.prev, .page-numbers.next {
  font-size: 0;
}
.page-numbers.prev::after, .page-numbers.next::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
}
.page-numbers.prev {
  transform: scaleX(-1);
}

.wpcf7 .btn {
  align-self: flex-start;
  margin-top: clamp(10px, calc(1.3vw + 2px), 20px);
}
.wpcf7 p {
  margin-bottom: clamp(10px, calc(1.3vw + 2px), 20px);
}
.wpcf7 .wpcf7-form {
  position: relative;
  display: flex;
  flex-direction: column;
}
.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(--ss-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-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.wpcf7 .wpcf7-custom-group {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 640px) {
  .wpcf7 .wpcf7-custom-group.half-width {
    width: calc(50% - 10px);
  }
}
.wpcf7 .wpcf7-custom-label {
  display: inline-block;
  margin-bottom: 10px;
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select) {
  position: relative;
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select) .wpcf7-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 25px;
  height: 15px;
  background-color: var(--ss-primary);
  transform: translateY(-50%) scaleY(1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select):has(.wpcf7-select:open)::after {
  transform: translateY(-50%) scaleY(-1);
}
.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: none;
  border-bottom: 1px solid var(--ss-octanery);
  padding: 15px 5px;
  background-color: transparent;
  background-image: linear-gradient(var(--ss-primary), var(--ss-primary));
  background-repeat: no-repeat;
  background-size: 100% 0px;
  background-position: bottom left;
  transition: background-size 0.3s;
}
.wpcf7 .wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-textarea::-moz-placeholder, .wpcf7 .wpcf7-number::-moz-placeholder, .wpcf7 .wpcf7-select::-moz-placeholder {
  color: var(--ss-octanery);
}
.wpcf7 .wpcf7-text::placeholder,
.wpcf7 .wpcf7-textarea::placeholder,
.wpcf7 .wpcf7-number::placeholder,
.wpcf7 .wpcf7-select::placeholder {
  color: var(--ss-octanery);
}
.wpcf7 .wpcf7-text:focus,
.wpcf7 .wpcf7-textarea:focus,
.wpcf7 .wpcf7-number:focus,
.wpcf7 .wpcf7-select:focus {
  outline-color: var(--ss-primary);
}
.wpcf7 .wpcf7-text:hover,
.wpcf7 .wpcf7-textarea:hover,
.wpcf7 .wpcf7-number:hover,
.wpcf7 .wpcf7-select:hover {
  border-color: var(--ss-primary);
  background-size: 100% 3px;
}
.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: 16px;
  height: 16px;
  margin-top: 4px;
  margin-right: 10px;
  outline: 3px solid transparent;
  outline-offset: 2px;
}
.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(--ss-octanery);
  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: 12px;
  height: 12px;
  background-color: var(--ss-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(--ss-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 {
  box-shadow: 0 0 0 1px var(--ss-primary);
}
.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);
  border-radius: 10px;
  font-weight: 600;
}
.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);
  color: var(--ss-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(--ss-primary);
  transform: rotate(45deg);
  z-index: 10;
  transition: color 0.3s;
}
.modal__close:focus {
  outline-color: var(--ss-primary);
}
.modal__close:hover {
  background-color: var(--ss-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%);
}

.search-form {
  --search-button-width: 40px;
  --search-icon-width: 20px;
  --search-icon: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 17" fill="currentColor"><path d="M11.3531 1.94525C8.75974 -0.64812 4.53884 -0.64812 1.94546 1.94525C-0.647348 4.53919 -0.647348 8.75953 1.94546 11.3535C4.25493 13.6624 7.85181 13.9097 10.4435 12.1068C10.498 12.3648 10.6228 12.6111 10.8235 12.8118L14.6003 16.5886C15.1507 17.1378 16.0401 17.1378 16.5876 16.5886C17.1375 16.0387 17.1375 15.1494 16.5876 14.6012L12.8109 10.8233C12.6113 10.6243 12.3645 10.4989 12.1064 10.4444C13.9105 7.85216 13.6631 4.25585 11.3531 1.94525ZM10.1607 10.1611C8.22454 12.0972 5.07348 12.0972 3.13786 10.1611C1.20281 8.22489 1.20281 5.07439 3.13786 3.13822C5.07348 1.2026 8.22454 1.2026 10.1607 3.13822C12.0969 5.07439 12.0969 8.22489 10.1607 10.1611Z"/></svg>');
  position: relative;
  display: flex;
  width: 300px;
  border: 1px solid var(--ss-primary);
  font-size: 1.6rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  z-index: 10;
}
.search-form__input-wrapp {
  position: relative;
  width: calc(100% - var(--search-button-width));
  overflow: hidden;
}
.search-form__input-wrapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: var(--search-icon-width);
  height: var(--search-icon-width);
  background-color: currentColor;
  -webkit-mask-image: var(--search-icon);
          mask-image: var(--search-icon);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  transform: translate(10px, -50%);
  transition: transform 0.3s;
}
.search-form__input {
  width: 100%;
  height: 100%;
  outline-offset: -2px;
  border: none;
  border-radius: inherit;
  padding: 5px 10px;
  padding-left: var(--search-button-width);
  transition: padding-left 0.3s;
}
.search-form__input:focus-visible {
  outline: 2px solid var(--primary);
}
.search-form__button-wrapp {
  overflow: hidden;
}
.search-form__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--search-button-width);
  height: var(--search-button-width);
  outline-offset: -2px;
  border-radius: inherit;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-primary);
  background-image: linear-gradient(var(--ss-secondary), var(--ss-secondary)), linear-gradient(var(--ss-secondary), var(--ss-secondary));
  background-position: top left, bottom left;
  background-size: 100% 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  transform: translateX(100%);
  transition: background-size 0.3s, transform 0.3s;
}
.search-form__button__icon {
  width: var(--search-icon-width);
  height: var(--search-icon-width);
  background-color: currentColor;
  -webkit-mask-image: var(--search-icon);
          mask-image: var(--search-icon);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.search-form__button:focus-visible {
  outline-color: var(--ss-primary);
}
.search-form__button:hover {
  background-size: 100% 50%, 100% 50%;
}
.search-form:focus-within .search-form__input-wrapp::before, .search-form:hover .search-form__input-wrapp::before {
  transform: translate(-100%, -50%);
}
.search-form:focus-within .search-form__input, .search-form:hover .search-form__input {
  padding-left: 10px;
}
.search-form:focus-within .search-form__button, .search-form:hover .search-form__button {
  transform: translateX(0);
}
.search-form__autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  max-width: 50vw;
  min-height: 20px;
  max-height: 50vh;
  border: 1px solid var(--ss-senary);
  padding: 10px;
  text-align: center;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  z-index: 10;
  overflow: auto;
}
.search-form__autocomplete:not(.is-active) {
  display: none;
}
.search-form__autocomplete.is-loading::before {
  content: "";
  pointer-events: none;
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--ss-primary);
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}
.search-form__autocomplete__item {
  text-align: left;
}

.link, #editor .block-container a, #main .block-container a {
  --underline-height: 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, #editor .block-container a:focus-visible, #main .block-container a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link:hover, #editor .block-container a:hover, #main .block-container a: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(--ss-primary), var(--ss-primary));
}
.link--primary:focus-visible {
  outline-color: var(--ss-secondary);
}

.link-mod {
  --underline-height: 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(--ss-primary), var(--ss-primary));
}
.link-mod--primary:focus-visible {
  outline-color: var(--ss-primary);
}
.link-mod--90 .link-mod__txt {
  background-position: bottom left;
  background-size: var(--underline-height) 0;
}
.link-mod--90:hover .link-mod__txt {
  background-position: top left;
  background-size: var(--underline-height) 100%;
}

.undordered-list, #editor ul.wp-block-list, #main ul.wp-block-list {
  --padding: 20px;
  list-style-type: none;
  padding-left: var(--padding);
  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 {
  --size: 8px;
  content: "";
  position: absolute;
  top: calc((1.5em - var(--size)) / 2);
  left: calc(var(--padding) * -1);
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 9999px;
  background-color: var(--ss-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;
}

:root {
  font-size: 62.5%;
}

#editor .block-container p, #main .block-container p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

#editor .block-container p:last-child, #main .block-container 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 {
  margin-left: auto;
}
#editor .aligncenter, #main .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
#editor .alignleft, #main .alignleft {
  margin-right: auto;
}
#editor .has-text-align-left, #main .has-text-align-left {
  text-align: left;
}
#editor .has-text-align-right, #main .has-text-align-right {
  text-align: right;
}
#editor .has-text-align-center, #main .has-text-align-center {
  text-align: center;
}
#editor *[style="font-size: 64px;"], #main *[style="font-size: 64px;"] {
  font-size: clamp(3.6rem, calc(2.7vw + 1.9rem), 6.4rem) !important;
  line-height: 1.1;
}
#editor *[style="font-size: 40px;"], #main *[style="font-size: 40px;"] {
  font-size: clamp(2.8rem, calc(1.2vw + 2.0rem), 4.0rem) !important;
}
#editor *[style="font-size: 32px;"], #main *[style="font-size: 32px;"] {
  font-size: clamp(2.4rem, calc(0.8vw + 1.9rem), 3.2rem) !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.4rem !important;
}
#editor *[style="font-size: 12px;"], #main *[style="font-size: 12px;"] {
  font-size: 1.2rem !important;
}
#editor .has-sm-font-size, #main .has-sm-font-size {
  font-size: 1.4rem;
}
#editor .has-m-font-size, #main .has-m-font-size {
  font-size: 1.6rem;
}
#editor .has-lg-font-size, #main .has-lg-font-size {
  font-size: 1.8rem;
}
#editor .has-xl-font-size, #main .has-xl-font-size {
  font-size: 2.0rem;
}
#editor .has-xxl-font-size, #main .has-xxl-font-size {
  font-size: 2.5rem;
}
#editor .has-primary-color, #main .has-primary-color {
  color: var(--ss-primary);
}
#editor .has-secondary-color, #main .has-secondary-color {
  color: var(--ss-secondary);
}
#editor .has-tertiary-color, #main .has-tertiary-color {
  color: var(--ss-tertiary);
}
#editor .has-quaternary-color, #main .has-quaternary-color {
  color: var(--ss-quaternary);
}
#editor .has-quinary-color, #main .has-quinary-color {
  color: var(--ss-quinary);
}
#editor .has-senary-color, #main .has-senary-color {
  color: var(--ss-senary);
}
#editor .has-white-color, #main .has-white-color {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#editor .has-black-color, #main .has-black-color {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
#editor .has-primary-background-color, #main .has-primary-background-color {
  background-color: var(--ss-primary);
}
#editor .has-secondary-background-color, #main .has-secondary-background-color {
  background-color: var(--ss-secondary);
}
#editor .has-tertiary-background-color, #main .has-tertiary-background-color {
  background-color: var(--ss-tertiary);
}
#editor .has-quaternary-background-color, #main .has-quaternary-background-color {
  background-color: var(--ss-quaternary);
}
#editor .has-quinary-background-color, #main .has-quinary-background-color {
  background-color: var(--ss-quinary);
}
#editor .has-senary-background-color, #main .has-senary-background-color {
  background-color: var(--ss-senary);
}
#editor .has-white-background-color, #main .has-white-background-color {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
#editor .has-black-background-color, #main .has-black-background-color {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
#editor .has-link-color > strong:first-child > a:first-child, #main .has-link-color > strong:first-child > a:first-child {
  position: relative;
  background-position: bottom right;
  background-size: 0% 2px;
}
#editor .has-link-color > strong:first-child > a:first-child:hover, #main .has-link-color > strong:first-child > a:first-child:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}
#editor .has-link-color > strong:first-child > a:first-child::after, #main .has-link-color > strong:first-child > a:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 38px;
  height: 15px;
  background-color: currentColor;
  transform: translate(100%, -50%);
  -webkit-mask-image: var(--arrow-long);
          mask-image: var(--arrow-long);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

#editor .wp-block-heading, #main .wp-block-heading {
  line-height: 1.25;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

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

#editor .wp-block-heading:last-child, #main .wp-block-heading:last-child {
  margin-bottom: 0px;
}
#editor h1.wp-block-heading > em, #main h1.wp-block-heading > em {
  font-style: normal;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-secondary);
}
#editor h1.wp-block-heading, #editor .has-dynamic-content h1,
#editor h2.wp-block-heading, #editor .has-dynamic-content h2, #main h1.wp-block-heading, #main .has-dynamic-content h1,
#main h2.wp-block-heading, #main .has-dynamic-content h2 {
  font-size: clamp(3.6rem, calc(2.7vw + 1.9rem), 6.4rem);
  font-weight: 900;
}
#editor h3.wp-block-heading, #editor .has-dynamic-content h3, #main h3.wp-block-heading, #main .has-dynamic-content h3 {
  font-size: clamp(2.8rem, calc(1.2vw + 2.0rem), 4.0rem);
  font-weight: 900;
}
#editor h4.wp-block-heading, #editor .has-dynamic-content h4, #main h4.wp-block-heading, #main .has-dynamic-content h4 {
  font-size: clamp(2.4rem, calc(0.8vw + 1.9rem), 3.2rem);
  font-weight: 900;
}
#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;
  flex-wrap: wrap;
  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: 100%;
}
@media (orientation: landscape) {
  #editor .wp-block-image.size-full img, #main .wp-block-image.size-full img {
    max-height: 90vh;
  }
}
#editor .wp-block-image .wp-element-caption, #main .wp-block-image .wp-element-caption {
  width: 100%;
  padding: 5px;
  text-align: center;
}

.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 {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-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 tr, #editor .wp-block-table table tr, #main .wp-block-table table tr {
  border: 1px solid var(--ss-quaternary);
}
.table th, #editor .wp-block-table table th, #main .wp-block-table table th, .table td, #editor .wp-block-table table td, #main .wp-block-table table td {
  min-width: 120px;
  border: none;
  padding: 1.5rem;
  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(--ss-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: 5px;
  border-left-color: var(--ss-primary);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: clamp(10px, calc(1.9vw - 2px), 30px);
  font-style: italic;
  line-height: 1.625;
}
#editor .wp-block-quote .container, #main .wp-block-quote .container {
  margin: 0;
  padding: 0;
}
