/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

:root  {
  --root-font-size: 16px;
  /* ========== PRIMITIVE DESIGN TOKENS ========== */ /* Primitives are the core building blocks of the design system, often used to define raw values (e.g., colors, font sizes, spacing). Naming Convention: --[category]-[type]-[modifier] • Category: Broad category of the design token (e.g., color, font, spacing). • Type: Specific type within the category (e.g., primary, secondary, neutral). • Modifier: Optional, used to define variations (e.g., light, dark, large). */ /* --- Colours --- */ --color-brand: #222222;
  --color-brand-light: color-mix(in srgb, var(--color-brand) 90%, white);
  --color-brand-lighter: color-mix(in srgb, var(--color-brand) 80%, white);
  --color-brand-lightest: color-mix(in srgb, var(--color-brand) 70%, white);
  --color-brand-dark: color-mix(in srgb, var(--color-brand) 90%, black);
  --color-brand-darker: color-mix(in srgb, var(--color-brand) 80%, black);
  --color-brand-darkest: color-mix(in srgb, var(--color-brand) 70%, black);
  --color-primary: var(--color-brand);
  --color-primary-light: #2c2a2b;
  --color-primary-lighter: #2c2a2c;
  --color-primary-lightest: color-mix(in srgb, var(--color-primary) 70%, white);
  --color-primary-dark: color-mix(in srgb, var(--color-primary) 90%, black);
  --color-primary-darker: color-mix(in srgb, var(--color-primary) 80%, black);
  --color-primary-darkest: color-mix(in srgb, var(--color-primary) 70%, black);
  --color-secondary: #CD244D;
  /* pink */ --color-secondary-light: color-mix(in srgb, var(--color-secondary) 90%, white);
  --color-secondary-lighter: color-mix(in srgb, var(--color-secondary) 80%, white);
  --color-secondary-lightest: color-mix(in srgb, var(--color-secondary) 70%, white);
  --color-secondary-dark: color-mix(in srgb, var(--color-secondary) 90%, black);
  --color-secondary-darker: color-mix(in srgb, var(--color-secondary) 80%, black);
  --color-secondary-darkest: color-mix(in srgb, var(--color-secondary) 70%, black);
  --color-accent: #F4F754;
  /* yellow */ --color-accent-light: color-mix(in srgb, var(--color-accent) 90%, white);
  --color-accent-lighter: color-mix(in srgb, var(--color-accent) 80%, white);
  --color-accent-lightest: color-mix(in srgb, var(--color-accent) 70%, white);
  --color-accent-dark: color-mix(in srgb, var(--color-accent) 90%, black);
  --color-accent-darker: color-mix(in srgb, var(--color-accent) 80%, black);
  --color-accent-darkest: color-mix(in srgb, var(--color-accent) 70%, black);
  --color-neutral: #999999;
  --color-neutral-light: color-mix(in srgb, var(--color-neutral) 75%, white);
  --color-neutral-lighter: color-mix(in srgb, var(--color-neutral) 50%, white);
  --color-neutral-lightest: color-mix(in srgb, var(--color-neutral) 25%, white);
  --color-neutral-dark: color-mix(in srgb, var(--color-neutral) 95%, black);
  --color-neutral-darker: color-mix(in srgb, var(--color-neutral) 90%, black);
  --color-neutral-darkest: color-mix(in srgb, var(--color-neutral) 85%, black);
  --color-neutral-alt: #f4f4f4;
  --color-neutral-alt-light: color-mix(in srgb, var(--color-neutral-alt) 75%, white);
  --color-neutral-alt-lighter: color-mix(in srgb, var(--color-neutral-alt) 50%, white);
  --color-neutral-alt-lightest: color-mix(in srgb, var(--color-neutral-alt) 25%, white);
  --color-neutral-alt-dark: color-mix(in srgb, var(--color-neutral-alt) 95%, black);
  --color-neutral-alt-darker: color-mix(in srgb, var(--color-neutral-alt) 90%, black);
  --color-neutral-alt-darkest: color-mix(in srgb, var(--color-neutral-alt) 85%, black);
  --color-text-primary: var(--color-text-inverse);
  --color-text-primary-dark: black;
  --color-text-primary-darker: black;
  --color-text-primary-darkest: black;
  --color-text-primary-light: #444444;
  --color-text-primary-lighter: #555555;
  --color-text-primary-lightest: #666666;
  --color-text-secondary: #666666;
  --color-text-inverse: #ffffff;
  --color-button-primary-bg: var(--color-accent);
  --color-button-primary-text-color: #4F5017;
  --color-form-field-text-color: inhert;
  --color-form-field-text-disabled: #999999;
  --color-form-field-border: #CCCCCC;
  --color-form-field-border-focus: var(--color-primary);
  --color-form-field-bg: #FFFFFF;
  --color-form-field-bg-disabled: #F5F5F5;
  --color-form-button-text-color: var(--color-button-primary-text-color);
  --color-form-button-bg: var(--color-button-primary-bg);
  --color-checkbox-accent: var(--color-primary);
  /* ========== SEMANTIC DESIGN TOKENS ========== */ /* Semantic variables are context-specific and map to the primitives. They define how a primitive is used (e.g., --body-text-color, --heading-text-color). Naming Convention: --[context]-[property] • Context: Where the variable is used (e.g., body, heading, button, card). • Property: Specific property being controlled (e.g., text-color, background-color, font-size). */ /* --- Typography --- */ --body-text-color: var(--color-text-primary);
  --body-font-size: 1rem;
  --body-font-family: 'Arimo', sans-serif;
  --body-line-height: 1.6;
  --paragraph-spacing: 1rem;
  --heading-spacing: 1rem;
  --heading-text-color: var(--color-text-primary);
  --heading-font-family: 'Poppins', serif;
  --heading-font-weight: var(--font-weight-bold);
  --heading-line-height: 1.2;
  --heading-1-text-color: var(--heading-text-color);
  --heading-2-text-color: var(--heading-text-color);
  --heading-3-text-color: var(--heading-text-color);
  --heading-4-text-color: var(--heading-text-color);
  --heading-5-text-color: var(--heading-text-color);
  --heading-6-text-color: var(--heading-text-color);
  --heading-1-font-weight: var(--heading-font-weight);
  --heading-2-font-weight: var(--font-weight-xbold);
  --heading-3-font-weight: var(--heading-font-weight);
  --heading-4-font-weight: var(--heading-font-weight);
  --heading-5-font-weight: var(--heading-font-weight);
  --heading-6-font-weight: var(--font-weight-semibold);
  --heading-1-font-size: 3.75rem;
  --heading-2-font-size: 2.75rem;
  --heading-3-font-size: 2.1875rem;
  --heading-4-font-size: 1.375rem;
  --heading-5-font-size: 1.4375rem;
  --heading-6-font-size: 1.25rem;
  --heading-1-line-height: var(--heading-line-height);
  --heading-2-line-height: var(--heading-line-height);
  --heading-3-line-height: var(--heading-line-height);
  --heading-4-line-height: 1.3;
  --heading-5-line-height: 1.4;
  --heading-6-line-height: 1.4;
  /* Buttons */ /* --button-primary-bg: var(--color-primary);
  --button-primary-text: var(--color-neutral-light);
  --button-secondary-bg: var(--color-secondary);
  --button-secondary-text: var(--color-neutral-light);
  */ /* Links */ --link-color: var(--color-brand);
  --link-hover-color: color-mix(in srgb, var(--link-color) 80%, white);
  --nav-link-color: var(--body-text-color);
  --nav-link-hover-color: var(--color-brand);
}
.content-section-inner  {
  max-width: 85rem;
}
/* ========== CSS RESET ========== */ *, *::before, *::after  {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd  {
  margin: 0;
}
p  {
  margin-top: 0;
  margin-bottom: var(--paragraph-spacing);
}
html  {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
input:not([type="checkbox"]):not([type="radio"]), textarea  {
  width: 100%;
}
button, input, select, textarea  {
  font-family: inherit;
}
button  {
  cursor: pointer;
}
hr  {
  border: 0;
  height: 1px;
  background: var(--color-text-primary, #ddd);
  margin: 1rem 0;
}
a  {
  text-decoration: none;
  color: var(--link-color);
}
/* note that we don't set a:visited because it overrides other colour settings for other classes unless we specificaly set the :visited option on all other link classes */ a:hover, a:focus  {
  color: var(--link-hover-color);
  text-decoration: underline;
}
/* ========== OVERALL DOCUMENT DEFAULTS ========== */ html  {
  font-size: var(--root-font-size);
  /* for smooth scrolling to internal anchors */ scroll-behavior: smooth;
}
body  {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--body-text-color);
  line-height: var(--body-line-height);
  margin: 0;
}
/* ========== HEADINGS ========== */ h1, h2, h3, h4, h5, h6  {
  font-family: var(--heading-font-family);
  color: var(--heading-text-color);
  font-weight: var(--heading-font-weight);
  margin-top: 0;
  margin-bottom: var(--heading-spacing);
}
h1, .heading-style-h1  {
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: var(--heading-1-text-color);
}
h2, .heading-style-h2  {
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: var(--heading-2-text-color);
}
h3, .heading-style-h3  {
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  line-height: var(--heading-3-line-height);
  color: var(--heading-3-text-color);
}
h4, .heading-style-h4  {
  font-size: var(--heading-4-font-size);
  font-weight: var(--heading-4-font-weight);
  line-height: var(--heading-4-line-height);
  color: var(--heading-4-text-color);
}
h5, .heading-style-h5  {
  font-size: var(--heading-5-font-size);
  font-weight: var(--heading-5-font-weight);
  line-height: var(--heading-5-line-height);
  color: var(--heading-5-text-color);
}
h6, .heading-style-h6  {
  font-size: var(--heading-6-font-size);
  font-weight: var(--heading-6-font-weight);
  line-height: var(--heading-6-line-height);
  color: var(--heading-6-text-color);
}
@media (max-width: 640px)  {
  h1, .heading-style-h1  {
    font-size: calc(0.6*var(--heading-1-font-size));
  }
  h2, .heading-style-h2  {
    font-size: calc(0.75*var(--heading-2-font-size));
  }
  h3, .heading-style-h3  {
    font-size: calc(0.8*var(--heading-3-font-size));
  }
  h4, .heading-style-h4  {
    font-size: calc(0.8*var(--heading-4-font-size));
  }
  h5, .heading-style-h5  {
    font-size: calc(0.8*var(--heading-5-font-size));
  }
  h6, .heading-style-h6  {
    font-size: calc(0.8*var(--heading-6-font-size));
  }
}
/* ========== BUTTONS ========== */ .btn-primary, .btn-ghost, .btn-light, .btn-ghost-light  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  text-wrap: nowrap;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-size-reg);
}
.btn-primary:hover, .btn-ghost:hover, .btn-light:hover, .btn-ghost-light:hover  {
  cursor: pointer;
  text-decoration: none;
}
.btn-primary  {
  background-color: var(--color-button-primary-bg);
  border-color: var(--color-button-primary-bg);
  color: var(--color-button-primary-text-color);
}
.btn-primary:hover  {
  filter: brightness(110%);
  color: var(--color-button-primary-text-color);
}
.btn-ghost  {
  background-color: transparent;
  color: var(--color-text-primary);
  border-color: currentColor;
}
.btn-ghost:hover  {
  border-color: var(--color-button-primary-bg);
  color: var(--color-text-primary);
}
.btn-light  {
  background-color: var(--color-text-inverse);
  color: var(--color-text-primary);
  border-color: var(--color-text-inverse);
}
.btn-light:hover  {
  background-color: color-mix(in srgb, var(--color-text-inverse) 95%, black);
  border-color: color-mix(in srgb, var(--color-text-inverse) 95%, black);
  color: var(--color-text-primary);
}
.btn-ghost-light  {
  background-color: transparent;
  color: var(--color-text-inverse);
  border-color: currentColor;
}
.btn-ghost-light:hover  {
  color: color-mix(in srgb, var(--color-text-inverse) 90%, black);
  border-color: currentColor;
}
@media (max-width: 640px)  {
  .btn-primary, .btn-ghost, .btn-light, .btn-ghost-light  {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-wrap: wrap;
  }
}
.my-form-row  {
  margin: 0 0 20px 0;
}
@media (max-width: 768px)  {
  .button-group  {
    justify-content: center;
  }
}
blockquote  {
  border-left: 2px solid var(--color-brand);
  padding-left: 1.5rem;
  margin: 3rem 0;
  font-family: var(--heading-font-family);
  font-size: var(--text-size-3xl);
  font-weight: 400;
  line-height: 1.3;
}
.highlight-on-scroll  {
  transition: color 0.6s ease;
}
.highlight-on-scroll.is-highlighted  {
  color: var(--color-brand);
}
.static-highlight-text  {
  color: var(--color-brand);
}
ul.feature-bullets  {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
ul.feature-bullets li  {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}
ul.feature-bullets li::before  {
  content: "";
  position: absolute;
  left: 0;
  top: 44%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  /* Use the SVG as a mask */ -webkit-mask: url("/site-assets/images/list-icon.svg") center/contain no-repeat;
  mask: url("/site-assets/images/list-icon.svg") center/contain no-repeat;
  background-color: var(--color-secondary);
}


 /** Content Section Styles **/ 

.content-section-1331  {
  &.content-section  {
    position: relative;
    z-index: 1000;
  }
  /* making header section stretch full width of the page (not contained to the rest of the site's fixed max-width */ .content-section-inner  {
    max-width: 100%;
    padding-left: 3%;
    padding-right:3%;
  }
  .logo-container  {
    flex: 0.5;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .logo-container img  {
    width: 165px;
    max-width: 165px;
    height: auto;
  }
  .my-header  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 7rem;
    column-gap: clamp(1rem, 3vw, 5rem);
  }
  .menu-container  {
    display: flex;
    flex: 2 1 0;
    justify-content: flex-end;
  }
  .header-actions  {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0rem;
  }
  .phone-icon  {
    color: var(--body-text-color);
  }
  .header-phone-number  {
    font-size: 1.0625rem;
    color: var(--body-text-color);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
  }
  .header-phone-number:hover  {
    color: var(--body-text-color);
    text-decoration: underline;
  }
  .header-actions .btn-primary  {
    margin-left: 2.5rem;
  }
  .header-actions-mobile  {
    margin-top: 20px;
  }
  /* uncomment to make first item highlighted - often do this for single page sites */ /* .core-menu-01 nav ul li:first-child a  {
    color: var(--nav-link-hover-color);
  }
  */ .core-menu-01 a  {
    font-size: 1rem;
  }
  .core-menu-01 a:hover  {
    color: var(--color-secondary);
  }
  @media (max-width: 1279px)  {
    .header-actions .btn-primary  {
      display: none;
    }
  }
  @media (max-width: 1023px)  {
    .menu-container  {
      justify-content: flex-end;
    }
    .header-actions  {
      display: none;
    }
    .core-menu-01 nav.active  {
      background: var(--color-primary);
    }
    .logo-container  {
      flex:1;
      width: 100%;
      text-align: center;
    }
    .logo-container img  {
      margin-left: 50px;
    }
    .menu-container  {
      flex: 0;
      margin-left: auto
    }
  }
  @media (max-width: 767px)  {
    .logo-container  {
      text-align: center;
    }
    .header-actions a  {
      text-align: center;
    }
  }
}
.content-section-1333  {
  .my-grid  {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: start;
    column-gap: clamp(2rem, 1vw, 5rem);
    row-gap: 0;
  }
  .col-1  {
    background: url('/site-assets/images/swirl-bg.webp') no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 4.0625rem;
    padding-top: 285px;
  }
  .col-2 img  {
    border-radius: 10px;
  }
  @media (max-width: 1023px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    .col-2 img  {
      width: 100%;
      height: auto;
    }
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .col-2 img  {
      width: 100%;
    }
    .col-1  {
      padding: 30px;
      height: auto;
    }
  }
}
.content-section-1334  {
  .content-section-inner  {
    margin-left: 5%;
    margin-right: 5%;
    max-width: 100%;
    justify-content: center;
    display: flex;
  }
  ul.feature-bullets li  {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 35px;
    font-size: var(--text-size-lg);
  }
  ul.feature-bullets li::before  {
    /* Use the SVG as a mask */ -webkit-mask: url("/site-assets/images/sakura.svg") center/contain no-repeat;
    mask: url("/site-assets/images/sakura.svg") center/contain no-repeat;
    background: #FFC1C1;
  }
  ul.feature-bullets li:first-child::before  {
    background: var(--color-brand);
  }
  @media (max-width: 1279px)  {
    ul.feature-bullets li  {
      margin-right: 10px;
      width: auto;
      padding-left: 25px;
    }
    .content-section-inner  {
      margin-left: 2%;
      margin-right: 2%;
    }
  }
  @media (max-width: 1023px)  {
    ul.feature-bullets li  {
      margin-right: 10px;
      width: auto;
      padding-left: 25px;
    }
    .content-section-inner  {
      margin-left: 2%;
      margin-right: 2%;
    }
    ul.feature-bullets li:first-child::before  {
      background: #FFC1C1;
    }
  }
  @media (max-width: 767px)  {
    ul.feature-bullets li  {
      margin-right: 20px;
      width: 100%;
      padding-left: 35px;
    }
    h5  {
      font-size: 24px;
    }
    .content-section-inner  {
      margin-left: 5%;
      margin-right: 5%;
    }
  }
}
.content-section-1335  {
  .my-grid  {
    margin-top: 4rem;
    display: grid;
    column-gap: clamp(2rem, 5vw, 3rem);
    row-gap:4rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-content: left;
    text-align: left;
  }
  .content-section-inner  {
    background: var(--color-primary-light);
    border-radius: 15px;
    padding: 60px;
  }
  h5  {
    margin-top: 0.8rem;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    .content-section-inner  {
      padding: 30px;
    }
  }
}
.content-section-1338  {
  .my-grid  {
    margin-top: 0rem;
    display: grid;
    column-gap: clamp(1rem, 1vw, 1rem);
    row-gap:1rem;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    justify-content: center;
    text-align: center;
  }
  .my-grid img  {
    max-width: 100%;
    border-radius: 6px;
  }
  .my-grid h4  {
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .my-grid .my-button  {
    margin-top: 20px;
  }
  @media (max-width: 1023px)  {
    .my-grid img  {
      width: 100%;
      height: auto;
    }
  }
  @media (max-width: 639px)  {
    .my-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-1339  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 2vw, 5rem);
    row-gap: 0;
    padding-top: 40px;
  }
  .my-grid div  {
    background: var(--color-primary-light);
    border-radius: 15px;
    padding: 40px;
    min-height: 360px;
  }
  .header_desc  {
    max-width: 70%;
  }
  .content-section-inner  {
    max-width: 80rem;
  }
  .header-div  {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  @media (max-width: 1023px)  {
    .my-grid div  {
      min-height: 440px;
    }
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .my-grid div  {
      padding: 30px;
      min-height: auto;
    }
    .header_desc  {
      max-width: 100%;
    }
    .header-div  {
      flex-direction: column;
    }
  }
}
.content-section-1340  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 3vw, 3rem);
    row-gap: 0;
    background: url('/site-assets/images/swirl-bg.webp') no-repeat;
    background-size: cover;
    padding: 60px;
    border-radius: 12px;
  }
  ul.feature-bullets li::before  {
    background-color: var(--color-accent);
  }
  .content-section-inner  {
    max-width: 82rem;
  }
  @media (max-width: 1023px)  {
    .my-grid  {
      grid-template-columns: 1fr;
    }
    h2  {
      margin-top: 20px
    }
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
      padding: 30px;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ h2  {
      margin-top: 0px
    }
  }
}
.content-section-1341  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 2vw, 5rem);
    row-gap: 0;
    padding-top: 40px;
  }
  .my-grid div  {
    background: var(--color-primary-light);
    border-radius: 15px;
    padding: 40px;
    min-height: 400px;
  }
  .header_desc  {
    max-width: 83%;
  }
  .content-section-inner  {
    max-width: 80rem;
  }
  .header-div  {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  @media (max-width: 1023px)  {
    .my-grid div  {
      min-height: 440px;
    }
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .my-grid div  {
      padding: 30px;
      min-height: auto;
    }
    .header_desc  {
      max-width: 100%;
    }
    .header-div  {
      flex-direction: column;
    }
  }
}
.content-section-1343  {
  .my-grid  {
    margin-top: 3rem;
    display: grid;
    column-gap: clamp(2rem, 2vw, 3rem);
    row-gap:3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    text-align: left;
  }
  .my-grid img  {
    max-width: 100%;
    width: 400px;
    border-radius: 6px;
  }
  .my-grid h6  {
    margin-top: 18px;
    margin-bottom: 0px;
  }
  .my-grid .my-button  {
    margin-top: 20px;
  }
  .content-section-inner  {
    border-radius: 15px;
    background: var(--color-primary-light);
    padding: 60px;
  }
  @media (max-width: 639px)  {
    .my-grid  {
      grid-template-columns: 1fr;
    }
    .content-section-inner  {
      padding: 30px;
    }
  }
}
.content-section-1344  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 5rem);
    row-gap: 0;
  }
  .content-section-inner  {
    max-width: 82rem;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
}
.content-section-1345  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    column-gap: clamp(2rem,4vw, 5rem);
    row-gap: 0;
    margin-top: 0px;
  }
  .form-intro-text  {
    font-size: var(--text-size-lg);
    max-width: 780px;
  }
  .my-grid a  {
    color: var(--color-secondary-dark);
    text-decoration: underline;
  }
  .my-grid .chevron  {
    margin-bottom: -1px;
    margin-left: 10px;
    color: var(--color-secondary-dark);
  }
  .core-form-style label  {
    font-weight: normal;
  }
  .my-contacts-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    column-gap: 4rem;
  }
  .content-section-inner  {
    max-width: 82rem;
    background: url('/site-assets/images/swirl-bg.webp') no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 60px;
  }
  input, select, textarea  {
    border-radius: 0px;
    background: transparent;
  }
  a  {
    color: var(--color-text-inverse) !important;
  }
  .footer-socials  {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  .social-logo  {
    height: 24px;
    color: var(--color-text-inverse);
  }
  .copyright-div, .copyright-div-right  {
    font-size: var(--text-size-xs);
    display: flex;
    margin-top: 58px;
  }
  .copyright-div div, .copyright-div-right div  {
    margin-right: 20px;
  }
  .copyright-div div:last-child, .copyright-div-right div:last-child  {
    margin-right: 0px;
  }
  .copyright-div-right  {
    display: none;
  }
  .formy-thankyou p  {
    color: var(--color-brand) !important;
  }
  @media (max-width: 1023px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .copyright-div  {
      display: none;
    }
    .copyright-div-right  {
      display: flex;
    }
  }
  @media (max-width: 639px)  {
    .my-contacts-grid  {
      grid-template-columns: 1fr;
    }
    .content-section-inner  {
      padding: 30px;
    }
    .copyright-div-right  {
      flex-direction: column;
    }
    .copyright-div-right div  {
      text-align: center;
      margin-bottom: 5px;
    }
  }
}
