.elementor-kit-73181{--e-global-color-primary:#000000;--e-global-color-secondary:#8B7065;--e-global-color-text:#7A7A7A;--e-global-color-accent:#823093;--e-global-color-f59978b:#01ABDE;--e-global-color-eb6528e:#823093;--e-global-color-bb2cd34:#F8931D;--e-global-color-95502b8:#3BB34E;--e-global-color-17b5e87:#01ABDE;--e-global-color-534623a:#F5DD35;--e-global-color-5c48243:#EC018B;--e-global-color-59f4a8a:#966644;--e-global-color-3c485f7:#FFFFFF;--e-global-color-b440eed:#FAFAFA;--e-global-color-fdf83f5:#8B7065;--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-ab0652a-font-family:"Roboto";--e-global-typography-ab0652a-font-size:35px;--e-global-typography-ab0652a-font-weight:700;--e-global-typography-2ebd312-font-size:28px;--e-global-typography-2ebd312-font-weight:600;--e-global-typography-0610e52-font-size:23px;--e-global-typography-0610e52-font-weight:600;--e-global-typography-b1bd9f3-font-family:"Roboto";--e-global-typography-b1bd9f3-font-size:20px;--e-global-typography-b1bd9f3-font-weight:500;--e-global-typography-3982ae3-font-size:17px;--e-global-typography-3982ae3-font-weight:400;--e-global-typography-81df6ea-font-size:15px;--e-global-typography-81df6ea-font-weight:400;color:var( --e-global-color-secondary );font-size:22px;}.elementor-kit-73181 button,.elementor-kit-73181 input[type="button"],.elementor-kit-73181 input[type="submit"],.elementor-kit-73181 .elementor-button{background-color:var( --e-global-color-accent );color:var( --e-global-color-3c485f7 );border-style:solid;border-width:1px 1px 1px 1px;border-color:var( --e-global-color-accent );border-radius:0.5em 0.5em 0.5em 0.5em;padding:5px 13px 5px 13px;}.elementor-kit-73181 button:hover,.elementor-kit-73181 button:focus,.elementor-kit-73181 input[type="button"]:hover,.elementor-kit-73181 input[type="button"]:focus,.elementor-kit-73181 input[type="submit"]:hover,.elementor-kit-73181 input[type="submit"]:focus,.elementor-kit-73181 .elementor-button:hover,.elementor-kit-73181 .elementor-button:focus{background-color:var( --e-global-color-3c485f7 );color:var( --e-global-color-accent );border-style:solid;border-width:1px 1px 1px 1px;border-color:var( --e-global-color-accent );border-radius:0.5em 0.5em 0.5em 0.5em;}.elementor-kit-73181 e-page-transition{background-color:#FFBC7D;}.elementor-kit-73181 h1{font-family:"Roboto", Sans-serif;font-size:35px;font-weight:700;}.elementor-kit-73181 h2{font-family:"Roboto", Sans-serif;font-size:28px;font-weight:600;}.elementor-kit-73181 h3{font-size:23px;font-weight:500;}.elementor-kit-73181 h4{font-size:20px;font-weight:500;}.elementor-kit-73181 h5{font-size:17px;font-weight:400;}.elementor-kit-73181 h6{font-size:15px;font-weight:400;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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 *//* =========================================
   Keep every tile perfectly square
   ========================================= */
.square-grid {
  /* Modern CSS Grid so columns auto‑reflow */
  display: flex;
  /* Chooses the largest # of columns that still
     leave at least 180 px for each tile – tweak! */
  grid-template-columns: repeat(4, 1fr); /* desktop: 4 across */
  gap: 0;               /* adjust if you want gutters */
}

/* Each tile */
.square-item {
   aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Optional – make images behave nicely inside */
.square-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* fills the square without distortion */
}

/* Fallback for very old Safari (<14) that
   doesn’t understand aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
  .square-item::before {
    content: "";
    display: block;
    padding-bottom: 100%; /* classic 1:1 trick */
  }
  .square-item > * {
    position: absolute;
    inset: 0;
  }
}

/* ===== Mobile: make each square span the full width ===== */
@media (max-width: 767px) {      /* Elementor’s default “Mobile” breakpoint */
  .square-grid {
    grid-template-columns: grid-template-columns: repeat(2, 1fr);  /* one column that’s 100 % wide */
  }
  .square-item {
      width: 50%;
  }
  
}/* End custom CSS */