@charset "UTF-8";
/* CORE STYLES */
.front-end *,
.front-end *::before,
.front-end *::after {
  box-sizing: border-box;
}

.editor-styles-wrapper *,
.editor-styles-wrapper *::before,
.editor-styles-wrapper *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0px; /* Effectively hides the scrollbar */
  background: transparent; /* Makes scrollbar transparent */
}

body {
  -webkit-overflow-scrolling: touch;
}

body {
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg, iframe {
  display: block;
  max-width: 100%;
  image-rendering: crisp-edges;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none !important;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.has-animation.has-been-revealed .fade-in-left {
  animation-name: fade-in-left;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.has-animation.has-been-revealed .fade-in-right {
  animation-name: fade-in-right;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.has-animation.has-been-revealed .fade-in-up {
  animation-name: fade-in-up;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes services-fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.has-animation.has-been-revealed .fade-in-down {
  animation-name: fade-in-down;
  animation-duration: 2s;
  animation-fill-mode: both;
}

.has-animation.has-been-revealed .reveal-in {
  animation: reveal 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: both;
}

@keyframes reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.has-image-animation.has-been-revealed {
  overflow: hidden;
}
.has-image-animation.has-been-revealed figure {
  margin-bottom: 0;
}
.has-image-animation.has-been-revealed img {
  animation: zoom 1.5s ease-in-out;
  animation-fill-mode: both;
  margin-bottom: 0;
}

.delayed-image-animation img {
  animation-duration: 3s !important;
  animation-fill-mode: both;
}

@keyframes draw-in-line {
  from {
    width: 1%;
  }
  to {
    width: 100%;
  }
}
@keyframes draw-in-line-80 {
  from {
    width: 80%;
  }
  to {
    width: 100%;
  }
}
.has-animation.has-been-revealed .animated-line {
  animation: draw-in-line 1s ease-in-out;
  animation-fill-mode: both;
}

.has-animation.has-been-revealed .animated-line-80 {
  animation: draw-in-line-80 1s ease-in-out;
  animation-fill-mode: both;
}

/* ANIMATION UTILITIES */
.animation-delay-500ms {
  animation-delay: 500ms;
}

.animation-delay-1s {
  animation-delay: 1s;
}

.animation-delay-1p5s {
  animation-delay: 1.5s;
}

@keyframes pulse-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.video-modal {
  border: 0;
  outline: var(--wp--preset--color--wave);
  padding: 0;
  background: transparent;
  overflow: visible;
}
.video-modal::backdrop {
  background: rgba(101, 95, 88, 0.8);
}
.video-modal iframe {
  aspect-ratio: 32/17;
  display: block;
  margin: 0;
  max-width: 95vw;
  max-height: 70vh;
  min-width: 60vw;
  user-select: none;
}
.video-modal:before {
  content: "✕";
  position: absolute;
  top: -2rem;
  right: 0;
  color: var(--wp--preset--color--linen);
  cursor: pointer;
}

/* CORE BLOCKS */
.is-style-two-column {
  columns: 2;
  column-gap: 6rem;
}
@media (max-width: 991px) {
  .is-style-two-column {
    columns: 1;
  }
}

.is-style-circle-arrow {
  line-height: 1;
  --arrow-filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.is-style-circle-arrow a {
  position: relative;
  padding-right: calc(0.6em + 2rem);
  display: inline-flex;
  align-items: center;
}
.is-style-circle-arrow a::after {
  content: "";
  position: absolute;
  right: 1rem;
  width: 0.6em;
  height: 0.6em;
  background-image: url("./assets/icons/circle-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.2s ease, filter 0.2s ease;
  filter: var(--arrow-filter);
}
.is-style-circle-arrow a:hover {
  text-decoration: none !important;
}
.is-style-circle-arrow a:hover::after {
  right: 0;
}

.is-style-regular-arrow {
  margin: 0;
}
.is-style-regular-arrow:after {
  content: " →";
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  transition: all 0.3s ease;
  transform: translateX(10px);
}
.is-style-regular-arrow:hover:after {
  transform: translateX(20px);
}

.is-style-tab-toggle {
  opacity: 0.3;
  font-size: clamp(30px, 32.427184466px + -0.0080906149 * 100vw, 20px);
  line-height: clamp(35px, 37.6699029126px + -0.0088996764 * 100vw, 24px);
  font-weight: 500;
}
.is-style-tab-toggle a {
  text-decoration: none;
}
.is-style-tab-toggle:hover {
  opacity: 0.7;
}

.gutenberghub-active-tab .is-style-tab-toggle {
  opacity: 1;
}

.wp-block-button a,
.wp-block-button div {
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid currentColor;
}

.is-style-text-button.wp-block-button a,
.is-style-text-button.wp-block-button div {
  border-color: transparent;
  padding: var(--wp--preset--spacing--20) 0;
}
.is-style-text-button.wp-block-button a:after,
.is-style-text-button.wp-block-button div:after {
  content: " »";
  display: inline-block;
  transition: transform 0.3s ease;
  transform: translateX(6px);
}
.is-style-text-button.wp-block-button a:hover:after,
.is-style-text-button.wp-block-button div:hover:after {
  transform: translateX(12px);
}

.is-style-fill-light.wp-block-button a,
.is-style-fill-light.wp-block-button div {
  border-color: transparent;
}
.is-style-fill-light.wp-block-button a:hover,
.is-style-fill-light.wp-block-button div:hover {
  background: var(--wp--preset--color--light) !important;
  color: var(--wp--preset--color--dark) !important;
}

.is-style-fill-dark.wp-block-button a,
.is-style-fill-dark.wp-block-button div {
  border-color: transparent;
}
.is-style-fill-dark.wp-block-button a:hover,
.is-style-fill-dark.wp-block-button div:hover {
  background: var(--wp--preset--color--dark) !important;
  color: var(--wp--preset--color--light) !important;
}

.is-style-outline-light.wp-block-button a,
.is-style-outline-light.wp-block-button div {
  border: 1px solid currentColor;
}
.is-style-outline-light.wp-block-button a:hover,
.is-style-outline-light.wp-block-button div:hover {
  background: var(--wp--preset--color--light) !important;
  border-color: var(--wp--preset--color--dark) !important;
  color: var(--wp--preset--color--dark) !important;
}

.is-style-outline-dark.wp-block-button a,
.is-style-outline-dark.wp-block-button div {
  border: 1px solid currentColor;
}
.is-style-outline-dark.wp-block-button a:hover,
.is-style-outline-dark.wp-block-button div:hover {
  background: var(--wp--preset--color--dark) !important;
  border-color: var(--wp--preset--color--light) !important;
  color: var(--wp--preset--color--light) !important;
}

.wp-block-details.is-style-style-guide > summary {
  list-style: none;
  position: relative;
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: fit-content;
  user-select: none;
}
.wp-block-details.is-style-style-guide > summary::-webkit-details-marker {
  display: none;
}
.wp-block-details.is-style-style-guide > summary::marker {
  display: none;
}
.wp-block-details.is-style-style-guide > summary::after {
  content: "＋";
  position: absolute;
  right: -3.5rem;
  top: 0;
  line-height: inherit;
  transition: transform 0.3s ease;
}
.wp-block-details.is-style-style-guide[open] > summary::after {
  transform: rotate(45deg);
}
@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.wp-block-details.is-style-style-guide[open] summary ~ * {
  animation: open 0.5s ease-in-out;
}
.wp-block-details.is-style-style-guide.closing summary ~ * {
  animation: close 0.5s ease-in-out;
}

.is-style-fancy-toggle {
  list-style: none;
  width: 100%;
  --arrow-filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.is-style-fancy-toggle > summary {
  user-select: none;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  max-width: calc(100% - 2rem);
}
.is-style-fancy-toggle > summary::-webkit-details-marker {
  display: none;
}
.is-style-fancy-toggle > summary::after {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  transition: transform 0.3s ease;
}
@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.is-style-fancy-toggle[open] summary ~ * {
  animation: open 0.5s ease-in-out;
}
.is-style-fancy-toggle.closing summary ~ * {
  animation: close 0.5s ease-in-out;
}
.is-style-fancy-toggle > summary {
  font-size: clamp(24px, 22.0582524272px + 0.0064724919 * 100vw, 32px);
  line-height: clamp(30px, 27.0873786408px + 0.0097087379 * 100vw, 42px);
  font-weight: 500;
}
.is-style-fancy-toggle > summary::after {
  content: "";
  background-image: url("./assets/icons/accordion-close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  filter: var(--arrow-filter);
  transition: filter 0.2s ease;
}
.is-style-fancy-toggle[open] > summary::after {
  background-image: url("./assets/icons/accordion-open.svg");
}

.wp-block-separator {
  border-bottom: none;
}

.wp-block-group.has-border-color:has(img) {
  overflow: hidden;
}

@media (max-width: 781px) {
  .is-style-stack-backwards {
    flex-direction: column-reverse;
  }
}

/* THEME BLOCKS */
/* THEME LAYOUT */
body.front-end form {
  max-width: 100%;
}
body.front-end form .login-username,
body.front-end form .login-password,
body.front-end form .login-remember,
body.front-end form .login-submit,
body.front-end form .gfield,
body.front-end form .ginput_container,
body.front-end form fieldset {
  margin-bottom: 1.5rem;
}
body.front-end form .login-username:last-child,
body.front-end form .login-password:last-child,
body.front-end form .login-remember:last-child,
body.front-end form .login-submit:last-child,
body.front-end form .gfield:last-child,
body.front-end form .ginput_container:last-child,
body.front-end form fieldset:last-child {
  margin-bottom: 0;
}
body.front-end form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
body.front-end form label,
body.front-end form .gfield_label,
body.front-end form legend.gfield_label,
body.front-end form .gform-field-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #210406;
  line-height: 1.4;
}
body.front-end form .gform-field-label--type-sub {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: rgba(33, 4, 6, 0.8);
}
body.front-end form input[type=text],
body.front-end form input[type=email],
body.front-end form input[type=password],
body.front-end form input[type=url],
body.front-end form input[type=tel],
body.front-end form input[type=number],
body.front-end form input[type=date],
body.front-end form textarea,
body.front-end form select,
body.front-end form .input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #210406;
  background-color: #fff;
  border: 1px solid #210406;
  border-radius: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
body.front-end form input[type=text]:focus,
body.front-end form input[type=email]:focus,
body.front-end form input[type=password]:focus,
body.front-end form input[type=url]:focus,
body.front-end form input[type=tel]:focus,
body.front-end form input[type=number]:focus,
body.front-end form input[type=date]:focus,
body.front-end form textarea:focus,
body.front-end form select:focus,
body.front-end form .input:focus {
  outline: none;
  border-color: #cc1421;
  box-shadow: 0 0 0 3px rgba(204, 20, 33, 0.1);
}
body.front-end form input[type=text]::placeholder,
body.front-end form input[type=email]::placeholder,
body.front-end form input[type=password]::placeholder,
body.front-end form input[type=url]::placeholder,
body.front-end form input[type=tel]::placeholder,
body.front-end form input[type=number]::placeholder,
body.front-end form input[type=date]::placeholder,
body.front-end form textarea::placeholder,
body.front-end form select::placeholder,
body.front-end form .input::placeholder {
  color: rgba(33, 4, 6, 0.5);
}
body.front-end form input[type=text][aria-invalid=true], body.front-end form input[type=text].gfield_error,
body.front-end form input[type=email][aria-invalid=true],
body.front-end form input[type=email].gfield_error,
body.front-end form input[type=password][aria-invalid=true],
body.front-end form input[type=password].gfield_error,
body.front-end form input[type=url][aria-invalid=true],
body.front-end form input[type=url].gfield_error,
body.front-end form input[type=tel][aria-invalid=true],
body.front-end form input[type=tel].gfield_error,
body.front-end form input[type=number][aria-invalid=true],
body.front-end form input[type=number].gfield_error,
body.front-end form input[type=date][aria-invalid=true],
body.front-end form input[type=date].gfield_error,
body.front-end form textarea[aria-invalid=true],
body.front-end form textarea.gfield_error,
body.front-end form select[aria-invalid=true],
body.front-end form select.gfield_error,
body.front-end form .input[aria-invalid=true],
body.front-end form .input.gfield_error {
  border-color: #cc1421;
}
body.front-end form textarea {
  min-height: 120px;
  resize: vertical;
}
body.front-end form select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(33, 4, 6, 0.65)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
}
body.front-end form input[type=checkbox],
body.front-end form input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
  cursor: pointer;
}
body.front-end form .login-remember label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}
body.front-end form .login-remember label label {
  margin: 0;
  font-weight: 400;
}
body.front-end form button,
body.front-end form input[type=submit],
body.front-end form .button,
body.front-end form .gform_button {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  background-color: #cc1421;
  border: 2px solid #cc1421;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  appearance: none;
}
body.front-end form button:hover, body.front-end form button:focus,
body.front-end form input[type=submit]:hover,
body.front-end form input[type=submit]:focus,
body.front-end form .button:hover,
body.front-end form .button:focus,
body.front-end form .gform_button:hover,
body.front-end form .gform_button:focus {
  background-color: #9a0000;
  border-color: #9a0000;
  color: #fff;
}
body.front-end form button:active,
body.front-end form input[type=submit]:active,
body.front-end form .button:active,
body.front-end form .gform_button:active {
  transform: translateY(1px);
}
body.front-end form button:disabled,
body.front-end form input[type=submit]:disabled,
body.front-end form .button:disabled,
body.front-end form .gform_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
body.front-end form .button-secondary {
  background-color: #fff;
  color: #210406;
  border-color: #210406;
}
body.front-end form .button-secondary:hover, body.front-end form .button-secondary:focus {
  background-color: #f5f5f5;
  border-color: #210406;
  color: #210406;
}
body.front-end form .gform_wrapper {
  margin: 0;
}
body.front-end form .gform_wrapper[data-form-index] {
  --gf-ctrl-border-color: #210406 !important;
  --gf-color-primary: #cc1421 !important;
  --gf-ctrl-label-color-primary: #210406 !important;
  --gf-ctrl-label-color-secondary: #210406 !important;
}
body.front-end form .ginput_complex,
body.front-end form .ginput_container {
  margin-bottom: 0;
}
body.front-end form .gform-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
body.front-end form .gform-grid-row .gform-grid-col {
  min-width: 0;
}
body.front-end form .gf_clear,
body.front-end form .gf_clear_complex {
  display: none;
}
body.front-end form .ginput_container_name .name_first,
body.front-end form .ginput_container_name .name_last {
  display: block;
}
body.front-end form .ginput_container_email .ginput_left,
body.front-end form .ginput_container_email .ginput_right,
body.front-end form .ginput_container_password .ginput_left,
body.front-end form .ginput_container_password .ginput_right {
  display: block;
}
body.front-end form .password_input_container {
  position: relative;
  display: block;
}
body.front-end form .gform_description {
  margin-bottom: 1.5rem;
  color: rgba(33, 4, 6, 0.8);
  font-size: 0.95rem;
}
body.front-end form .gform_footer,
body.front-end form .gform-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(33, 4, 6, 0.1);
}
body.front-end form .gfield_error .gfield_label {
  color: #cc1421;
}
body.front-end form .gfield_error input,
body.front-end form .gfield_error textarea,
body.front-end form .gfield_error select {
  border-color: #cc1421;
}
body.front-end form .validation_error,
body.front-end form .gfield_validation_message {
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background-color: rgba(204, 20, 33, 0.1);
  border-left: 3px solid #cc1421;
  color: #cc1421;
  font-size: 0.875rem;
}
body.front-end form .gfield_validation_message {
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0.75rem;
}
body.front-end form .gfield_required {
  color: #cc1421;
  margin-left: 0.25rem;
}
body.front-end form .gform_hidden,
body.front-end form .gf_invisible,
body.front-end form .gform_validation_container {
  display: none !important;
}
body.front-end form .logged-out,
body.front-end form .has-login-form {
  max-width: 400px;
}
body.front-end form #loginform p {
  margin-bottom: 1.5rem;
}
body.front-end form #loginform p:last-of-type {
  margin-bottom: 0;
}
body.front-end form .login-remember label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.front-end form .login-remember label label[for=rememberme] {
  display: none;
}
body.front-end form input[type=hidden] {
  display: none;
}
@media (max-width: 640px) {
  body.front-end form .gform-grid-row {
    grid-template-columns: 1fr;
  }
  body.front-end form input[type=text],
  body.front-end form input[type=email],
  body.front-end form input[type=password],
  body.front-end form textarea,
  body.front-end form select,
  body.front-end form .input {
    font-size: 16px;
  }
  body.front-end form button,
  body.front-end form input[type=submit],
  body.front-end form .button,
  body.front-end form .gform_button {
    width: 100%;
    padding: 1rem;
  }
}
body.front-end form *:focus-visible {
  outline: 2px solid #cc1421;
  outline-offset: 2px;
}
body.front-end form .gform-visually-hidden,
body.front-end form .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* THEME OVERRIDES */
.wp-block-navigation__responsive-container.is-menu-open {
  padding: 2rem 1.5rem;
  background: var(--wp--preset--color--cream) !important;
  height: 100%;
}

.header-logo-wrap {
  transition: 0.3s;
}
.header-logo-wrap:hover {
  scale: 1.1;
}

.header-wrap .header-top-row a {
  text-decoration: none;
  color: currentColor;
  position: relative;
}
.header-wrap .header-top-row a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  left: 0;
  bottom: -6px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.header-wrap .header-top-row a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.navigation a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.3s;
}
.navigation a:hover {
  text-decoration-color: currentColor;
}

.current-menu-item :after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  left: 0;
  bottom: -2px;
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}

.gutenberghub-tab-button.gutenberghub-active-tab p {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 5px;
}

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