.elementor-kit-10{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-e4b338b:#F0EFE7;--e-global-color-6d788a2:#FFFFFF;--e-global-color-00987a0:#003E21;--e-global-color-e60b26d:#976E29;--e-global-color-e0af3fb:#622227;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-ba9f148-font-family:"franklin-gothic-compressed";--e-global-typography-ba9f148-font-size:clamp(1.75rem, 1.332rem + 1.9108vw, 3.625rem);--e-global-typography-ba9f148-font-weight:600;--e-global-typography-ba9f148-text-transform:uppercase;--e-global-typography-ba9f148-line-height:1;--e-global-typography-ba9f148-letter-spacing:0.06em;--e-global-typography-66f9201-font-family:"franklin-gothic-extra-compre";--e-global-typography-66f9201-font-size:clamp(1.25rem, 1.2221rem + 0.1274vw, 1.375rem);--e-global-typography-66f9201-font-weight:600;--e-global-typography-66f9201-text-transform:uppercase;--e-global-typography-66f9201-line-height:1;--e-global-typography-66f9201-letter-spacing:0.07em;--e-global-typography-4401f40-font-family:"franklin-gothic-extra-compre";--e-global-typography-4401f40-font-size:clamp(1.75rem, 1.6107rem + 0.6369vw, 2.375rem);--e-global-typography-4401f40-font-weight:600;--e-global-typography-4401f40-text-transform:uppercase;--e-global-typography-4401f40-line-height:1;--e-global-typography-4401f40-letter-spacing:0.03em;--e-global-typography-1aefb64-font-family:"franklin-gothic-compressed";--e-global-typography-1aefb64-font-size:clamp(1.25rem, 1.1664rem + 0.3822vw, 1.625rem);--e-global-typography-1aefb64-font-weight:400;--e-global-typography-1aefb64-line-height:1;--e-global-typography-0241277-font-family:"franklin-gothic-extra-compre";--e-global-typography-0241277-font-size:clamp(1rem, 0.9164rem + 0.3822vw, 1.375rem);--e-global-typography-0241277-font-weight:600;--e-global-typography-0241277-text-transform:uppercase;--e-global-typography-0241277-line-height:1;--e-global-typography-0241277-letter-spacing:0.07em;}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1300px;}.e-con{--container-max-width:1300px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Default: no motion (mobile-first) */
.postcard {
  --rot-start: 0deg;
  --rot-end: 0deg;
  --y-start: 0px;
  --scale-start: 1;
  transform: none;
  transition: none;
}

/* Motion only kicks in at tablet & above */
@media (min-width: 768px) {
  .postcard {
    --rot-start: 0deg;
    --rot-end: 0deg;
    --y-start: 40px;
    --scale-start: 0.98;

    transform: rotate(var(--rot-start))
               translateY(var(--y-start))
               scale(var(--scale-start));
    transform-origin: 50% 50%;
    transition: transform 700ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
  }

  .postcard.inview {
    transform: rotate(var(--rot-end))
               translateY(0)
               scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .postcard {
    transition: none !important;
    transform: none !important;
  }
}/* End custom CSS */