/*!********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js!./assets/styles/main.scss ***!
  \********************************************************************************************************************************************************************************************************************/
.animate-fade-n-hide {
  animation: fade-n-hide 1s forwards;
}

@keyframes fade-n-hide {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes animate-popup {
  0% {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
  10% {
    pointer-events: auto;
    opacity: 100%;
    visibility: visible;
  }
  80% {
    pointer-events: auto;
    opacity: 100%;
    visibility: visible;
  }
  100% {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}

/* ******************** 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%);
  }
}

.container {
  width: calc(100vw - 15px * 2);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

@media screen and (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

.custom-logo-link {
  display: block;
  width: 180px;
  max-width: 100%;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.3s linear;
}

.custom-logo-link img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s linear;
}

.custom-logo-link:focus-visible {
  outline-color: currentColor;
}

.custom-logo-link:hover img {
  transform: scale(0.95);
}

.content table,
.content .wp-block-table table,
.mce-content-body table,
.mce-content-body .wp-block-table table {
  max-width: 100%;
}

.content table tbody tr:hover,
.content .wp-block-table table tbody tr:hover,
.mce-content-body table tbody tr:hover,
.mce-content-body .wp-block-table table tbody tr:hover {
  background-color: var(--quaternary);
}

.content img,
.mce-content-body img {
  display: inline-block;
}

.content .wp-block-gallery,
.mce-content-body .wp-block-gallery {
  padding: 5px;
  overflow: hidden;
}

.content .wp-block-gallery figure.wp-block-image,
.mce-content-body .wp-block-gallery figure.wp-block-image {
  position: relative;
  overflow: hidden;
}

.content .wp-block-gallery figure.wp-block-image::before,
.mce-content-body .wp-block-gallery figure.wp-block-image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 80%;
}

.content .wp-block-gallery figure.wp-block-image img,
.mce-content-body .wp-block-gallery figure.wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s linear;
}

.content .wp-block-gallery figure.wp-block-image:has(a),
.mce-content-body .wp-block-gallery figure.wp-block-image:has(a) {
  overflow: visible;
}

.content .wp-block-gallery figure.wp-block-image a,
.mce-content-body .wp-block-gallery figure.wp-block-image a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: inherit;
  overflow: hidden;
}

.content .wp-block-gallery figure.wp-block-image a:focus-visible,
.mce-content-body .wp-block-gallery figure.wp-block-image a:focus-visible {
  outline-color: var(--primary);
}

.content .wp-block-gallery figure.wp-block-image a:hover img,
.mce-content-body .wp-block-gallery figure.wp-block-image a:hover img {
  transform: scale(1.05);
}

.wpcf7 .red {
  color: red;
}

.wpcf7 .primary {
  color: var(--primary);
}

.wpcf7 .wpcf7-form {
  position: relative;
}

.wpcf7 .wpcf7-form p {
  margin: 20px 0;
}

.wpcf7 .wpcf7-form a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 2px;
  transition: background-size 0.3s;
}

.wpcf7 .wpcf7-form a:hover {
  background-position: bottom right;
  background-size: 0 2px;
}

.wpcf7 .wpcf7-form a:focus-visible {
  outline-color: var(--primary);
}

.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-form.sent .wpcf7-response-output {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  margin-top: 0;
  border-radius: 10px;
  padding: 40px;
  padding-left: clamp(20px, calc(1.9vw + 7px), 40px);
  padding-right: clamp(20px, calc(1.9vw + 7px), 40px);
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 100;
  animation: animate-popup 5s linear forwards;
}

.wpcf7 .wpcf7-form.sent .wpcf7-response-output::before, .wpcf7 .wpcf7-form.sent .wpcf7-response-output::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.wpcf7 .wpcf7-form.sent .wpcf7-response-output::before {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.33;
}

.wpcf7 .wpcf7-form.sent .wpcf7-response-output::after {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: inherit;
  background-color: #FFF;
}

.wpcf7 .wpcf7-group {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, calc(1.9vw + 7px), 40px);
  width: 100%;
  border: 2px solid var(--quinary);
  border-radius: 15px;
  padding-left: clamp(10px, calc(1.9vw - 2px), 30px);
  padding-right: clamp(10px, calc(1.9vw - 2px), 30px);
  padding-top: clamp(20px, calc(1.9vw + 7px), 40px);
  padding-bottom: clamp(20px, calc(1.9vw + 7px), 40px);
}

@media screen and (min-width: 768px) {
  .wpcf7 .wpcf7-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wpcf7 .wpcf7-group-item {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .wpcf7 .wpcf7-group-item--full {
    grid-column: span 2;
  }
}

.wpcf7 .wpcf7-group-item input,
.wpcf7 .wpcf7-group-item textarea,
.wpcf7 .wpcf7-group-item select,
.wpcf7 .wpcf7-group-item option,
.wpcf7 .wpcf7-group-item optgroup,
.wpcf7 .wpcf7-group-item button,
.wpcf7 .wpcf7-group-item datalist,
.wpcf7 .wpcf7-group-item fieldset,
.wpcf7 .wpcf7-group-item legend,
.wpcf7 .wpcf7-group-item label {
  pointer-events: auto;
}

.wpcf7 .wpcf7-custom-label {
  display: block;
  font-weight: 700;
}

.wpcf7 .wpcf7-custom-instruction {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.wpcf7 .wpcf7-sub-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, calc(1.9vw + 7px), 40px);
  padding: 4px;
}

@media screen and (min-width: 768px) {
  .wpcf7 .wpcf7-sub-group {
    grid-column: span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: auto;
}

.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-textarea,
.wpcf7 .wpcf7-number,
.wpcf7 .wpcf7-select {
  display: inline-block;
  width: 100%;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border: 2px solid var(--quinary);
  border-radius: 10px;
  padding: 15px 20px;
  background-color: transparent;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-textarea::-moz-placeholder, .wpcf7 .wpcf7-number::-moz-placeholder, .wpcf7 .wpcf7-select::-moz-placeholder {
  color: var(--secondary);
}

.wpcf7 .wpcf7-text::placeholder,
.wpcf7 .wpcf7-textarea::placeholder,
.wpcf7 .wpcf7-number::placeholder,
.wpcf7 .wpcf7-select::placeholder {
  color: var(--secondary);
}

.wpcf7 .wpcf7-text:focus-visible,
.wpcf7 .wpcf7-textarea:focus-visible,
.wpcf7 .wpcf7-number:focus-visible,
.wpcf7 .wpcf7-select:focus-visible {
  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 .wpcf7-select option[value=""] {
  color: var(--secondary);
}

.wpcf7 .wpcf7-select::-moz-selection {
  background-color: var(--primary);
}

.wpcf7 .wpcf7-select::selection {
  background-color: var(--primary);
}

.wpcf7 .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .not-wpcf7-acceptance,
.wpcf7 .wpcf7-acceptance,
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: clamp(20px, calc(1.9vw + 7px), 40px);
       column-gap: clamp(20px, calc(1.9vw + 7px), 40px);
  row-gap: clamp(10px, calc(1.3vw + 2px), 20px);
}

.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 {
  cursor: pointer;
  display: flex;
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input,
.wpcf7 .wpcf7-radio .wpcf7-list-item input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 3px 0;
  margin-right: 10px;
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input::before, .wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item input::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item input::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item input::before {
  width: 100%;
  height: 100%;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border: 2px solid var(--quinary);
  border-radius: inherit;
  transform: translate(-50%, -50%);
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item input::after {
  width: 75%;
  height: 75%;
  border-radius: inherit;
  background-color: var(--primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
  -webkit-mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 512 512"><path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"/></svg>');
          mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 512 512"><path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"/></svg>');
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input:checked::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input:checked::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input:checked::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input:focus-visible,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input:focus-visible,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input:focus-visible,
.wpcf7 .wpcf7-radio .wpcf7-list-item input:focus-visible {
  outline: none;
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input:focus-visible::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input:focus-visible::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input:focus-visible::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item input:focus-visible::before {
  outline-color: var(--primary);
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item input:hover::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item input:hover::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item input:hover::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item input:hover::before {
  border-color: var(--primary);
}

.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7 .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  flex: 1;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item label {
  cursor: pointer;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item input {
  width: 24px;
  height: 24px;
  margin: 0;
  margin-right: 10px;
  border-radius: 9999px;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item input::after {
  width: 50%;
  height: 50%;
  -webkit-mask-image: none;
          mask-image: none;
}

.wpcf7 .special .wpcf7-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(10px, calc(1.3vw + 2px), 20px);
  border: 2px solid var(--quinary);
  border-radius: 15px;
  padding: clamp(10px, calc(1.3vw + 2px), 20px);
}

.wpcf7 .special .wpcf7-list-item label {
  cursor: pointer;
}

.wpcf7 .special .wpcf7-list-item::before, .wpcf7 .special .wpcf7-list-item::after {
  content: "";
  display: block;
}

.wpcf7 .special .wpcf7-list-item::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: var(--primary);
}

.wpcf7 .special .wpcf7-list-item::after {
  position: absolute;
  top: calc(15px + clamp(10px, calc(1.3vw + 2px), 20px));
  left: calc(15px + clamp(10px, calc(1.3vw + 2px), 20px));
  width: 20px;
  height: 20px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.wpcf7 .special .wpcf7-list-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-right: 0;
}

.wpcf7 .special .wpcf7-list-item input::before, .wpcf7 .special .wpcf7-list-item input::after {
  content: none;
}

.wpcf7 .special .wpcf7-list-item:has(input:focus-visible) {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.wpcf7 .special .wpcf7-list-item:has(input:hover) {
  border-color: var(--primary);
}

.wpcf7 .special .wpcf7-list-item:has(input:checked) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--primary);
}

.wpcf7 .special .wpcf7-list-item:has(input:checked)::before {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.wpcf7 .special .wpcf7-list-item:has(input:checked)::after {
  background-color: var(--primary);
}

.wpcf7 .special .wpcf7-list-item:nth-child(1)::after {
  -webkit-mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" fill="currentColor" viewBox="0 0 512 512"><path d="M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3L344 320c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"/></svg>');
          mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" fill="currentColor" viewBox="0 0 512 512"><path d="M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3L344 320c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"/></svg>');
}

.wpcf7 .special .wpcf7-list-item:nth-child(2)::after {
  -webkit-mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" fill="currentColor" viewBox="0 0 640 512"><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>');
          mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" fill="currentColor" viewBox="0 0 640 512"><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>');
}

.wpcf7 .special .wpcf7-list-item:nth-child(3)::after {
  -webkit-mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" fill="currentColor" viewBox="0 0 512 512"><path d="M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7L336 192c-8.8 0-16-7.2-16-16l0-57.4c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>');
          mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" fill="currentColor" viewBox="0 0 512 512"><path d="M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7L336 192c-8.8 0-16-7.2-16-16l0-57.4c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>');
}

.wpcf7 .wpcf7-repeater-remove {
  position: absolute;
  top: 15px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  outline: 3px solid transparent;
  outline-offset: 1px;
  border-radius: 9999px;
  font-size: 0;
  background-color: var(--quaternary);
  transition: color 0.3s, background-color 0.3s;
}

.wpcf7 .wpcf7-repeater-remove::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0 L0 20" stroke="currentColor" stroke-width="2"/><path d="M0 0 L20 20" stroke="currentColor" stroke-width="2"/></svg>');
          mask-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M20 0 L0 20" stroke="currentColor" stroke-width="2"/><path d="M0 0 L20 20" stroke="currentColor" stroke-width="2"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.wpcf7 .wpcf7-repeater-remove:focus-visible {
  outline-color: var(--primary);
}

.wpcf7 .wpcf7-repeater-remove:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--primary);
}

.wpcf7 .wpcf7-multifile {
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: 10px;
}

.wpcf7 .wpcf7-multifile::file-selector-button {
  display: inlineflex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  min-height: 50px;
  margin-right: 20px;
  border: none;
  border-radius: 10px;
  padding: 15px;
  line-height: 1;
  text-align: center;
  background-image: linear-gradient(#000, #000);
  background-position: bottom right;
  background-size: 0 100%;
  background-repeat: no-repeat;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--primary);
  overflow: hidden;
  transition: color 0.3s linear, background-size 0.3s linear;
}

.wpcf7 .wpcf7-multifile:focus-visible {
  outline-color: var(--primary);
}

.wpcf7 .wpcf7-multifile:hover::file-selector-button {
  background-position: bottom left;
  background-size: 100% 100%;
}

.wpcf7 .screen-reader-response {
  height: 1px;
  overflow: hidden;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
}

.wpcf7 .wpcf7-not-valid-tip ul {
  display: none;
}

.wpcf7 .wpcf7-response-output {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--primary);
}

.wpcf7cf_repeater_controls, .wpcf7cf_add, .wpcf7cf_remove {
  display: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  min-height: 50px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: 10px;
  padding: 15px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(#000, #000);
  background-position: bottom right;
  background-size: 0 100%;
  background-repeat: no-repeat;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--primary);
  overflow: hidden;
  transition: color 0.3s linear, background-size 0.3s linear;
}

.btn:focus-visible {
  outline-color: var(--primary);
}

.btn:hover {
  background-position: bottom left;
  background-size: 100% 100%;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.75;
}

.btn--full {
  width: 100%;
}
